Skip to main content
GET
/
access_ip_address
JavaScript
import Telnyx from 'telnyx';

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

const accessIPAddresses = await client.accessIPAddress.list();

console.log(accessIPAddresses.data);
{
  "data": [
    {
      "id": "<string>",
      "ip_address": "<string>",
      "source": "<string>",
      "status": "pending",
      "description": "<string>",
      "user_id": "<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
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

filter
object

Consolidated filter parameter (deepObject style). Originally: filter[ip_source], filter[ip_address], filter[created_at]. Supports complex bracket operations for dynamic filtering.

page
object

Consolidated page parameter (deepObject style). Originally: page[number], page[size]

Response

Successful Response

data
AccessIPAddressResponseSchema · object[]
required
meta
object
required