Get Registered Devices
GET/api/v1/device/devices
This service message allows retrieval of all registered devices.
Request
Query Parameters
groups string[]
Array of groups IDs or a single group ID
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id stringrequired
lastUpdatedDate date-time
lastConnectionDate date-time
name string
OS string
availableStorage string
power number
bandwidth number
operativeState boolean
online boolean
True when the device currently holds an open reactive (managed-command) SSE channel.
metaData object
groupName string
groupId number
uid string
formations string[]
platformName string
deviceTypeName string
devices string[]
platformId string
Platform instance id reported by the agent.
[
{
"id": "string",
"lastUpdatedDate": "2026-09-10T14:32:46.345Z",
"lastConnectionDate": "2026-09-10T14:32:46.345Z",
"name": "string",
"OS": "string",
"availableStorage": "string",
"power": 0,
"bandwidth": 0,
"operativeState": true,
"online": true,
"metaData": {},
"groupName": "string",
"groupId": 0,
"uid": "string",
"formations": [
"string"
],
"platformName": "string",
"deviceTypeName": "string",
"devices": [
"string"
],
"platformId": "string"
}
]
Loading...