Luma · Schema

V2 Webhooks Update Post Request

EventsEvent ManagementTicketingCommunityCalendarsGuestsAttendance

Properties

Name Type Description
id string
event_types array
status string
View JSON Schema on GitHub

JSON Schema

v2_webhooks_update_post_request.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/luma/main/json-schema/v2_webhooks_update_post_request.json",
  "title": "V2 Webhooks Update Post Request",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "event_types": {
      "minItems": 1,
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "*",
          "calendar.event.added",
          "calendar.person.subscribed",
          "event.canceled",
          "event.created",
          "event.updated",
          "guest.registered",
          "guest.updated",
          "ticket.registered"
        ]
      }
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "paused"
      ]
    }
  },
  "required": [
    "id"
  ]
}