Integration notification

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

  • Your server returns this code if it accepts the callback.

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