v11

latestOpenAPI 3.1.12026-08-03174162.0 MB
Admissions

List admissions

Returns admissions with cursor-based pagination. Automatically uses search-backed pagination when query parameter is provided for full-text search capabilities.

get/events/{eventId}/admissions

Path parameters

eventIdstring required

Identifier of the event to list admission types for

Example:evt_01jps5cgsenjrazw6wswmyspa3

Query parameters

sectionIdstring

Filter admission types by section identifier. If provided, only admissions for this section are returned

Example:sct_01jps5cgse0g3qj16kpq8t221r
querystring

Optional search query to filter admissions by name. When provided, search-backed pagination is used.

Example:Early Bird
limitinteger

Maximum number of admission types to return per request (1-100, default: 20)

Example:20
cursorstring

Pagination cursor for retrieving the next set of results. Obtained from previous response

Example:eyJpZCI6ImFkbV8wMWpwczVjZ3NlZTB4dmFwYms5MmU4ZWI0ZyJ9

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

{
  "admissions": [
    {
      "id": "adm_01jps5cgsee0xvapbk92e8eb4g",
      "createdAt": "2026-08-03T06:13:52.214Z",
      "updatedAt": "2026-08-03T06:13:52.214Z",
      "sectionId": "sct_01jps5cgse0g3qj16kpq8t221r",
      "teamId": "tem_01jqpjksnsen9vprw95et60t2m",
      "promoterId": "pmt_01jqpjksnsen9vprw95et60t2m",
      "eventId": "evt_01jps5cgsenjrazw6wswmyspa3",
      "eventSlug": "test-event",
      "name": "Final Release",
      "subtitle": "Entry before 10pm",
      "description": "Early bird pricing with priority entry. Must present valid ID at gate.",
      "capacity": 100000,
      "limit": -1,
      "available": 70000,
      "sold": 20000,
      "reserved": 10000,
      "order": 0,
      "entryStartsAt": "2026-08-04T06:13:52",
      "entryEndsAt": "2026-08-05T06:13:52",
      "saleStartsAt": "2026-08-03T06:13:52",
      "saleEndsAt": "2026-08-05T06:13:52",
      "saleEndsBehavior": "SALE_ENDED",
      "price": {
        "base": 1000,
        "booking": 200,
        "currency": "AUD"
      },
      "visibility": "ALWAYS",
      "tenantId": "tnt_01jqpj2t2kfvmstt6f6tzkbaf2",
      "deleted": false,
      "orderPadded": "0000000000"
    }
  ],
  "before": "eyJ2ZXJzaW9uIjoxLCJpbnRlbnQiOnsic291cmNlIjoiZGVtbyJ9LCJwb3MiOnsicHJpbWFyeUtleSI6InBybV8wMXM4NTNqIn19",
  "after": "eyJ2ZXJzaW9uIjoxLCJpbnRlbnQiOnsic291cmNlIjoiZGVtbyJ9LCJwb3MiOnsicHJpbWFyeUtleSI6InBybV8wMXM4NTNkIn19",
  "limit": 20
}