Lightspeed · Schema

reservation-servicePlatformWebhookResponseDto

Updated webhook authorization details.

POSRetailRestaurantEcommerce

Properties

Name Type Description
accepted boolean Whether the webhook request was accepted.
currentAuthType string The current authentication type.
View JSON Schema on GitHub

JSON Schema

restaurant-k-series-reservation-service-platform-webhook-response-dto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "reservation-servicePlatformWebhookResponseDto",
  "description": "Updated webhook authorization details.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lightspeed-pos/refs/heads/main/json-schema/restaurant-k-series-reservation-service-platform-webhook-response-dto-schema.json",
  "type": "object",
  "properties": {
    "accepted": {
      "description": "Whether the webhook request was accepted.",
      "example": true,
      "type": "boolean"
    },
    "currentAuthType": {
      "description": "The current authentication type.",
      "enum": [
        "BASIC_AUTH",
        "BEARER_TOKEN",
        "API_KEYS",
        "OAUTH2"
      ],
      "type": "string"
    }
  },
  "required": [
    "accepted",
    "currentAuthType"
  ]
}