Skip to main content

Call Lift

The CALL_LIFT command submits a request for the lift to service a specific floor. The timing and prioritization of when the lift responds to this request depend on the lift system's internal logic and current passenger usage. It does not mean that the elevator will not stop at other floors.

info

When the lift arrives at a floor, it will be broadcasted over the websocket connection


WebSocket API

Command

  • Command: CALL_LIFT

Parameters

ParameterTypeRequiredDescription
commandStringYesCALL_LIFT
requestIdStringYesUnique identifier for the request.
parameters.targetFloorIntegerYesThe floor to which the lift is requested.

Response

FieldTypeDescription
requestIdStringUnique identifier for the request.
statusStringStatus of the request (success or error).
codeStringExpect CALL_LIFT_OK if success, otherwise expect error code

Broadcast Response

FieldTypeDescription
requestIdStringBROADCAST- appended by unique id
codeStringCURRENT_FLOOR
info.currentFloorIntegerCurrent floor of lift.

Example Request

{
"requestId": "a1b2c3d5",
"command": "CALL_LIFT",
"parameters": {
"targetFloor": 5
}
}

Expected Response

  • On Success:
{
"requestId": "a1b2c3d5",
"code": "CALL_LIFT_OK",
"status": "success"
}
  • Follow-Up Updates:

As the lift progresses, broadcasts will be sent whenever lift arrives at a new floor:

{
"requestId": "BROADCAST-XXXXX",
"code": "CURRENT_FLOOR",
"info": {
"currentFloor": 1
}
}