API 참조
vox.ai API 엔드포인트 목록
대량의 아웃바운드 콜을 배치로 트리거하는 엔드포인트입니다.
cURL
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": {}, "presentation_number": "<string>" } ] }'
{ "batch_id": "<string>", "status": "queued", "total_tasks": 123, "message": "<string>" }
대시보드에서 발급받은 API 키를 인증 헤더에 포함시켜야 합니다. 형식은 "Bearer YOUR_API_KEY" 입니다.
Successful Response
The response is of type object.
object