Unmute conference participants
POST/conferences/:id/actions/unmute
Unmute a list of participants in a conference call
Request
Path Parameters
id stringrequired
Uniquely identifies the conference by id or name
- application/json
Body
required
call_control_ids string[]
List of unique identifiers and tokens for controlling the call. Enter each call control ID to be unmuted. When empty all participants will be unmuted.
Responses
200: Successful response upon making a conference command.
- application/json
401: Unauthorized
404: Conference does not exist
422: Unprocessable entity
Request samples
curl -L 'https://api.telnyx.com/v2/conferences/:id/actions/unmute' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"call_control_ids": [
"v3:MdI91X4lWFEs7IgbBEOT9M4AigoY08M0WWZFISt1Yw2axZ_IiE4pqg"
]
}'
Response samples
{
"data": {
"result": "ok"
}
}