Force disable MACHINE relay but keep lane as in-wash (superusers only)
This endpoint documentation is generated directly from openapi.yaml.
Endpoint
POST /modules/self-serve/lane/force/machine/disable
Operation
Operation ID: forceDisableSelfServeLaneMachine
Superuser/emergency endpoint. Turns off the MACHINE relay while ensuring the lane remains in an IN_WASH state (simulating a started wash without machine assistance).
Authentication
Security requirements:
Scheme | Scopes |
|---|---|
BearerAuth | - |
Request Body
Required: yes.
Content type: application/json
{
"properties": {
"lane_id": {
"type": "integer"
},
"license_plate": {
"nullable": true,
"type": "string"
}
},
"required": [
"lane_id"
],
"type": "object"
}
Responses
Status | Description | Content Types |
|---|---|---|
200 | MACHINE relay force-disabled and lane ensured in-wash | application/json |
401 | ||
403 |
Schema for response 200 (application/json):
{
"properties": {
"forced": {
"type": "boolean"
},
"lane_id": {
"type": "integer"
},
"machine": {
"enum": [
"DISABLED"
],
"type": "string"
},
"state": {
"type": "string"
},
"status": {
"type": "string"
},
"wash_start_time": {
"type": "integer"
}
},
"type": "object"
}
17 March 2026