import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const accessIPRanges = await client.accessIPRanges.list();
console.log(accessIPRanges.data);{
"data": [
{
"id": "<string>",
"cidr_block": "<string>",
"status": "pending",
"user_id": "<string>",
"description": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"page_number": 123,
"page_size": 123,
"total_pages": 123,
"total_results": 123
}
}import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const accessIPRanges = await client.accessIPRanges.list();
console.log(accessIPRanges.data);{
"data": [
{
"id": "<string>",
"cidr_block": "<string>",
"status": "pending",
"user_id": "<string>",
"description": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"page_number": 123,
"page_size": 123,
"total_pages": 123,
"total_results": 123
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Consolidated filter parameter (deepObject style). Originally: filter[cidr_block], filter[cidr_block][startswith], filter[cidr_block][endswith], filter[cidr_block][contains], filter[created_at]. Supports complex bracket operations for dynamic filtering.
Successful Response
Was this page helpful?