Skip to main content
GET
/
v2
/
admin
/
emergency-locations
List Emergency Locations
curl --request GET \
  --url https://api.voxo.co/v2/admin/emergency-locations/ \
  --header 'Authorization: Bearer <token>'
{
  "records": [
    {
      "id": 123,
      "tenantId": 123,
      "name": "<string>",
      "address": {
        "loc": "<string>",
        "city": "<string>",
        "state": "<string>",
        "location": "<string>",
        "streetNum": "<string>",
        "postalCode": "<string>",
        "streetInfo": "<string>"
      }
    }
  ],
  "page": 123,
  "maxPage": 123,
  "totalRecords": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

tenantId
string
required

Tenant ID

Pattern: ^[1-9]\d*$
name
string

Filter by location name

Minimum string length: 1
page
string

Page number

Pattern: ^[1-9]\d*$
recordsPerPage
string

Number of records per page

Pattern: ^[1-9]\d*$

Response

200 - application/json

Paginated emergency locations

records
object[]
required
page
number
required
maxPage
number
required
totalRecords
number
required