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