GET
/
v1
/
collectives
/
{collectiveId}
/
entities
curl --request GET \
  --url https://platform.realto.io/api/v1/collectives/{collectiveId}/entities \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "created": "2023-11-07T05:31:56Z",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "isOnline": true,
      "lastSeen": "2023-11-07T05:31:56Z",
      "properties": "<any>",
      "reference": {
        "manufacturer": "<string>",
        "type": "<string>",
        "reference": "<string>"
      },
      "type": "Battery"
    }
  ],
  "links": {
    "next": "<string>"
  },
  "meta": {
    "continuationToken": "<string>",
    "pageSize": 123
  }
}

Authorizations

Authorization
string
header
required

Access Token Authentication

Path Parameters

collectiveId
string
required

The id of the Collective

Query Parameters

pageSize
integer
default:
25

The number of Entities per page

continuationToken
string

The token used to retrieve the next page

Response

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