v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
Conference Commands

Leave a conference

Removes a call leg from a conference and moves it back to parked state.

Expected Webhooks:

  • conference.participant.left
post/conferences/{id}/actions/leave

Path parameters

idstring required

Uniquely identifies the conference by id or name

Request body

beep_enabled'always' | 'never' | 'on_enter' | 'on_exit'

Whether a beep sound should be played when the participant leaves the conference. Can be used to override the conference-level setting.

call_control_idstring required

Unique identifier and token for controlling the call

command_idstring

Use this field to avoid execution of duplicate commands. Telnyx will ignore subsequent commands with the same command_id as one that has already been executed.

region'Australia' | 'Europe' | 'Middle East' | 'US'

Region where the conference data is located. Defaults to the region defined in user's data locality settings (Europe or US).

Example request

{
  "beep_enabled": "never",
  "call_control_id": "c46e06d7-b78f-4b13-96b6-c576af9640ff"
}

Response

Successful response upon making a conference command.

Example response

{
  "data": {
    "result": "ok"
  }
}