Update Meeting Room
This request updates an existing meeting room for the selected subscriber, targeted by meetingNumber.
| put | /subscribers/{sid}/meetingRooms/{meetingNumber} |
Sample Request
A sample PUT request to update the Meeting Room object for the selected subscriber, targeted by meetingNumber, with the values in the request body:
curl -X PUT \
'https://api.carrierx.com/conference/v1/subscribers/rB0M9.EzXfaO4keb-opANwfb7CHx1Ph1/meetingRooms/313267' \
-H 'Content-Type: application/json' \
--data-binary '{"description": "Another description"}' \
-u '[your_user_name]:[your_password]'
Sample Response
200 status code with a serialized copy of the updated Meeting Room object:
{
"attributes": [],
"created": 1603355950000,
"description": "Another description",
"didGroupReferences": [
{
"didGroupId": 731,
"state": 0
}
],
"keychain": [
{
"accessCode": "463516",
"id": 3464,
"role": 1
}
],
"meetingNumber": 313267,
"primaryDidGroupId": 731,
"subscriberSid": "rB0M9.EzXfaO4keb-opANwfb7CHx1Ph1"
}
A PUT request is used to update one or more attribute values. When using a PUT request, only the attributes specified in the request payload will be updated, all other attributes and values will remain the same. The meeting room meetingNumber is passed in the query URL, and the values to be modified are passed in the request body.
Path Arguments
| Parameter | Data Type | Description |
|---|---|---|
| meetingNumber required | integer | The meeting room number. |
| sid required | string | The subscriber secure ID. |
Body Arguments
JSON representation of the fields and values to be updated.
Fields that can be modified are:
attributesdescriptiondidGroupReferenceskeychainmeetingNumberprimaryDidGroupId
Refer to this table to view all fields that appear in the Meeting Room object.