Skip to main content

Mute a conference participant

POST 
/conferences/:id/actions/mute

Mute a list of participants in a conference call

Request

Path Parameters

    id stringrequired

    Unique identifier of the conference

Body

required

    call_control_ids string[]

    List of unique identifiers and tokens for controlling the call. When empty all participants will be muted. An empty array targets all participants.

Responses

200: Successful response

401: Unauthorized

404: Conference does not exist

422: Unprocessable entity. Can be caused by improper use of filters or nodes.

Request samples


curl -L 'https://api.telnyx.com/conferences/:id/actions/mute' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"call_control_ids": [
"string"
]
}'

Response samples


{
"result": "ok"
}