Update Meeting Key
This request updates a meeting key for the selected subscriber, targeted by the meeting key ID.
put | /subscribers/{sid}/meetingRooms/{meetingNumber}/keychain/{meetingKeyId} |
Sample Request
This is a sample PUT request to update the Meeting Key object for the selected subscriber, targeted by the meeting key ID, with the values in the request body:
curl -X PUT \
'https://api.carrierx.com/conference/v1/subscribers/6v9u9-p35vZo1Cxq0qKkQn9X57T5cfAj/meetingRooms/946827/keychain/4028' \
-H 'Content-Type: application/json' \
--data-binary '{"role":3}' \
-u '[your_user_name]:[your_password]'
Sample Response
200
status code with a serialized copy of the updated Meeting Key object:
{
"accessCode": "3141591",
"id": 4028,
"role": 3
}
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 key ID is passed in the query URL, and the values to be modified are passed in the request body.
Path Arguments
Parameter | Data Type | Description |
---|---|---|
meetingKeyId required | integer | The meeting key ID. |
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:
accessCode
role
Refer to this table to view all fields that appear in the Meeting Key object.