Was this helpful?
Retrieve a collection of conference room participants.
The unique ID of conference room.
The unique ID of the resource.
curl -L \ --url 'https://HOSTNAME:8887/api/conference_rooms/{id}/participants' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{ "items": [ { "id": "NzAwNTUxOTA5NzczMTQ4MTYw", "display_name": "\"example\"<sip:100@example.com>", "muted": true, "chairman": true, "position": 1 } ] }
Get room participant details.
The unique ID of conference room participant.
curl -L \ --url 'https://HOSTNAME:8887/api/conference_rooms/{id}/participants/{participant_id}' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{ "id": "NzAwNTUxOTA5NzczMTQ4MTYw", "display_name": "\"example\"<sip:100@example.com>", "muted": true, "chairman": true, "position": 1 }