POST
/
v1
/
create-outbound-batch-call
curl --request POST \
  --url https://client-api.tryvox.co/v1/create-outbound-batch-call \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "call_from": "<string>",
  "agent_id": "<string>",
  "agent_version": "production",
  "tasks": [
    {
      "call_to": "<string>",
      "metadata": {},
      "dynamic_variables": {}
    }
  ]
}'
{
  "batch_id": "<string>",
  "status": "queued",
  "total_tasks": 123,
  "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.