List all Verified Caller IDs
GET/verified_caller_ids
Returns a list of your Verified Caller IDs. The caller IDs are returned sorted by creation date, with the most recent caller IDs appearing first. The list is filterable by sending in any of the following parameters.
Permissions
The API token must include the following scopes: Voice.
Request
Query Parameters
filter_name string
String representing the name assigned to the caller ID. Will return all Verified Caller IDs containing this value as a substring.
filter_number string
String representing the number assigned to the caller ID. Will return all Verified Caller IDs containing this value as a substring.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
links
object
self string
first string
next string
prev string
data object[]
{
"links": {
"self": "string",
"first": "string",
"next": "string",
"prev": "string"
},
"data": [
{
"type": "verified_caller_id",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "C-3P0",
"extension": "1234",
"number": "+15551234567",
"verified": false,
"verified_at": null,
"status": "Awaiting Verification"
}
]
}
Loading...