Admin APIs/Device Commands
Command Status
GET
/admin/commands/status/:cmdIdBearer token required
ADMINContent-Type:
application/jsonPath Parameters
| Name | Type | Required | Description |
|---|---|---|---|
cmdId | string | Required |
Response Example
200 OK
{
"data": {
"cmdId": "cmd-uuid-456",
"status": "DELIVERED",
"sentAt": "2026-03-08T10:00:00Z",
"deliveredAt": "2026-03-08T10:00:05Z"
}
}Code Examples
curl -X GET 'https://<your-domain>:3001/admin/commands/status/:cmdId' \
-H 'Authorization: Bearer <token>'Try It
API Playground
Sends a real request to the configured servercmdId*