Skip to main content
GET
/
v1
/
entities
/
{entityId}
/
locations
List all Locations of an Entity
curl --request GET \
  --url https://api.traxes.io/connect/v1/entities/{entityId}/locations \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "label": "<string>",
      "latitude": 123,
      "longitude": 123
    }
  ],
  "links": {
    "next": "<string>"
  },
  "meta": {
    "continuationToken": "<string>",
    "pageSize": 123
  }
}

Authorizations

Authorization
string
header
required

Access Token Authentication

Path Parameters

entityId
string<uuid>
required

The id of the Entity

Response

OK

A page of entity locations

data
object[] | null
meta
object