Update Meeting Room
This request updates an existing meeting room, targeted by meetingNumber
.
put | /meetingRooms/{meetingNumber} |
Sample Request
This is a sample PUT request to update a meeting room, targeted by meetingNumber
, with the values in the request body:
curl -X PUT \
'https://api.carrierx.com/conference/v1/meetingRooms/273751' \
-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": 1544482680000,
"description": "Another description",
"didGroupReferences": [
{
"didGroupId": 219,
"state": 0
}
],
"keychain": [
{
"accessCode": "463516",
"id": 3464,
"role": 1
}
],
"meetingNumber": 273751,
"primaryDidGroupId": 219,
"subscriberSid": "yIMW9.jKxffi2EyM.afDmeO.gke.9fe0"
}
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. |
Body Arguments
JSON representation of the fields and values to be updated.
Fields that can be modified are:
attributes
description
didGroupReferences
keychain
meetingNumber
primaryDidGroupId
Refer to this table to view all fields that appear in the Meeting Room object.