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 businesses data

GET /r/data/businesses

Lookup user businesses and their business locations.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • businessLocations array[object]

      The business locations under this business

      Hide businessLocations attributes Show businessLocations attributes object
      • id integer(int64)

        Business location id

      • name string

        Business location name

    • id integer(int64)

      The business locations under this business.

    • name string

      Business name.

GET /r/data/businesses
curl \
 -X GET https://api.trial.lsk.lightspeed.app/r/data/businesses \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "businessLocations": [
      {
        "id": 42,
        "name": "string"
      }
    ],
    "id": 42,
    "name": "string"
  }
]