🎉 vox.ai 디스코드 커뮤니티가 새로 열렸어요! 참여하기 →
인증된 조직이 보유한 전화번호 목록을 조회합니다. 에이전트 매핑, SIP 설정, 해지 요청에는 각 항목의 id를 사용합니다.
curl --request GET \
--url https://client-api.tryvox.co/v3/organization-telephone-numbers \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"number": "<string>",
"provider": "vox",
"status": "active",
"start_at": 123,
"created_at": 123,
"updated_at": 123,
"monthly_fee": 123,
"address": "<string>",
"inbound_trunk_id": "<string>",
"outbound_trunk_id": "<string>",
"inbound_agent": {
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agent_version": "current"
},
"outbound_agent": {
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agent_version": "current"
},
"memo": "<string>",
"end_at": 123,
"cancel_requested_at": 123
}
],
"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> 형식으로 보냅니다.
provider 필터입니다. 생략하면 vox.ai 관리 번호와 custom 번호를 모두 포함합니다. 번호 제공자 구분.
vox, custom 상태 필터입니다. 여러 상태를 지원하는 endpoint에서는 query parameter를 반복해서 전달합니다.
이전 응답의 next_cursor 값입니다. 다음 페이지를 조회할 때 그대로 전달합니다.
반환할 최대 항목 수입니다. v3 목록 endpoint는 1~100을 허용합니다.
1 <= x <= 100정렬 기준 필드입니다. 기본값은 created_at입니다.
"created_at"정렬 방향입니다. 허용값은 asc, desc입니다.
asc, desc Was this page helpful?
curl --request GET \
--url https://client-api.tryvox.co/v3/organization-telephone-numbers \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"number": "<string>",
"provider": "vox",
"status": "active",
"start_at": 123,
"created_at": 123,
"updated_at": 123,
"monthly_fee": 123,
"address": "<string>",
"inbound_trunk_id": "<string>",
"outbound_trunk_id": "<string>",
"inbound_agent": {
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agent_version": "current"
},
"outbound_agent": {
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agent_version": "current"
},
"memo": "<string>",
"end_at": 123,
"cancel_requested_at": 123
}
],
"total_count": 123,
"next_cursor": "<string>"
}