POST
/
v1
/
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": {}
}'
{
  "call_id": "<string>",
  "status": "queued",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

대시보드에서 발급받은 API 키를 인증 헤더에 포함시켜야 합니다. 형식은 "Bearer YOUR_API_KEY" 입니다.

Body

application/json

Response

200
application/json
Successful Response

The response is of type object.