List tenant-owned receptionist numbers for mobile routing controls
GET
/v1/mobile/receptionist/numbers
const url = 'https://api.vocapable.com/v1/mobile/receptionist/numbers?limit=50';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.vocapable.com/v1/mobile/receptionist/numbers?limit=50' \ --header 'Authorization: Bearer <token>'List only policy-routed business voice lines, never caller or contact numbers.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”limit
Limit
integer
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response List Receptionist Numbers V1 Mobile Receptionist Numbers Get
Array<object>
MobileReceptionistNumberOne tenant-owned policy number selectable by mobile routing controls.
phone_e164 is the business’s own inbound number, not caller/contact data. The
mobile app needs it to distinguish its own receptionist lines before it reads or
changes a schedule or emergency override; no customer ANI is exposed here.
object
id
required
Id
string
phone_e164
required
Phone E164
string
status
required
Status
string
Examplegenerated
[ { "id": "example", "phone_e164": "example", "status": "example" }]Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}