List all Verified Numbers
GET/verified_numbers
Gets a paginated list of Verified Numbers.
Request
Query Parameters
page[size] page[size]
Default value: 25
page[number] page[number]
Default value: 1
Responses
200: Expected response to a valid request.
- application/json
400: Bad Request
- application/json
401: Unauthorized Request
- application/json
422: Unprocessable Entity
- application/json
Request samples
curl -L 'https://api.telnyx.com/v2/verified_numbers' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"data": [
{
"phone_number": "+15551234567",
"record_type": "verified_number",
"verified_at": "2020-09-14T17:03:32.965812"
}
],
"meta": {
"total_pages": 3,
"total_results": 55,
"page_number": 2,
"page_size": 25
}
}
{
"errors": [
{
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {
"url": "string"
}
}
]
}
{
"errors": [
{
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {
"url": "string"
}
}
]
}
{
"errors": [
{
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {
"url": "string"
}
}
]
}