Skip to main content

Create Meeting Room

This request creates a meeting room for the selected subscriber using the data passed in the query body.

post/subscribers/{sid}/meetingRooms

Sample Request

This is a sample POST request that creates a meeting room for the subscriber, targeted by secure ID:

curl -X POST \
'https://api.carrierx.com/conference/v1/subscribers/rB0M9.EzXfaO4keb-opANwfb7CHx1Ph1/meetingRooms' \
-H 'Content-Type: application/json' \
--data-binary '{"primaryDidGroupId":731}' \
-u '[your_user_name]:[your_password]'

Sample Response

200 status code with a serialized copy of the Meeting Room object:

{
"attributes": [],
"created": 1603355950000,
"didGroupReferences": [
{
"didGroupId": 731,
"state": 0
}
],
"keychain": [],
"meetingNumber": 313267,
"primaryDidGroupId": 731,
"subscriberSid": "rB0M9.EzXfaO4keb-opANwfb7CHx1Ph1"
}
note

Note that the meetingNumber is not the meeting access code. The access codes for each access level are stored in the keychain array.

Path Arguments

ParameterData TypeDescription
sid
required
stringThe subscriber secure ID.

Body Arguments

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

A required field to create a Meeting Room object is primaryDidGroupId.

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