v11

latestOpenAPI 3.1.12026-08-03174162.0 MB
Tickets

List event attendees with alpha-navigation support

Returns ticket-backed attendee roster rows for an event. Supports bounded browsing, alpha jump bookmarks, and attendee search.

get/tickets/attendees

Query parameters

eventIdstring required

Event identifier for the attendee roster.

Example:evt_01jps5cgsenjrazw6wswmyspa3
admissionIdsstring[]

Optional admission filters. When provided, only matching ticket admissions are included.

[
  "adm_01jps5cgsee0xvapbk92e8eb4g"
]
sectionIdsstring[]

Optional section filters. When provided, only matching ticket sections are included.

[
  "sct_01jps5cgse0g3qj16kpq8t221r"
]
querystring

Optional attendee search query. Matches attendee name, email, and phone.

Example:John
cursorstring

Opaque cursor for pagination. Use the cursor from the previous response to continue fetching results.

beforestring

Cursor for loading roster rows before the current window. Mutually exclusive with cursor and anchor.

anchorstring

Server-issued bookmark used to jump to a roster bucket. Mutually exclusive with cursor and before.

limitinteger

Maximum number of attendee roster rows to return per request (1-100, default: 100).

Example:100

Response

OK

beforestring nullable

Cursor for navigating backward in the result set. Omitted when there are no prior results.

afterstring nullable

Cursor for navigating forward in the result set. Omitted when there are no subsequent results.

limitnumber required

Maximum number of items to return in each result set

Example response

{
  "tickets": [
    {
      "id": "tkt_01jps5cgsg0s32w2pr73vbccde",
      "orderId": "ord_01jps5cgsfgve5b5g2666kyryh",
      "attendee": {
        "firstName": "Test",
        "lastName": "User",
        "email": "test@session.services",
        "phone": "+61411111111"
      },
      "admission": {
        "id": "adm_01jps5cgsee0xvapbk92e8eb4g",
        "name": "VIP Access",
        "entryEndsAt": "2025-03-15T19:30:00"
      },
      "section": {
        "id": "sct_01jps5cgse0g3qj16kpq8t221r",
        "name": "Floor Section A"
      }
    }
  ],
  "before": "eyJ2ZXJzaW9uIjoxLCJpbnRlbnQiOnsic291cmNlIjoiZGVtbyJ9LCJwb3MiOnsicHJpbWFyeUtleSI6InBybV8wMXM4NTNqIn19",
  "after": "eyJ2ZXJzaW9uIjoxLCJpbnRlbnQiOnsic291cmNlIjoiZGVtbyJ9LCJwb3MiOnsicHJpbWFyeUtleSI6InBybV8wMXM4NTNkIn19",
  "limit": 20
}