# Event Admissions ## Issue admission tokens - [POST /events/{event}/tokens](https://docs.ticketingevents.com/openapi/event-admissions/manage_admission_tokens.md): Create tokens that authorise event staff to grant admission to the event. Tokens allow event staff to redeem tickets and admit patrons to one or more event sections. Each event has a global token that allows redemption of tickets for all sections. Additional tokens can be created, as needed, and should be issued to event staff on a one-to-one basis. ## List admission tokens - [GET /events/{event}/tokens](https://docs.ticketingevents.com/openapi/event-admissions/list_event_tokens.md): Retrieve a list of tokens permitted to redeem tickets issued for this event. ## Retrieve admission token details - [GET /events/{event}/tokens/{token}](https://docs.ticketingevents.com/openapi/event-admissions/retrieve_admission_token.md): Retrieve the details of the specified admission token. ## Modify admission token sections - [PUT /events/{event}/tokens/{token}](https://docs.ticketingevents.com/openapi/event-admissions/update_admission_token.md): Update the event sections that the admission token can be used to grant entry to ## Invalidate an admission token - [DELETE /events/{event}/tokens/{token}](https://docs.ticketingevents.com/openapi/event-admissions/invalidate_admission_token.md): Invalidate an admission token and remove it from the event. Invalidated tokens can no longer be used by event staff to redeem tickets and grant admission. ## Retrieve valid event tickets - [GET /events/{event}/tickets](https://docs.ticketingevents.com/openapi/event-admissions/list_event_tickets.md): Retrieve a detailed list of valid event tickets issued for sections that the authenticated redeemer is authorised to admit patrons to. ## Admit event patrons - [POST /events/{event}/admissions](https://docs.ticketingevents.com/openapi/event-admissions/admit_event_patrons.md): 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. ## List event admissions - [GET /events/{event}/admissions](https://docs.ticketingevents.com/openapi/event-admissions/list_event_admissions.md): Retrieve a list of admissions to the event sections that the authenticated redeemer has access to.