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 Modifiers

GET /o/op/1/menu/modifiers

Returns a list of production instructions for a specific business location.

Query parameters

Responses

GET /o/op/1/menu/modifiers
curl \
 -X GET https://api.trial.lsk.lightspeed.app/o/op/1/menu/modifiers?businessLocationId=45454565682155 \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "multiSelectionPermitted": false,
    "productionInstructionGroupName": "Meat cooking",
    "productionIntructionGroupId": 236025632784487,
    "productionInstructionList": [
      {
        "instruction": "Bleu",
        "ikentooModifierId": 236025632784488
      },
      {
        "instruction": "Rare",
        "ikentooModifierId": 236025632784490
      },
      {
        "instruction": "Medium Rare",
        "ikentooModifierId": 236025632784492
      },
      {
        "instruction": "Medium",
        "ikentooModifierId": 236025632784494
      },
      {
        "instruction": "Medium well",
        "ikentooModifierId": 236025632784496
      },
      {
        "instruction": "Well done",
        "ikentooModifierId": 236025632784498
      }
    ]
  },
  {
    "multiSelectionPermitted": false,
    "productionInstructionGroupName": "Fish cooking",
    "productionIntructionGroupId": 236025632784501,
    "productionInstructionList": [
      {
        "instruction": "Seared",
        "ikentooModifierId": 236025632784502
      },
      {
        "instruction": "Medium",
        "ikentooModifierId": 236025632784504
      },
      {
        "instruction": "Well done",
        "ikentooModifierId": 236025632784506
      }
    ]
  },
  {
    "multiSelectionPermitted": false,
    "productionInstructionGroupName": "Egg cooking",
    "productionIntructionGroupId": 236025632784509,
    "productionInstructionList": [
      {
        "instruction": "Sunny Side",
        "ikentooModifierId": 236025632784510
      },
      {
        "instruction": "Over Easy",
        "ikentooModifierId": 236025632784512
      },
      {
        "instruction": "Hard",
        "ikentooModifierId": 236025632784514
      },
      {
        "instruction": "Scrambled",
        "ikentooModifierId": 236025632784516
      }
    ]
  },
  {
    "multiSelectionPermitted": false,
    "productionInstructionGroupName": "Garnish",
    "productionIntructionGroupId": 236025632784519,
    "productionInstructionList": [
      {
        "instruction": "Fries",
        "ikentooModifierId": 236025632784520
      },
      {
        "instruction": "Pasta",
        "ikentooModifierId": 236025632784522
      },
      {
        "instruction": "Rice",
        "ikentooModifierId": 236025632784524
      },
      {
        "instruction": "Vegetables",
        "ikentooModifierId": 236025632784526
      },
      {
        "instruction": "Salad",
        "ikentooModifierId": 236025632784528
      }
    ]
  },
  {
    "multiSelectionPermitted": false,
    "productionInstructionGroupName": "Flavors",
    "productionIntructionGroupId": 236025632784531,
    "productionInstructionList": [
      {
        "instruction": "Vanilla",
        "ikentooModifierId": 236025632784532
      },
      {
        "instruction": "Strawberry",
        "ikentooModifierId": 236025632784534
      },
      {
        "instruction": "Chocolate",
        "ikentooModifierId": 236025632784536
      },
      {
        "instruction": "Coffee",
        "ikentooModifierId": 236025632784538
      },
      {
        "instruction": "Caramel",
        "ikentooModifierId": 236025632784540
      }
    ]
  }
]