Skip to content

List event admissions

Request

Retrieve a list of admissions to the event sections that the authenticated redeemer has access to.

Security
SessionKey(Required scopes: administrator)
Path
eventintegerrequired

Unique identifier of the requested event

Query
recordsinteger

The number of records per page that should be returned

Default:25
pageinteger

The number of the results page to return

Default:1
redeemerstring

Only return admissions granted on tickets redeemed by the specified name.

devicestring

Only return admissions granted on tickets redeemed by the specified device.

ticketstring^\w{6}-\w{4}\d{8}$

Only return details of the admission granted by the specified ticket

patronstring^[A-Z]{2}-[A-Z0-9]{8}$

Only return admissions of the specified patron to the event

sectionstring^\d{14}$

Only return admissions to the specified section of this event

curl -i -X GET \
  'https://docs.ticketingevents.com/_mock/openapi/events/{event}/admissions?records=25&page=1&redeemer=string&device=string&ticket=string&patron=string&section=string' \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

The list of event admissions matching the given criteria was successfully retrieved.

Bodyapplication/json
totalinteger

The total number of results available

pageinteger

The number of the results page returned

recordsinteger

The maximum number of results returned per page

entriesArray of objects(response-20)
Response
{ "page": 3, "records": 2, "entries": [ {}, {} ] }