Skip to main content
GET
/
conversations
/
{conversation_id}
/
participants
List Participants
curl --request GET \
  --url https://api.veryfront.com/conversations/{conversation_id}/participants \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "conversation_id": "<string>",
      "role": "owner",
      "notification_preference": "<string>",
      "joined_at": "<string>",
      "user_id": "<string>",
      "last_read_message_id": "<string>"
    }
  ],
  "page_info": {
    "self": "<string>",
    "first": null,
    "next": "<string>",
    "prev": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

conversation_id
string<uuid>
required

Response

200 - application/json

Participant list

data
object[]
required
page_info
object
required