List Inbound Phone Numbers API

Retrieve a list of inbound phone numbers from your account

API Endpoint

MethodEndpoint
GEThttps://new-prod.vocera.ai/test_framework/v1/phone-numbers-external/inbound/

Authentication

Include your API key in the request headers:

HeaderDescription
X-VOCERA-API-KEYYour API key obtained from the dashboard

Response Format

The API returns a list of phone number objects.

Phone Number Object

PropertyTypeDescription
idintegerUnique identifier for the phone number
numberstringPhone number in E.164 format
phone_number_idstringExternal provider’s phone number identifier

Example Response

[

    {

        "id": 2,

        "number": "+1234567890",

        "phone_number_id": "123"

    },

    // addtional numbers...

]

Code Examples

curl -X GET https://new-prod.vocera.ai/test_framework/v1/phone-numbers-external/inbound/ \

  -H "X-VOCERA-API-KEY: <your-api-key-here>"