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.
Security
SessionKey(Required scopes: redeemer)
- Mock serverhttps://docs.ticketingevents.com/_mock/openapi/events/{event}/admissions
- QA Serverhttps://qa.ticketingevents.com/v3/events/{event}/admissions
- Production Serverhttps://api.ticketingevents.com/v3/events/{event}/admissions
curl -i -X POST \
'https://docs.ticketingevents.com/_mock/openapi/events/{event}/admissions' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"redeemer": "Butcher",
"device": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36...",
"serials": [
"DAWIER-BACK75580348",
"DAWIER-VIPV37536946",
"DAWIER-BACK75580348"
]
}'One or more of the tickets identified by the provided serials grants admission to an authorised event section and have been successfully redeemed.
Array [
]
Response
[ { "redeemer": "Butcher", "device": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36...", "ticket": "DAWIER-BACK75580348", "patron": { … }, "section": { … }, "admitted": "2024-03-01T10:59:56+00:00" }, { "redeemer": "Butcher", "device": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36...", "ticket": "DAWIER-VIPV37536946", "patron": { … }, "section": { … }, "admitted": "2024-03-01T10:59:56+00:00" } ]