v1

latestOpenAPI 3.1.0raw.githubusercontent.com2026-02-1354131442.5 KB
v1
emergency

Deactivate emergency stop

Deactivates the emergency stop system to restore normal reel operations.

Deactivation releases the emergency stop lock and allows normal motor control operations to resume. The system returns to its previous operational state, ready to accept movement commands.

Exercise caution when deactivating emergency stop - ensure the area is clear and safe for reel operations before proceeding.

put/api/v1/reel/deactivate-estop

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": "Emergency stop deactivated successfully",
  "name": "Emergency Stop Deactivated",
  "value": {
    "action": "REEL_DEACTIVATE_ESTOP",
    "error": false,
    "error_msgs": [],
    "result": {
      "is_active": false
    }
  }
}