Returns the locations (physical sites) your token can access. Each location contains one or more [recordings](/content/api/core/recordings/list/index.html) (camera feeds).

## Query parameters

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

| Parameter              | Type               | Required | Description                                                   |
|-----------------------|--------------------|----------|---------------------------------------------------------------|
| `withinOrganisations` | string (CSV)       | no       | Filter to locations under these organisation IDs              |
| `withinLocations`     | string (CSV)       | no       | Filter 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"\
  }\
]
```
