E911 Locations
GEThttps://api.voxo.co/locations/{recordId}
Get E911 Location By Id
Retrieve single E911 Location by IdHeader
Parameters
Path- Name
recordId*
- Type
- Integer
- Description
1234
- Name
Authorization*
- Type
- String
- Description
Bearer
{AccessToken}
- Name
Content-Type*
- Type
- String
- Description
application/json
Response
{
"id": 6283,
"diCommentName": "Grease Collector",
"emergencyNotes": "{\"streetNum\":\"23\",\"streetInfo\":\"Cutlass Pt\",\"location\":\"\",\"city\":\"Hattiesburg\",\"state\":\"MS\",\"postalCode\":\"39402\"}",
"namePrefix": "",
"recording": "no",
"fax": "no",
"allowEmergency": "on",
"tenantId": 432,
"branch": "",
"department": "",
"number": "6012028038"
}
cURL
curl --location -g \
--request GET 'https://api.voxo.com/locations/1234' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'
GEThttps://api.voxo.co/locations?tenantId={tenantId}
Get All E911 Locations
Retrieve 911 Locations for a specific account
Parameters
Query- Name
tenantId*
- Type
- Integer
- Description
1234
- Name
Authorization*
- Type
- String
- Description
Bearer
{AccessToken}
- Name
Content-Type*
- Type
- String
- Description
application/json
Response
[
{
"id": 6283,
"diCommentName": "Grease Collector",
"emergencyNotes": "{\"streetNum\":\"23\",\"streetInfo\":\"Cutlass Pt\",\"location\":\"\",\"city\":\"Hattiesburg\",\"state\":\"MS\",\"postalCode\":\"39402\"}",
"namePrefix": "",
"recording": "no",
"fax": "no",
"allowEmergency": "on",
"tenantId": 432,
"branch": "",
"department": "",
"number": "6012028038"
}
]
cURL
curl --location -g \
--request GET 'https://api.voxo.com/locations?tenantId=432' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'