GET
/
api
/
v1
/
phone-numbers
List organization phone numbers
curl --request GET \
  --url https://prod.featherhq.com/api/v1/phone-numbers \
  --header 'X-API-Key: <api-key>'
{
  "phoneNumbers": [
    {
      "id": "<string>",
      "phoneNumber": "<string>",
      "city": "<string>",
      "state": "<string>",
      "country": "<string>",
      "inboundAgent": {
        "agentId": "<string>",
        "agentName": "<string>"
      },
      "outboundAgents": [
        {
          "agentId": "<string>",
          "agentName": "<string>"
        }
      ],
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Response

Successfully retrieved organization phone numbers

The response is of type object.