# Retrieve ticket wallet Retrieve a list of tickets belonging to the specified account. Endpoint: GET /accounts/{number}/tickets Version: 3.0.0 Security: SessionKey ## Path parameters: - `number` (string, required) Alphanumeric identifier of the user account ## Query parameters: - `records` (integer) The number of records per page that should be returned - `page` (integer) The number of the results page to return - `event` (string) Only return tickets that grant access to the specified event - `section` (string) Only return tickets that grant access to the specified section - `serial` (string) Only return tickets with serial numbers matching the pattern - `status` (array) Only return tickets that are in one of the specified statuses Enum: "Issued", "Pending", "Held", "Redeemed", "Expired" ## 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) List of tickets matching the given criteria - `entries.serial` (string) Serial number that uniquely identifies the ticket - `entries.status` (string) The ticket's current status - `entries.section` (object) The event section to which this ticket grants access - `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.issued` (string) The date and time at which the ticket was issued - `entries.redeemed` (string) The date and time at which the ticket was redeemed (or N/A if it has not been) ## Response 400 fields (application/json): - `message` (string) Reason for the given response. ## Response 404 fields (application/json): - `message` (string) Reason for the given response.