Participants
Retrieve a collection of meeting participants.
Authorizations
Path parameters
idall ofRequired
The unique ID of conference room.
stringOptionalExample:
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYw
Responses
200
OK
application/json
4XX
Error
get
GET /api/user/meetings/{id}/participants HTTP/1.1
Host: hostname:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"items": [
{
"id": "NzAwNTUxOTA5NzczMTQ4MTYw",
"display_name": "\"example\"<sip:[email protected]>",
"muted": true,
"chairman": true,
"position": 1
}
]
}
Get meeting participant details.
Authorizations
Path parameters
idall ofRequired
The unique ID of conference room.
stringOptionalExample:
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYw
participant_idall ofRequired
The unique ID of conference room participant.
stringOptionalExample:
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYw
Responses
200
OK
application/json
4XX
Error
get
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:[email protected]>",
"muted": true,
"chairman": true,
"position": 1
}