v52

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

Switch supervisor role

Switch the supervisor role for a bridged call. This allows switching between different supervisor modes during an active call

post/calls/{call_control_id}/actions/switch_supervisor_role

Path parameters

call_control_idstring required

Unique identifier and token for controlling the call

Request body

role'barge' | 'whisper' | 'monitor' required

The supervisor role to switch to. 'barge' allows speaking to both parties, 'whisper' allows speaking to caller only, 'monitor' allows listening only.

Example request

{
  "role": "barge"
}

Response

Successful response upon making a call control command.

Example response

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