Devices
List
List devices.
get/devices
Query parameters
offsetinteger
The offset of the items to return. An offset of 10 with a limit of 10 returns items 11-20.
limitinteger
Example:10
The maximum number of items to return. A limit of 15 with an offset of 0 returns items 1-15.
order_byDeviceOrderBy[]
Sort order for the device results.
[ "created_at:desc" ]
expandDeviceListExpansion[]
Fields to expand on each device in the list.
[ "current_release" ]
idstring[]
The device IDs to filter by.
[ "dev_123" ]
namestring[]
The device names to filter by.
[ "My Device" ]
agent_versionstring[]
The agent versions to filter by.
[ "v1.0.0" ]
current_release_idstring[]
The release IDs to filter devices by their current release.
[ "rls_123" ]
Response
Successfully listed the devices.
Example response
{
"object": "list",
"data": [
{
"object": "device",
"id": "dvc_123",
"name": "My Device",
"status": "online",
"agent_version": "v1.0.0",
"last_connected_at": "2021-01-01T00:00:00Z",
"last_disconnected_at": null,
"created_at": "2021-01-01T00:00:00Z",
"updated_at": "2021-01-01T00:00:00Z"
}
]
}