Get Door Status
The GET_DOOR_STATUS
command allows the fleet manager to check whether the lift doors are currently open or closed. This command is helpful for monitoring the lift’s operational state.
WebSocket API
Command
- Command:
GET_DOOR_STATUS
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
command | String | Yes | GET_DOOR_STATUS |
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 ) |
code | String | Expect GET_DOOR_STATUS_OK if successful, otherwise error code |
info.doorStatus | String | 3 possible states open / closed |
Example Request
{
"requestId": "a1b2c3e0",
"command": "GET_DOOR_STATUS"
}
Expected Response
- On Success:
{
"requestId": "a1b2c3e0",
"status": "success",
"code": "GET_DOOR_STATUS_OK",
"info": {
"doorStatus": "closed"
}
}