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>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a JWT bearer token or a Veryfront API key in the Authorization header.

Path Parameters

conversation_id
string<uuid>
required

Response

200 - application/json

Participant list

data
object[]
required
page_info
object
required

Pagination cursor values for traversing the result set.