Print Message
Send a message to the POS. Generates a notification on the register screen. Can also be sent to the printer. If devices are offline, will be stored in queue for up to 24 hours.
Query parameters
-
The unique identifier for the business location.
Body Required
-
The message to be printed.
-
alsoToPrinter boolean
Print on the receipt printer as well as till (highly recommended).
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 examples
{
"message": "The Print Message",
"alsoToPrinter": true
}
Response examples (200)
{
"status": "ok"
}