GET
/
v1
/
entities
/
{entityId}
/
locations
curl --request GET \
  --url https://platform.realto.io/api/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
required

The id of the Entity

Response

200
application/json
OK
data
object[] | null
meta
object