🎉 vox.ai 디스코드 커뮤니티가 새로 열렸어요! 참여하기 →
인증된 조직의 통화 목록을 조회합니다. 에이전트, 통화 상태, 통화 유형, 전화번호, 종료 사유, 시작 시각으로 필터링할 수 있습니다.
curl --request GET \
--url https://client-api.tryvox.co/v3/calls \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"agent": {
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agent_version": "current"
},
"call_type": "web",
"status": "queued",
"from_number": "<string>",
"to_number": "<string>",
"presentation_number": "<string>",
"disconnection_reason": "user_hangup",
"start_at": 123,
"end_at": 123,
"recording_url": "<string>",
"metadata": {},
"dynamic_variables": {},
"call_analysis": {
"summary": "<string>",
"user_sentiment": "positive",
"custom_analysis_data": [
{}
]
},
"call_cost": {
"total_cost": "<string>"
},
"variant_label": "<string>",
"opt_out_sensitive_data_storage": false
}
],
"total_count": 123,
"next_cursor": "<string>"
}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 <token> 형식으로 보냅니다.
에이전트 UUID 필터입니다. 여러 에이전트로 필터링하려면 query parameter를 반복해서 전달합니다.
상태 필터입니다. 여러 상태를 지원하는 endpoint에서는 query parameter를 반복해서 전달합니다.
queued, ongoing, ended, error, canceled, not_connected 통화 유형 필터 (반복 가능). 허용값: web/phone/inbound/outbound/api.
web, phone, inbound, outbound, api 통화 종료 사유 필터 (반복 가능).
user_hangup, agent_hangup, dial_no_answer, dial_failed, dial_busy, voicemail_reached, concurrency_limit_reached, insufficient_balance, error_voxai, max_duration_reached, inactivity, flow_error, call_transfer, orphaned_no_agent_pickup, dial_declined, daily_call_limit_reached, hourly_call_limit_reached 발신 번호 필터 (반복 가능). 하이픈 없는 국내 번호.
수신 번호 필터 (반복 가능). 하이픈 없는 국내 번호.
통화 연결 시각 하한입니다(unix ms, 이 시각 이상). 10~11자리 unix 초 입력도 허용하며, 자동으로 ms로 정규화합니다. 아직 연결되지 않은 통화도 포함될 수 있습니다.
통화 연결 시각 상한입니다(unix ms, 이 시각 이하). 10~11자리 unix 초 입력도 허용하며, 자동으로 ms로 정규화합니다.
정렬 방향입니다. 허용값은 asc, desc입니다.
asc, desc 이전 응답의 next_cursor 값입니다. 다음 페이지를 조회할 때 그대로 전달합니다.
반환할 최대 항목 수입니다. v3 목록 endpoint는 1~100을 허용합니다.
1 <= x <= 100Was this page helpful?
curl --request GET \
--url https://client-api.tryvox.co/v3/calls \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"agent": {
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agent_version": "current"
},
"call_type": "web",
"status": "queued",
"from_number": "<string>",
"to_number": "<string>",
"presentation_number": "<string>",
"disconnection_reason": "user_hangup",
"start_at": 123,
"end_at": 123,
"recording_url": "<string>",
"metadata": {},
"dynamic_variables": {},
"call_analysis": {
"summary": "<string>",
"user_sentiment": "positive",
"custom_analysis_data": [
{}
]
},
"call_cost": {
"total_cost": "<string>"
},
"variant_label": "<string>",
"opt_out_sensitive_data_storage": false
}
],
"total_count": 123,
"next_cursor": "<string>"
}