GET
/
v1
/
entities
/
{entityId}
/
commands
curl --request GET \
  --url https://platform.realto.io/api/v1/entities/{entityId}/commands \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "Canceled",
      "triggerTime": "2023-11-07T05:31:56Z",
      "type": "Disconnect",
      "value": "<string>",
      "error": {
        "title": "<string>",
        "description": "<string>"
      }
    }
  ],
  "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

Query Parameters

start
string

The start of the Commands trigger timeframe

end
string

The end of the Commands trigger timeframe

pageSize
integer
default:
25

The number of Commands per page

continuationToken
string

The token used to retrieve the next page

Response

200 - application/json
OK

A page of commands.

data
object[] | null
meta
object