Lodol Docs

Eventbrite

API actions for the Eventbrite integration.

Eventbrite

Manage Eventbrite organizations and events with a personal token.


Create draft event

Create a new draft event in an Eventbrite organization.

Parameters

ParameterTypeRequiredDescription
organization_idstringYesThe organization ID.
namestringYesThe event name.
start_utcstringYesEvent start time in ISO 8601 format (UTC).
end_utcstringYesEvent end time in ISO 8601 format (UTC).
timezonestringYesThe event timezone (e.g., 'America/Los_Angeles').
currencystringNoCurrency code for tickets (e.g., 'USD').
summarystringNoSummary or subtitle displayed with the event.

Response

{
  "id": "222222222",
  "name": {
    "text": "New Draft Event"
  },
  "status": "draft"
}

List organization events

List events for a specific Eventbrite organization.

Parameters

ParameterTypeRequiredDescription
organization_idstringYesThe organization ID.
statusstringNoFilter by event status (e.g., 'live', 'draft', 'completed').

Response

[
  {
    "id": "111111111",
    "name": {
      "text": "Annual Conference 2025"
    },
    "status": "live"
  }
]

List user organizations

List all organizations the authenticated user belongs to.

Response

[
  {
    "id": "123456789",
    "name": "My Event Company"
  },
  {
    "id": "987654321",
    "name": "Secondary Org"
  }
]

On this page