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

Update locales

PUT /i/locales/{businessId}

Sets business item languages. Supports language ISO code 2 or language_localisation (ie. en or en_US).

Path parameters

application/json

Body Required

array[string] array[string]

List of locales

Responses

PUT /i/locales/{businessId}
curl \
 -X PUT https://api.trial.lsk.lightspeed.app/i/locales/454335871 \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '["en","es","de","fr"]'
Request example
[
  "en",
  "es",
  "de",
  "fr"
]