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

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

const response = await client.wireless.retrieveRegions({ product: 'public_ips' });

console.log(response.data);
{
  "data": [
    {
      "code": "dc2",
      "name": "Washington DC, US",
      "inserted_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

product
string
required

The product for which to list regions (e.g., 'public_ips', 'private_wireless_gateways').

Example:

"public_ips"

Response

A list of wireless regions

data
Region · object[]