Set Door Close
The SET_DOOR_CLOSE
command releases door control back to normal usage. It may not close the lift door immediately. This ensures that the lift becomes available for other passengers and prevents the door from reopening unintentionally.
warning
Always use this command after completing operations that required the door to stay open.
WebSocket API
Command
- Command:
SET_DOOR_CLOSE
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
command | String | Yes | SET_DOOR_CLOSE |
requestId | String | Yes | Unique identifier for the request |
Response
Field | Type | Description |
---|---|---|
requestId | String | Unique identifier for the request. |
status | String | Status of the request (success /error ) |
Example Request
{
"requestId": "a1b2c3d7",
"command": "SET_DOOR_CLOSE"
}
Expected Response
- On Success:
{
"request_id": "a1b2c3d7",
"status": "success"
}