Integration notification

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://api-docs.lsk.lightspeed.app/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Lightspeed Restaurant K-Series MCP server": {
  "url": "https://api-docs.lsk.lightspeed.app/mcp"
}
Close
POST https://webhook.example.com

These notifications are sent to the URL provided in theintegrationWebhookUrl field.

application/json

Body Required

  • businessLocationId integer(int64) Required

    The unique identifier of the business location.

  • notificationType string Required

    The type of notification.

    Values are ACTIVATED or DEACTIVATED.

  • platformCode string Required

    The unique code assigned to the reservation platform.

    Maximum length is 11. Format should match the following pattern: [a-zA-Z0-9_-]+.

  • platformRestaurantId string Required

    The external platform's unique identifier for the restaurant.

    Format should match the following pattern: [a-zA-Z0-9_-]+.

Responses

  • 200

    Your server returns this code if it accepts the callback.

POST reservation-serviceReservation integration notification
Request examples
{
  "businessLocationId": 9765040300495493,
  "notificationType": "ACTIVATED",
  "platformCode": "MyPlatform",
  "platformRestaurantId": "Restaurant-123"
}