# get status list for command request API to get and filter command request status Endpoint: GET /v0/enterprise/{enterprise_id}/command/{request_id}/status/ Version: 1.0.0 Security: apiKey ## Path parameters: - `enterprise_id` (string, required) ID of the enterprise - `request_id` (string, required) ID for the command request ## Query parameters: - `device` (string) Filter status result by device id. - `state` (string) Filter by command state ## Response 200 fields (application/json): - `count` (integer) - `next` (string) - `previous` (string) - `results` (array) - `results.id` (string) Unique command identifier - `results.request` (string) Request Id associated with this command - `results.device` (string) Device associated with this command - `results.state` (string) Current state of the command Enum: "Command Queued", "Command Initiated", "Command Acknowledged", "Command In Progress", "Command TimeOut", "Command Success", "Command Failure", "Command Scheduled", "Command Cancelled" - `results.reason` (string) details briefing the reason for current command state - `results.created_on` (string) Timestamp of command creation - `results.updated_on` (string) Last updated timestamp of command - `results.meta` (object) - `results.meta.device` (object) - `results.meta.device.id` (string) - `results.meta.device.device_name` (string) - `results.meta.device.alias_name` (string,null) - `results.meta.device.timezone_string` (string,null) - `results.meta.device.tags` (array,null) Tags associated with the device - `results.meta.device.managed_by` (string) Indicates whether the device is managed by a Blueprint or Template Enum: "BLUEPRINT", "TEMPLATE" ## Response 401 fields (application/json): - `errors` (array) - `message` (string) - `status` (integer) ## Response 404 fields (application/json): - `errors` (array) - `message` (string) - `status` (integer) ## Response 500 fields (application/json): - `errors` (array) - `message` (string) - `status` (integer)