Skip to content
Get started
V2 Reference
Phone Numbers

List Phone Numbers

GET
/api/partner/v2/phone_numbers
curl --request GET \
--url https://api.linqapp.com/api/partner/v2/phone_numbers \
--header 'X-LINQ-INTEGRATION-TOKEN: <X-LINQ-INTEGRATION-TOKEN>'

Retrieves all phone numbers associated with the authenticated partner organization

Successful response

Media type application/json
object
phone_numbers
Array<object>
object
id
integer
phone_number
string
forwarding_number

Phone number where calls are forwarded when this number is unavailable

string
nullable
response_rate

Response rate as messages per second

integer
Example
{
"phone_numbers": [
{
"id": 99,
"phone_number": "+19498151221",
"forwarding_number": null,
"response_rate": 75
}
]
}