Skip to main content
POST
/
calls
/
{id}
/
transfer
Transfer a live call to a human
curl --request POST \
  --url https://api.vocobase.com/api/v2/calls/{id}/transfer \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "to": "+919876543210"
}
'
{
  "success": true,
  "data": {
    "message": "Call transferred",
    "callId": "c1234567-abcd-1234-abcd-123456789012",
    "sessionId": "s1234567-abcd-1234-abcd-123456789012"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.vocobase.com/llms.txt

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

Authorizations

Authorization
string
header
required

API key in format: rg_live_xxxx. Pass as a Bearer token in the Authorization header.

Path Parameters

id
string<uuid>
required

The call ID.

Body

application/json
to
string

E.164 phone number to transfer to. If omitted, the agent's configured transferNumber is used.

Example:

"+919876543210"

Response

Transfer queued.

success
boolean
data
object