Get participants for a bot
Returns the participants for a bot. Results are paginated using cursor pagination.
Path Parameters
- Type: string
object _id requiredBot ID
Query Parameters
- Type: string
cursor Cursor for pagination
- Type: string
id Filter participants by participant ID
- Type: boolean
is _host Filter participants by whether they are the meeting host
Headers
- Type: string
Authorization requiredAPI key for authentication
- Type: string
Content - Type requiredShould 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
}
]
}