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

Get allergens

GET /i/allergens

Returns a list of all possible allergens that can be added to a rich item. See Allergens Table for more details.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • code string

      Allergen Code

    • translations array[object]

      List of translations

      Hide translations attributes Show translations attributes object
      • locale string

        Language locale (eg 'en' or 'en_US')

      • text string

        Translation in the language of the locale

GET /i/allergens
curl \
 -X GET https://api.trial.lsk.lightspeed.app/i/allergens \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "code": "fish",
    "translations": [
      {
        "locale": "en",
        "text": "Fish"
      },
      {
        "locale": "fr",
        "text": "Poisson"
      }
    ]
  }
]