Was this helpful?
Retrieve a collection of meeting participants.
The unique ID of conference room.
The unique ID of the resource.
GET /api/user/meetings/{id}/participants HTTP/1.1 Host: hostname:8887 Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
OK
{ "items": [ { "id": "NzAwNTUxOTA5NzczMTQ4MTYw", "display_name": "\"example\"<sip:100@example.com>", "muted": true, "chairman": true, "position": 1 } ] }
Get meeting participant details.
The unique ID of conference room participant.
GET /api/user/meetings/{id}/participants/{participant_id} HTTP/1.1 Host: hostname:8887 Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
{ "id": "NzAwNTUxOTA5NzczMTQ4MTYw", "display_name": "\"example\"<sip:100@example.com>", "muted": true, "chairman": true, "position": 1 }