Unhold a conference participant
POST/conferences/:id/actions/unhold
Unhold a list of participants in a conference call
Request
Path Parameters
id stringrequired
Unique identifier of the conference
- application/json
Body
required
call_control_ids string[]required
List of unique identifiers and tokens for controlling the call. Enter each call control ID to be unheld.
Responses
200: Successful response
- application/json
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/unhold' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"call_control_ids": [
"string"
]
}'
Response samples
{
"result": "ok"
}