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. |
Response
Response
Field Name | Type | Description |
---|---|---|
requestId | String | Unique identifier of the request |
code | String | Expect SET_DOOR_OPEN_OK if successful, otherwise error code |
status | String | Status of the request (success /error ) |
Example Request
{
"requestId": "a1b2c3d6",
"command": "SET_DOOR_OPEN"
}
Expected Response
- On Success:
{
"request_id": "a1b2c3d6",
"status": "success",
"code": "SET_DOOR_OPEN_OK"
}