v1

latestOpenAPI 3.1.0raw.githubusercontent.com2026-02-1354131442.5 KB
v1
cable-calibration

Cancel active cable encoder calibration

Cancel the active calibration process and return to normal operations.

Safely aborts calibration and the previous calibration factor is preserved. This operation is idempotent - calling cancel when no calibration is active will not result in an error.

post/api/v1/reel/calibration/cancel

Response

Calibration cancellation confirmation with restored system state

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": "Active calibration cancelled successfully",
  "name": "Calibration Cancelled",
  "value": {
    "action": "cancel_calibration",
    "error": false,
    "error_msgs": [],
    "result": {
      "calibrating": false
    }
  }
}