Luma · Schema

V1 Events Cancel Post Request

EventsEvent ManagementTicketingCommunityCalendarsGuestsAttendance

Properties

Name Type Description
event_id string Event ID, this usually starts with evt-
cancellation_token string The cancellation token returned from the request endpoint.
should_refund boolean Whether to refund paid guests. Required if the event has paid guests.
View JSON Schema on GitHub

JSON Schema

v1_events_cancel_post_request.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/luma/main/json-schema/v1_events_cancel_post_request.json",
  "title": "V1 Events Cancel Post Request",
  "type": "object",
  "properties": {
    "event_id": {
      "type": "string",
      "description": "Event ID, this usually starts with evt-"
    },
    "cancellation_token": {
      "type": "string",
      "description": "The cancellation token returned from the request endpoint."
    },
    "should_refund": {
      "description": "Whether to refund paid guests. Required if the event has paid guests.",
      "type": "boolean"
    }
  },
  "required": [
    "event_id",
    "cancellation_token"
  ]
}