Delete a dynamic emergency address
DELETE/dynamic_emergency_addresses/:id
Deletes the dynamic emergency address based on the ID provided
Request
Path Parameters
id uuidrequired
Dynamic Emergency Address id
Responses
200: Dynamic Emergency Address Response
- application/json
401: Unauthorized
404: Resource not found
422: Unprocessable entity. Check message field in response for details.
Request samples
curl -L -X DELETE 'https://api.telnyx.com/v2/dynamic_emergency_addresses/:id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"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"
}
}