Skip to main content

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

ParameterTypeRequiredDescription
commandStringYesSET_DOOR_CLOSE
requestIdStringYesUnique identifier for the request

Response

FieldTypeDescription
requestIdStringUnique identifier for the request.
statusStringStatus of the request (success/error)

Example Request

{
"requestId": "a1b2c3d7",
"command": "SET_DOOR_CLOSE"
}

Expected Response

  • On Success:
{
"request_id": "a1b2c3d7",
"status": "success"
}