Luma · Schema

V1 Events Hosts Remove Post Request

EventsEvent ManagementTicketingCommunityCalendarsGuestsAttendance

Properties

Name Type Description
event_id string Event ID, this usually starts with evt-
email string Email of the host to remove.
View JSON Schema on GitHub

JSON Schema

v1_events_hosts_remove_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_hosts_remove_post_request.json",
  "title": "V1 Events Hosts Remove Post Request",
  "type": "object",
  "properties": {
    "event_id": {
      "type": "string",
      "description": "Event ID, this usually starts with evt-"
    },
    "email": {
      "type": "string",
      "description": "Email of the host to remove."
    }
  },
  "required": [
    "event_id",
    "email"
  ]
}