Send self-serve lane command
This endpoint documentation is generated directly from openapi.yaml.
Endpoint
POST /modules/self-serve/lane/command
Operation
Operation ID: sendSelfServeLaneCommand
Send a command (e.g., start, stop, reset) to a self-serve lane
Authentication
Security requirements:
Scheme | Scopes |
|---|---|
BearerAuth | - |
Request Body
Required: yes.
Content type: application/json
{
"properties": {
"command": {
"enum": [
"START",
"STOP",
"RESET",
"RESERVE",
"RELEASE"
],
"type": "string"
},
"lane_id": {
"type": "integer"
},
"license_plate": {
"description": "Required for START command",
"type": "string"
}
},
"required": [
"lane_id",
"command"
],
"type": "object"
}
Responses
Status | Description | Content Types |
|---|---|---|
200 | Command sent successfully | application/json |
Schema for response 200 (application/json):
{
"$ref": "#/components/schemas/SelfServeLaneStatus"
}
17 March 2026