Lightspeed Restaurant K Series API
1.0.0

Lightspeed Restaurant offers a REST API in order to communicate with the data in the system. These APIs are built using the RESTful standards and adhere to the basic verb interactions as defined by the REST standard.

These services are in continuous development and subject to change. Find our versioning policy here.

This is the documentation for version 1.0.0 of the API. Last update on May 1, 2024.

Base URL
https://api.trial.lsk.lightspeed.app

Print Message

POST /o/op/1/printMsg

Send a message to the POS. Generates a notification on the register screen. Can also be sent to the printer.

Query parameters

application/json

Body Required

  • message string Required

    The message to be printed.

  • Print on the receipt printer as well as till (highly recommended).

Responses

  • 200 application/json

    accepted

    Hide response attribute Show response attribute object
POST /o/op/1/printMsg
curl \
 -X POST https://api.trial.lsk.lightspeed.app/o/op/1/printMsg?businessLocationId=45454565682155 \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"message":"The Print Message","alsoToPrinter":true}'
Request example
{
  "message": "The Print Message",
  "alsoToPrinter": true
}
Response examples (200)
{
  "status": "ok"
}