Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
Successfully retrieved organization phone numbers
curl --request GET \
--url https://prod.featherhq.com/api/v1/phone-numbers \
--header 'Authorization: Bearer <token>'{
"phoneNumbers": [
{
"id": "<string>",
"phoneNumber": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"ownership": "FEATHER",
"inboundAgent": {
"agentId": "<string>",
"agentName": "<string>"
},
"outboundAgents": [
{
"agentId": "<string>",
"agentName": "<string>"
}
],
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}curl --request GET \
--url https://prod.featherhq.com/api/v1/phone-numbers \
--header 'Authorization: Bearer <token>'{
"phoneNumbers": [
{
"id": "<string>",
"phoneNumber": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"ownership": "FEATHER",
"inboundAgent": {
"agentId": "<string>",
"agentName": "<string>"
},
"outboundAgents": [
{
"agentId": "<string>",
"agentName": "<string>"
}
],
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successfully retrieved organization phone numbers
Show child attributes