Skip to main content

Create Meeting Room

This request creates a meeting room.

post/meeting_rooms

Sample Request

This is a sample POST request to create a meeting room:

curl -X POST \
'https://api.carrierx.com/conference/v2/meeting_rooms' \
-H 'Content-Type: application/json' \
--data-binary '{"name":"My meeting room","access_codes":[{"access_code":"890671","role":"host"},{"access_code":"265423","role":"listener"},{"access_code":"143623","role":"participant"}]}' \
-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": "My meeting room"
}

Body Arguments

JSON representation of the fields and values of the Meeting Room object to be created.

No fields are required to create a meeting room, an empty object can be passed.

Refer to this table to view all fields that appear in the Meeting Room object.