list_orders
Fetch paginated Eventbrite orders for an event or organization, with filters for status, email, changed-since time, and refund request status.
Instructions
List orders for an event or organization.
ENDPOINT: GET /events/{event_id}/orders/ OR GET /organizations/{organization_id}/orders/
Returns paginated list of orders. Orders are private - only available to authorized users.
FILTERING OPTIONS:
status: Filter by order status
active: Attending orders
inactive: Not attending orders
both: All orders
all_not_deleted: Active and inactive, but not deleted
changed_since (datetime): Only orders changed on/after this time (ISO 8601)
last_item_seen (string): With changed_since, orders after this time with ID > last_item_seen
only_emails (array): Only include orders from these email addresses
exclude_emails (array): Exclude orders from these email addresses
refund_request_statuses (array, event only): Filter by refund status
completed, pending, outside_policy, disputed, denied
ORDER FIELDS RETURNED:
created, changed: Timestamps
name, first_name, last_name, email: Order owner info
costs: Complete breakdown (base_price, display_price, eventbrite_fee, payment_fee, tax, gross, discount_amount, discount_type)
event_id: Event ID
time_remaining: Seconds to complete
status: Order status
promo_code (optional): Discount code
RESPONSE:
orders (array): List of Order objects
pagination: Pagination information
AUTHENTICATION: Requires: Authorization: Bearer PERSONAL_OAUTH_TOKEN
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | Filter: active, inactive, both, all_not_deleted | |
| event_id | No | Event ID (use this OR organization_id) | |
| only_emails | No | Include these emails | |
| changed_since | No | ISO 8601 datetime | |
| exclude_emails | No | Exclude these emails | |
| last_item_seen | No | For pagination with changed_since | |
| organization_id | No | Organization ID (use this OR event_id) | |
| refund_request_statuses | No | Event only: completed, pending, outside_policy, disputed, denied |