Get participants for a bot

Returns the participants for a bot. Results are paginated using cursor pagination.

Path Parameters
  • object_id
    Type: string
    required

    Bot ID

Query Parameters
  • cursor
    Type: string

    Cursor for pagination

  • id
    Type: string

    Filter participants by participant ID

  • is_host
    Type: boolean

    Filter participants by whether they are the meeting host

Headers
  • Authorization
    Type: string
    required

    API key for authentication

  • Content-Type
    Type: string
    required

    Should always be application/json

Responses
  • application/json
  • 404

    Bot not found

Request Example for get/api/v1/bots/{object_id}/participants
curl 'https://app.attendee.dev/api/v1/bots/bot_xxxxxxxxxxx/participants?cursor=&id=par_xxxxxxxxxxx&is_host=true' \
  --header 'Authorization: Token YOUR_API_KEY_HERE' \
  --header 'Content-Type: application/json'
{
  "next": "http://api.example.org/accounts/?cursor=cD00ODY%3D\"",
  "previous": "http://api.example.org/accounts/?cursor=cj0xJnA9NDg3",
  "results": [
    {
      "id": "string",
      "name": "string",
      "uuid": "string",
      "user_uuid": null,
      "is_host": true
    }
  ]
}