Skip to main content

LiftAuth API Overview

Welcome to LiftAuth! This guide will help you understand our terminology, sequence of events, and provide you with the necessary steps to integrate our system with your robots.


Terminology

Robot

A robot is an autonomous or semi-autonomous machine that interacts with the LiftAuth system to request and manage lift access. Each robot in your fleet must be configured to communicate with your fleet manager and LiftAuth servers.


Fleet Manager

The fleet manager acts as the orchestrator for all lift-related operations. It communicates with both the robots and LiftAuth's API servers to ensure seamless coordination. The fleet manager is responsible for:

  • Authenticating with the LiftAuth API using an API token.
  • Managing requests and responses between robots and LiftAuth servers.
  • Handling any error scenarios that arise during lift operations.

Lift Servers

Lift servers provide the backend services to interact with lifts. Through our WebSocket APIs, these servers enable the fleet manager to:

  • Call a lift to a specific floor.
  • Monitor the lift's status and position.
  • Control lift doors (e.g., open or close them).

Sequence of Events

StepActionDescription
1Robot is at Lift Landing, Ready to EnterThe robot is positioned at the lift landing, waiting to enter the lift.
2Fleet Manager Connects to LiftAuth ServersEstablishes a WebSocket connection using the API key and lift identifier.
3Fleet Manager Sends Request to Summon LiftSends a CALL_LIFT request to bring the lift to the robot's current floor.
4LiftAuth Acknowledges the RequestLiftAuth acknowledges the request and queues it for processing. The lift’s availability and passenger usage determine timing.
5Lift Notifies Fleet ManagerThe lift arrives at the robot’s floor and sends a notification to the fleet manager.
6Fleet Manager Coordinates Robot MovementInstructs the robot to proceed with entering the lift.
7Door ControlUses SET_DOOR_OPEN to hold the door open and SET_DOOR_CLOSE after the robot enters.
8Fleet Manager Sends Request to Send Lift to Target FloorSends a CALL_LIFT request to direct the lift to the robot's destination floor.
9Lift Services the Target Floor RequestProcesses the request and may stop at intermediate floors for other passengers.
10Lift Notifies Fleet Manager of Arrival at Target FloorNotifies the fleet manager when the lift arrives at the destination floor.
11Fleet Manager Coordinates Robot ExitReconnects to the robot and instructs it to exit the lift.
12Door ControlUses SET_DOOR_OPEN to ensure the lift door remains open until the robot exits, and SET_DOOR_CLOSE after exiting.