Skip to main content

DID Emergency Object

This section goes over the parts of the DID Emergency object.

DID Emergency Object Attributes

These fields and values make up the JSON response that gets returned when a request is successful.

AttributeData TypeDescription
caller_namestringThe name that will appear on receiving party phones.
enabledbooleanIf this field is set to false, no record is stored in the central CNAM registry. Fields can still be updated when the value is false.
locationsarray of objectsThe list of locations that will be used for emergency. Refer to the table below for the description of the location object parameters.

Location Object

AttributeData TypeDescription
address_1stringThe emergency location address line 1.
address_2stringThe emergency location address line 2.
citystringThe emergency location city.
country_codestringThe ISO 3166-1 alpha-3 code of this emergency location country.
statestringThe emergency location state in a two-letter abbreviation format.
zipstringThe emergency location zip code.

Sample DID Emergency Object

{
"caller_name": "J Smith",
"enabled": true,
"locations": [
{
"address_1": "8104 E Nora Ave",
"address_2": "",
"city": "Spokane Valley",
"country_code": "USA",
"state": "WA",
"zip": "99212"
}
]
}