List all locations

GET /v1/locations

Returns a list of Auditzy supported locations

Responses

  • 200

    Successful response.

    Hide response attribute Show response attribute object
    • data array[object]

      An array of location objects

      Hide data attributes Show data attributes
      • id string

        Values are in, us-tx, us-ca, eu, fr, au, qa, sk, uk, ca, sa, br, or sea.

      • name string
GET /v1/locations
curl \
 -X GET https://api.auditzy.com/v1/locations
Response examples (200)
{
  "data": [
    {
      "id": "in",
      "name": "Mumbai, India"
    },
    {
      "id": "uk",
      "name": "London, United Kingdom"
    },
    "{...}",
    "{...}"
  ],
  "status": "SUCCESS"
}