Skip to content

Retrieve ticket wallet

Request

Retrieve a list of tickets belonging to the specified account.

Security
SessionKey(Required scopes: customeradministrator)
Path
numberstringrequired

Alphanumeric identifier of the user account

Query
recordsinteger

The number of records per page that should be returned

Default:25
pageinteger

The number of the results page to return

Default:1
eventstring^\d{14}$

Only return tickets that grant access to the specified event

sectionstring^\d{14}$

Only return tickets that grant access to the specified section

serialstring

Only return tickets with serial numbers matching the pattern

statusArray of strings

Only return tickets that are in one of the specified statuses

Items Enum:"Issued""Pending""Held""Redeemed""Expired"
curl -i -X GET \
  'https://docs.ticketingevents.com/_mock/openapi/accounts/{number}/tickets?records=25&page=1&event=string&section=string&serial=string&status=Issued' \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

The list of matching tickets was successfully retrieved.

Bodyapplication/json
totalinteger

The total number of results available

pageinteger

The number of the results page returned

recordsinteger

The maximum number of results returned per page

entriesArray of objects

List of tickets matching the given criteria

Response
{ "page": 1, "records": 15, "entries": [ {}, {} ] }