🎉 vox.ai 디스코드 커뮤니티가 새로 열렸어요! 참여하기 →
지정한 에이전트로 아웃바운드 전화를 생성하고 즉시 발신합니다.
curl --request POST \
--url https://client-api.tryvox.co/v2/calls \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"call_from": "<string>",
"call_to": "<string>",
"agent_id": "<string>",
"agent_version": "production",
"metadata": {
"campaign": "봄_프로모션",
"source": "ads"
},
"dynamic_variables": {
"customer_name": "홍길동",
"order_id": "A123"
},
"presentation_number": "<string>"
}
'{
"call_id": "<string>",
"status": "<string>",
"call_from": "<string>",
"call_to": "<string>",
"metadata": {},
"dynamic_variables": {}
}Documentation Index
Fetch the complete documentation index at: https://docs.tryvox.co/llms.txt
Use this file to discover all available pages before exploring further.
API 키를 Authorization: Bearer <API_KEY> 헤더로 전달하세요. 대시보드 설정에서 발급받을 수 있습니다.
아웃바운드 통화 생성 요청 모델
발신 번호. 하이픈 없는 국내 번호 형식 (예: 01012345678)
수신 번호. 하이픈 없는 국내 번호 형식 (예: 01098765432)
이 통화를 처리할 에이전트의 ID
사용할 에이전트 버전. 기본값은 'production'
분석/추적을 위한 임의의 메타데이터
{ "campaign": "봄_프로모션", "source": "ads" }에이전트 개인화/컨텍스트용 동적 변수
{
"customer_name": "홍길동",
"order_id": "A123"
}발신 번호 표기 대체 번호
Successful Response
Was this page helpful?
curl --request POST \
--url https://client-api.tryvox.co/v2/calls \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"call_from": "<string>",
"call_to": "<string>",
"agent_id": "<string>",
"agent_version": "production",
"metadata": {
"campaign": "봄_프로모션",
"source": "ads"
},
"dynamic_variables": {
"customer_name": "홍길동",
"order_id": "A123"
},
"presentation_number": "<string>"
}
'{
"call_id": "<string>",
"status": "<string>",
"call_from": "<string>",
"call_to": "<string>",
"metadata": {},
"dynamic_variables": {}
}