Skip to main content

Update Meeting Attributes

This request is used to change the state of a meeting.

put/meetings/{meetingNumber}/attributes/{name}

Sample Request

A sample PUT request to update the attributes of a meeting, targeted by `meetingNumber, with the values in the request body:

curl -X PUT \
'https://api.carrierx.com/conference/v1/meetings/106131/attributes/conference_exittones' \
-H 'Content-Type: application/json' \
--data-binary '{"value": "off"}' \
-u '[your_user_name]:[your_password]'

Sample Response

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

[
{
"name": "conference_exittones",
"value": "off"
}
]
note

Note that the meetingNumber and not the id is used to target the meeting.

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 meetingNumber is passed in the query URL, and the values to be modified are passed in the request body.

Path Arguments

ParameterData TypeDescription
meetingNumber
required
integerThe meeting number.
name
required
stringThe name of the attribute that will be updated.

Body Arguments

JSON representation of the fields and values to be updated.

The only field that can be modified is value.

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