Skip to main content
POST
/
calls
/
{call_id}
/
transfer
Transfer Call
curl --request POST \
  --url https://api.example.com/calls/{call_id}/transfer \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "transfer_to": "<string>",
  "transfer_type": "cold",
  "play_dialtone": false
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

call_id
string<uuid>
required

Body

application/json

Request to transfer a call.

transfer_to
string
required

Destination: tel:+15105550100 or sip:user@domain.com

transfer_type
string
default:cold

Transfer type: cold or warm

Pattern: ^(cold|warm)$
play_dialtone
boolean
default:false

Play dial tone during transfer

Response

Successful Response