Skip to main content

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

ParameterTypeRequiredDescription
commandStringYesGET_DOOR_STATUS
requestIdStringYesUnique identifier for the request

Response

FieldTypeDescription
requestIdStringUnique identifier for the request
statusStringStatus of the request (success/error)
codeStringExpect GET_DOOR_STATUS_OK if successful, otherwise error code
info.doorStatusString3 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"
}
}