Conference recording resume
POST/conferences/:id/actions/record_resume
Resume conference recording.
Request
Path Parameters
id stringrequired
Specifies the conference by id or name
- application/json
Body
required
command_id string
Use this field to avoid duplicate commands. Telnyx will ignore any command with the same command_id
for the same call_control_id
.
recording_id string
Use this field to resume specific recording.
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/record_resume' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"command_id": "891510ac-f3e4-11e8-af5b-de00688a4901",
"recording_id": "891510ac-f3e4-11e8-af5b-de00688a4901"
}'
Response samples
{
"data": {
"result": "ok"
}
}