Call control
Start a call
Places an outbound call. Returns the call with its uuid for tracking and control.
post/v1/calls
Request body
Example request
{
"from": "+1234567890",
"to": "+1987654321",
"callback_url": "https://examples.com/callback",
"tag": "marketing-campaign",
"timeout": 60
}Response
Returns the created call.
Example response
{
"uuid": "5dccb6b0-f35c-488c-867b-86fb012c4415",
"id": "5dccb6b0-f35c-488c-867b-86fb012c4415",
"event_type": "call_setup",
"event_time": "2025-09-22T12:56:38.547Z",
"event_payload": {
"type": "audio",
"payload": {
"status": "completed",
"playback_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
},
"from": "+18045961058",
"to": "17653889567",
"call_started": "2025-09-22T12:56:38.547Z"
}