GET /location/list

List locations

List physical sites you have access to.

Returns the locations (physical sites) your token can access. Each location contains one or more recordings (camera feeds).

Query parameters

All optional, all comma-separated where they take ID lists.

ParameterTypeRequiredDescription
withinOrganisationsstring (CSV)noFilter to locations under these organisation IDs
withinLocationsstring (CSV)noFilter to locations under these parent location IDs

Example request

GET https://api.auravisionlabs.com/v1/location/list?withinOrganisations=64a1b2c3d4e5f6a7b8c9d0e2
Authorization: Bearer <your_token>

Example response

[
  {
    "id": "64a1b2c3d4e5f6a7b8c9d0e3",
    "name": "Oxford Street Store",
    "timezone": "Europe/London"
  },
  {
    "id": "64a1b2c3d4e5f6a7b8c9d0e6",
    "name": "Regent Street Store",
    "timezone": "Europe/London"
  }
]