list_discounts
Retrieve paginated discounts for an Eventbrite organization, filtered by scope, code, type, event, or ticket group, to manage and audit promotional offers.
Instructions
List Discounts by Organization.
ENDPOINT: GET /organizations/{organization_id}/discounts/
Returns paginated response.
FILTERS:
scope (required): event, multi_events, user
code_filter: Approximate match code/name
code: Exact match code/name
type: coded, access, public, hold
ticket_group_id: Ticket Group ID
event_id: Event ID (required for event scope)
order_by: code_asc, code_desc, discount_type_asc, discount_type_desc, start_asc, start_desc
hold_ids: Hold IDs (format: H123 or I123)
ERRORS (400):
CODE_AND_CODE_FILTER_PROVIDED: Only one of code or code_filter
INVALID_USAGE_FOR_EVENT_ID: Event ID cannot be used with multi_events scope
ORDER_BY_NOT_SUPPORTED: Must provide code or code_filter for sorting
AUTHENTICATION: Requires: Authorization: Bearer PERSONAL_OAUTH_TOKEN
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | No | Exact match | |
| type | No | Type filter | |
| scope | Yes | Scope: event, multi_events, user (required) | |
| event_id | No | Event ID | |
| hold_ids | No | Hold IDs | |
| order_by | No | Sort order | |
| code_filter | No | Approximate match | |
| organization_id | Yes | Organization ID (required) | |
| ticket_group_id | No | Ticket Group ID |