# List event admissions Retrieve a list of admissions to the event sections that the authenticated redeemer has access to. Endpoint: GET /events/{event}/admissions Version: 3.0.0 Security: SessionKey ## Path parameters: - `event` (integer, required) Unique identifier of the requested event ## Query parameters: - `records` (integer) The number of records per page that should be returned - `page` (integer) The number of the results page to return - `redeemer` (string) Only return admissions granted on tickets redeemed by the specified name. - `device` (string) Only return admissions granted on tickets redeemed by the specified device. - `ticket` (string) Only return details of the admission granted by the specified ticket - `patron` (string) Only return admissions of the specified patron to the event - `section` (string) Only return admissions to the specified section of this event ## Response 200 fields (application/json): - `total` (integer) The total number of results available - `page` (integer) The number of the results page returned - `records` (integer) The maximum number of results returned per page - `entries` (array) - `entries.redeemer` (string) Human-readable name of the person who redeemed the ticket - `entries.device` (string) Unique identifier of the device from which the ticket was redeemed - `entries.ticket` (string) Serial number of the ticket that granted admission - `entries.patron` (object) Full name and username of the TickeTing user admitted on this ticket - `entries.patron.username` (string) Unique username attached to the account - `entries.patron.email` (string) Unique email address attached to the account - `entries.patron.firstName` (string) The account holder's forename - `entries.patron.lastName` (string) The account holder's surname - `entries.section` (object) Name of the event section the patron was admitted to - `entries.section.self` (string) URI of the event section resource - `entries.section.name` (string) Name of the event section - `entries.section.description` (string) Details of the experience customers can expect when purchasing tickets to this event section - `entries.admitted` (string) The date and time at which the patron was admitted ## Response 403 fields (application/json): - `message` (string) Reason for the given response. ## Response 404 fields (application/json): - `message` (string) Reason for the given response.