v1

latestOpenAPI 3.1.0raw.githubusercontent.com2026-02-1354131442.5 KB
v1
reel-movement

Get command lockout status

Retrieves the current status of the command lockout feature.

Returns whether movement commands are currently blocked by the lockout system. This status check allows applications to verify system state and provide appropriate user interface feedback about operational restrictions.

Command lockout status is independent of other system states like emergency stop or safeguard conditions.

get/api/v1/reel/command-lockout

Response

Successful Response

actionstring required

The action that was requested or performed by the endpoint

errorboolean required

Indicates whether the operation encountered an error

error_msgsstring[]

List of error messages if the operation failed

Example response

{
  "description": "Movement commands now blocked",
  "name": "Lockout Enabled",
  "value": {
    "action": "set_command_lockout",
    "error": false,
    "error_msgs": [],
    "result": {
      "lockout_enabled": true
    }
  }
}