Set Door Open
The SET_DOOR_OPEN command allows the fleet manager to hold the lift door open. This is particularly useful when a robot or other equipment needs extra time to enter or exit the lift.
There is a max timeout to prevent the lift from being held up in event of software failure.
warning
Always close the door manually after use to ensure the lift becomes available for other passengers.
WebSocket API
Command
- Command:
SET_DOOR_OPEN
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
command | String | Yes | SET_DOOR_OPEN |
requestId | String | Yes | Randomly generated unique identifier. |
parameters.liftId | String | Yes | The ID of the lift to open doors. |
Response
| Field Name | Type | Description |
|---|---|---|
requestId | String | Unique identifier of the request |
status | String | Status of the request (success or error). |
code | String | Response code (e.g., SET_DOOR_OPEN_OK) |
message | String | Descriptive message about the response |
Example Request
{
"requestId": "a1b2c3d6",
"command": "SET_DOOR_OPEN",
"parameters": {
"liftId": "lift1"
}
}
Expected Response
- On Success:
{
"requestId": "a1b2c3d6",
"status": "success",
"code": "SET_DOOR_OPEN_OK",
"message": "Door opened successfully"
}