🎉 vox.ai 디스코드 커뮤니티가 새로 열렸어요! 참여하기 →
조직이 구매할 수 있는 vox.ai 제공 전화번호 목록을 조회합니다. 구매 요청의 telephone_line_id에는 응답의 id를 사용합니다.
curl --request GET \
--url https://client-api.tryvox.co/v3/telephone-numbers/available \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"number": "<string>",
"line_type": "mobile",
"monthly_fee": 123,
"provider": "vox",
"sms_capable": {
"send": true,
"recv": true
}
}
],
"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> 형식으로 보냅니다.
회선 종류 필터. 허용값은 TelephoneLineType enum 값(mobile/landline/voip/uan/personal/toll_free)을 따릅니다. telephone_lines.number_type -- 회선 종류.
mobile, landline, voip, uan, personal, toll_free 이전 응답의 next_cursor 값입니다. 다음 페이지를 조회할 때 그대로 전달합니다.
반환할 최대 항목 수입니다. v3 목록 endpoint는 1~100을 허용합니다.
1 <= x <= 100정렬 기준 필드입니다. 기본값은 number입니다.
number, monthly_fee 정렬 방향입니다. 허용값은 asc, desc입니다.
asc, desc Was this page helpful?
curl --request GET \
--url https://client-api.tryvox.co/v3/telephone-numbers/available \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"number": "<string>",
"line_type": "mobile",
"monthly_fee": 123,
"provider": "vox",
"sms_capable": {
"send": true,
"recv": true
}
}
],
"total_count": 123,
"next_cursor": "<string>"
}