Participants

List meeting participants

get

Retrieve a collection of meeting participants.

Authorizations
Path parameters
idall ofrequired

The unique ID of conference room.

The unique ID of the resource.

Responses
curl -L \
  --url 'https://HOSTNAME:8887/api/user/meetings/{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 meeting participant details

get

Get meeting participant details.

Authorizations
Path parameters
idall ofrequired

The unique ID of conference room.

The unique ID of the resource.

participant_idall ofrequired

The unique ID of conference room participant.

The unique ID of the resource.

Responses
curl -L \
  --url 'https://HOSTNAME:8887/api/user/meetings/{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
}

Was this helpful?