Skip to main content

Update Meeting

This request updates a meeting, targeted by secure ID.

patch/meetings/{meeting_sid}

Sample Request

This is a sample PATCH request to update a meeting by its secure ID. The request body contains the fields and values to be updated.

> Updates the Meeting object, targeted by secure ID, with the values in the request body

```shell
curl -X PATCH \
'https://api.carrierx.com/conference/v2/meetings/69057c3e-bb90-4ed3-9c53-000000944173' \
-H 'Content-Type: application/json' \
--data-binary '{"on_hold":"pl"}' \
-u 'conference_user_123:qwerty123'

Sample Response

200 response code with a serialized copy of the updated Meeting object

{
"account_sid": "a1f38bf7-5879-49c1-be72-50ffa7f249a6",
"attendees": {
"hosts": 1,
"listeners": 0,
"participants": 0
},
"date_created": "2025-06-23T17:36:37.000Z",
"duration": 35,
"locked": false,
"meeting_room_sid": "e1b86c9b-d758-4e3a-9bd4-a0016a3b10b1",
"meeting_sid": "69057c3e-bb90-4ed3-9c53-000000944173",
"on_hold": "pl",
"participant_muted": "false",
"recording": false
}

A PATCH request can be used to update one or more Meeting object property values. When using a PATCH request, only the properties specified in the request payload will be updated, all other properties and values will remain the same. The meeting secure ID is passed in the query URL, and the values to be modified are passed in the request body.

Path Arguments

ParameterData TypeDescription
meeting_sid
required
stringThe meeting secure ID.

Body Arguments

JSON representation of the fields and values to be updated.

Fields that can be modified are:

  • on_hold
  • participant_muted

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