import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const dynamicEmergencyAddress = await client.dynamicEmergencyAddresses.create({
administrative_area: 'TX',
country_code: 'US',
house_number: 'house_number',
locality: 'Austin',
postal_code: '78701',
street_name: 'Congress',
});
console.log(dynamicEmergencyAddress.data);{
"data": {
"house_number": 600,
"street_name": "Congress",
"locality": "Austin",
"administrative_area": "TX",
"postal_code": "78701",
"country_code": "US",
"id": "0ccc7b54-4df3-4bca-a65a-3da1ecc777f1",
"record_type": "dynamic_emergency_address",
"sip_geolocation_id": "XYZ123",
"status": "pending",
"house_suffix": "<string>",
"street_pre_directional": "<string>",
"street_suffix": "St",
"street_post_directional": "<string>",
"extended_address": "<string>",
"created_at": "2018-02-02T22:25:27.521Z",
"updated_at": "2018-02-02T22:25:27.521Z"
}
}Creates a dynamic emergency address.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const dynamicEmergencyAddress = await client.dynamicEmergencyAddresses.create({
administrative_area: 'TX',
country_code: 'US',
house_number: 'house_number',
locality: 'Austin',
postal_code: '78701',
street_name: 'Congress',
});
console.log(dynamicEmergencyAddress.data);{
"data": {
"house_number": 600,
"street_name": "Congress",
"locality": "Austin",
"administrative_area": "TX",
"postal_code": "78701",
"country_code": "US",
"id": "0ccc7b54-4df3-4bca-a65a-3da1ecc777f1",
"record_type": "dynamic_emergency_address",
"sip_geolocation_id": "XYZ123",
"status": "pending",
"house_suffix": "<string>",
"street_pre_directional": "<string>",
"street_suffix": "St",
"street_post_directional": "<string>",
"extended_address": "<string>",
"created_at": "2018-02-02T22:25:27.521Z",
"updated_at": "2018-02-02T22:25:27.521Z"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
600
"Congress"
"Austin"
"TX"
"78701"
US, CA, PR "US"
"St"
Dynamic Emergency Address Response
Show child attributes
600
"Congress"
"Austin"
"TX"
"78701"
US, CA, PR "US"
"0ccc7b54-4df3-4bca-a65a-3da1ecc777f1"
Identifies the type of the resource.
"dynamic_emergency_address"
Unique location reference string to be used in SIP INVITE from / p-asserted headers.
"XYZ123"
Status of dynamic emergency address
pending, activated, rejected "pending"
"St"
ISO 8601 formatted date of when the resource was created
"2018-02-02T22:25:27.521Z"
ISO 8601 formatted date of when the resource was last updated
"2018-02-02T22:25:27.521Z"
Was this page helpful?