Returns all phone numbers associated with your account, including their type, capabilities, and subscription status.
Endpoint
GET /user/phone-numbers/all
Response
Array of phone number objects. Show Phone number properties
Unique identifier of the phone number.
Phone number in E.164 format (e.g., +14155551234).
ISO 3166-1 alpha-2 country code (e.g., US, GB).
Type of phone number: normal, sip, or caller_id.
Human-readable type label.
Whether the number supports SMS.
Region where the number is provisioned.
Whether the number has an active subscription.
ISO 8601 timestamp when the number was purchased.
Example
curl -X GET "https://portal.intellixent.ai/api/user/phone-numbers/all" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"data" : [
{
"id" : 1 ,
"phone_number" : "+14155551234" ,
"country_code" : "US" ,
"type" : "normal" ,
"type_label" : "Dedicated Number" ,
"sms_capable" : true ,
"region" : "us1" ,
"has_active_subscription" : true ,
"created_at" : "2025-01-08T10:30:00.000000Z"
},
{
"id" : 2 ,
"phone_number" : "+442071234567" ,
"country_code" : "GB" ,
"type" : "normal" ,
"type_label" : "Dedicated Number" ,
"sms_capable" : false ,
"region" : "us1" ,
"has_active_subscription" : true ,
"created_at" : "2025-01-05T14:20:00.000000Z"
}
]
}
This endpoint returns all phone numbers regardless of SMS capability or subscription status. Use it when you need a complete view of your account’s phone numbers.