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
| Parameter | Type | Required | Description |
|---|---|---|---|
organization_id | string | Yes | The organization ID. |
name | string | Yes | The event name. |
start_utc | string | Yes | Event start time in ISO 8601 format (UTC). |
end_utc | string | Yes | Event end time in ISO 8601 format (UTC). |
timezone | string | Yes | The event timezone (e.g., 'America/Los_Angeles'). |
currency | string | No | Currency code for tickets (e.g., 'USD'). |
summary | string | No | Summary 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
| Parameter | Type | Required | Description |
|---|---|---|---|
organization_id | string | Yes | The organization ID. |
status | string | No | Filter 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"
}
]