Skip to main content
GET
/
messaging_tollfree
/
verification
/
requests
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: 'My API Key',
});

const requests = await client.messagingTollfree.verification.requests.list({ page: 1, page_size: 1 });

console.log(requests.records);
{
  "records": [],
  "total_records": 0
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
required
Required range: x >= 1
page_size
integer
required
Request this many records per page

This value is automatically clamped if the provided value is too large.


Request this many records per page

This value is automatically clamped if the provided value is too large.
Required range: x >= 1
date_start
string<date-time>
date_end
string<date-time>
status
enum<string>

Tollfree verification status

Available options:
Verified,
Rejected,
Waiting For Vendor,
Waiting For Customer,
Waiting For Telnyx,
In Progress
phone_number
string

Response

Successful Response

A paginated response

records
VerificationRequestStatus · object[]

The records yielded by this request

total_records
integer
default:0

The total amount of records for these query parameters