Get Tickets
GET/tickets
Get the tickets for the current authenticated contact (those that they bough themselves, or those that were forwarded to them). This endpoint also returns tickets for other contacts that this current contact has been explicitly associated to with the ticketing.tickets.read scope.
Request
Header Parameters
API key
Bearer token
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
contacts objectrequired
purchaser objectrequired
The contact that purchased the ticket
assignee objectrequired
The contact that the ticket has been assigned to. This might be the purchaser or another contact that the ticket has been forwarded to.
event objectrequired
An event that a ticket is for which the ticket grants the assignee access to
Possible values: [SPORTS_MATCH, CONCERT]
venue objectrequired
sportsMatch object
teams object
home object
away object
Possible values: [CAN_FORWARD, CAN_RECALL]
Possible values: [NOT_SET, NOT_SCANNED, CANCELLED, SCANNED]
Possible values: [VIP, GENERAL_ADMISSION]
ticketPackage objectrequired
items object
qrCode objectrequired
The code that can be scanned at access control in the Stadium to allow access
price objectrequired
cost objectrequired
Possible values: [ADULT, CHILD, DISCOUNT]
seating objectrequired
details object
[
{
"id": "string",
"contacts": {
"purchaser": {
"contactId": "string",
"name": "string"
},
"assignee": {
"contactId": "string",
"name": "string"
},
"isOwner": true
},
"event": {
"id": "string",
"name": "string",
"type": "SPORTS_MATCH",
"start": "2024-01-11T21:22:39.028Z",
"end": "2024-01-11T21:22:39.028Z",
"image": "string",
"venue": {
"name": "string",
"latitude": "string",
"longitude": "string",
"street": "string",
"city": "string",
"postalCode": "string"
},
"sportsMatch": {
"teams": {
"home": {
"name": "string",
"logo": "string"
},
"away": {
"name": "string",
"logo": "string"
}
},
"competition": "string",
"competitionKey": "string"
}
},
"capabilities": [
[
null
]
],
"status": "NOT_SET",
"ticketType": "VIP",
"ticketPackage": {
"items": {}
},
"qrCode": {
"code": "string",
"availabilityFrom": "2024-01-11T21:22:39.028Z"
},
"price": {
"cost": {
"minorUnits": 0,
"precision": 0,
"currencyCode": "string"
},
"buyerType": "ADULT"
},
"seating": {
"additionalMessage": "string",
"details": {}
}
}
]