import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const dynamicEmergencyAddress = await client.dynamicEmergencyAddresses.delete(
'182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
);
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"
}
}Deletes the dynamic emergency address based on the ID provided
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const dynamicEmergencyAddress = await client.dynamicEmergencyAddresses.delete(
'182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
);
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.
Dynamic Emergency Address id
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?