Skip to main content
POST
/
v1
/
create-outbound-call
Create Outbound Call
curl --request POST \
  --url https://client-api.tryvox.co/v1/create-outbound-call \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "call_from": "<string>",
  "call_to": "<string>",
  "agent_id": "<string>",
  "agent_version": "production",
  "metadata": {},
  "dynamic_variables": {},
  "presentation_number": "<string>"
}'
{
  "call_id": "<string>",
  "status": "queued",
  "call_from": "<string>",
  "call_to": "<string>",
  "metadata": {},
  "dynamic_variables": {}
}

Authorizations

Authorization
string
header
required

Body

application/json
call_from
string
required
call_to
string
required
agent_id
string
required
agent_version
string | null
default:production
metadata
object
dynamic_variables
object
presentation_number
string | null

Response

call_id
string
required
status
enum<string>
required
Available options:
queued,
initiated,
failed
call_from
string
required
call_to
string
required
metadata
object
dynamic_variables
object