Luma · Schema

V1 Events Hosts Update 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 update.
access_level string The new access level for the host. One of "none", "check-in", or "manager". The event creator’s access level cannot be changed.
is_visible boolean Whether the host is visible on the event page.
View JSON Schema on GitHub

JSON Schema

v1_events_hosts_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/v1_events_hosts_update_post_request.json",
  "title": "V1 Events Hosts Update 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 update."
    },
    "access_level": {
      "description": "The new access level for the host. One of \"none\", \"check-in\", or \"manager\". The event creator\u2019s access level cannot be changed.",
      "type": "string",
      "enum": [
        "none",
        "check-in",
        "manager"
      ]
    },
    "is_visible": {
      "description": "Whether the host is visible on the event page.",
      "type": "boolean"
    }
  },
  "required": [
    "event_id",
    "email"
  ]
}