Skip to main content

Get Meeting Rooms

This request returns a list of meeting rooms.

get/meeting_rooms

Sample Request

This is a sample GET request to retrieve meeting rooms matching the criteria in the request URL. The request can include query parameters to filter, sort, and paginate the results.

curl -X GET \
'https://api.carrierx.com/conference/v2/meeting_rooms' \
-u 'conference_user_123:qwerty123'

Sample Response

200 response code with a list of Meeting Room objects:

{
"count": 1,
"has_more": false,
"items": [
{
"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"
}
],
"limit": 10,
"offset": 0,
"pagination": {},
"total": 1
}

This request is enabled for Pagination, Result Filtering, and Field Filtering.