Get Meeting Room by SID
This request returns data for a meeting room, targeted by secure ID.
get | /meeting_rooms/{meeting_room_sid} |
Sample Request
This is a sample GET request to retrieve a meeting room by its secure ID:
curl -X GET \
'https://api.carrierx.com/conference/v2/meeting_rooms/2652635f-10a6-4b2a-a46b-2eeb75ddeab6' \
-u 'conference_user_123:qwerty123'
Sample Response
200
response code with a serialized copy of the Meeting Room object:
{
"access_codes": [
{
"access_code": "890671",
"role": "host"
},
{
"access_code": "265423",
"role": "listener"
},
{
"access_code": "143623",
"role": "participant"
}
],
"account_sid": "a1f38bf7-5879-49c1-be72-50ffa7f249a6",
"properties": {},
"did_group_sid": null,
"meeting_room_sid": "2652635f-10a6-4b2a-a46b-2eeb75ddeab6",
"name": "N/A"
}
This request is enabled for Field Filtering.
Path Arguments
Parameter | Data Type | Description |
---|---|---|
meeting_room_sid required | string | The meeting room secure ID. |