# Issue admission tokens 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. Endpoint: POST /events/{event}/tokens Version: 3.0.0 Security: SessionKey ## Path parameters: - `event` (integer, required) Unique identifier of the requested event ## Request fields (application/json): - `sections` (array, required) List of sections this token can redeem tickets for. ## Response 201 fields (application/json): - `self` (string) URI of the token resource - `code` (string) The code used to uniquely identify this token in the system - `global` (boolean) Whether or not this is a global event token - `sections` (array) List of sections this token can redeem tickets for. ## Response 400 fields (application/json): - `message` (string) Reason for the given response. ## Response 403 fields (application/json): - `message` (string) Reason for the given response.