# Admit event patrons Attempt to admit one or more patrons to an event based on their ticket serial numbers. The endpoint accepts a list containing the serials of tickets to be redeemed. The system will admit any serials that are currently valid for the event sections that the redeemer is authorised to admit to, and return a list of those that were successfully redeemed. Endpoint: POST /events/{event}/admissions Version: 3.0.0 Security: SessionKey ## Path parameters: - `event` (integer, required) Unique identifier of the requested event ## Request fields (application/json): - `redeemer` (string, required) Human-readable name of the person redeeming the listed tickets - `device` (string, required) Unique identifier of the device the tickets are being redeemed from - `serials` (array, required) List of ticket serials to redeem for admission to this event ## Response 201 fields (application/json): - `redeemer` (string) Human-readable name of the person who redeemed the ticket - `device` (string) Unique identifier of the device from which the ticket was redeemed - `ticket` (string) Serial number of the ticket that granted admission - `patron` (object) Full name and username of the TickeTing user admitted on this ticket - `patron.username` (string) Unique username attached to the account - `patron.email` (string) Unique email address attached to the account - `patron.firstName` (string) The account holder's forename - `patron.lastName` (string) The account holder's surname - `section` (object) Name of the event section the patron was admitted to - `section.self` (string) URI of the event section resource - `section.name` (string) Name of the event section - `section.description` (string) Details of the experience customers can expect when purchasing tickets to this event section - `admitted` (string) The date and time at which the patron was admitted ## Response 400 fields (application/json): - `message` (string) Reason for the given response. ## Response 403 fields (application/json): - `message` (string) Reason for the given response.