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

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

const dynamicEmergencyAddresses = await client.dynamicEmergencyAddresses.list();

console.log(dynamicEmergencyAddresses.data);
{
  "data": [
    {
      "id": "0ccc7b54-4df3-4bca-a65a-3da1ecc777f1",
      "record_type": "dynamic_emergency_address",
      "sip_geolocation_id": "XYZ123",
      "status": "pending",
      "house_number": 600,
      "house_suffix": "<string>",
      "street_pre_directional": "<string>",
      "street_name": "Congress",
      "street_suffix": "St",
      "street_post_directional": "<string>",
      "extended_address": "<string>",
      "locality": "Austin",
      "administrative_area": "TX",
      "postal_code": "78701",
      "country_code": "US",
      "created_at": "2018-02-02T22:25:27.521Z",
      "updated_at": "2018-02-02T22:25:27.521Z"
    }
  ],
  "meta": {
    "total_pages": 13,
    "total_results": 13,
    "page_number": 3,
    "page_size": 1
  }
}

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[status], filter[country_code]

page
object

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

Response

Dynamic Emergency Address Responses

data
object[]
meta
object