Skip to content
Eventpop API Documentation
GitHub

List authenticated user's tickets

GET
/organizers/{organizer_id}/tickets

Returns a paginated list of tickets belonging to the authenticated user for events within the specified organizer. Requires User Access Token with public scope. Only returns tickets for events owned by the specified organizer.

Parameters

Path Parameters

organizer_id
required
integer format: int32

Query Parameters

access_token
string

OAuth Token (alternative to Authorization header)

order_by
string
default: id
Allowed values: id created_at updated_at used_at
order
string
default: asc
Allowed values: asc desc
page
integer format: int32
default: 1
per_page
integer format: int32
default: 10

Responses

200

Get user’s tickets

PublicAPI_Entities_Ticket model

object
id

Unique ticket identifier

integer format: int32
order_id

ID of the order this ticket belongs to

integer format: int32
event_id

ID of the event this ticket is for

integer format: int32
status

Ticket status (e.g., “active”, “used”, “revoked”)

string
firstname

Ticket holder first name

string
lastname

Ticket holder last name

string
phone

Ticket holder phone number

string
email

Ticket holder email address

string
reference_code

Unique reference code for ticket validation (e.g., “ABC123”)

string
kind

Ticket kind (e.g., “normal”, “external”)

string
external_id

External system identifier for idempotency

string
revoke_note

Note explaining why ticket was revoked

string
ticket_type

Ticket type information including name and price

object
id
string
name
string
price
string
price_satangs
string
kind
string
price_label

Ticket price label (formatted price, “Free”, complimentary note, or pack pricing)

string
forms

Custom form field responses for this ticket

array
created_at

Ticket creation timestamp (ISO 8601 format)

string
updated_at

Last update timestamp (ISO 8601 format)

string
used_at

Check-in timestamp (ISO 8601 format), null if not used

string
registered_at

Registration timestamp (ISO 8601 format), null if not registered

string

401

Unauthorized - Invalid user token or organizer mismatch

403

Forbidden - Missing public scope