List this tenant's telephony accounts
GET
/v1/telephony-accounts
const url = 'https://api.vocapable.com/v1/telephony-accounts?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/telephony-accounts?limit=50' \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”limit
Limit
integer
verification_status
verification_status.gte
verification_status.lte
verification_status.gt
verification_status.lt
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
CursorPage[TelephonyAccountSummary]
object
data
required
Data
Array<object>
TelephonyAccountSummaryAn account as its tenant sees it - credential material is structurally absent.
object
id
required
Id
string
mode
required
Mode
string
provider
required
Provider
string
credentials_stored
required
Credentials Stored
boolean
ftc_san_refs
Ftc San Refs
Array<object>
FtcSanRefOne FTC Subscription Account Number and the area codes it covers (CANON fact 5).
object
san
required
San
string
area_codes
Area Codes
Array<string>
verification_status
required
Verification Status
string
telephony_minutes_metered
required
Telephony Minutes Metered
boolean
created_at
required
Created At
string format: date-time
has_more
Has More
boolean
Example
{ "data": [ { "mode": "byo", "verification_status": "pending" } ], "has_more": false}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": {} } ]}