List Event Ticket Types
GET /events/:eventId/ticket-types
Retrieve a list of ticket types for a specific event. This endpoint returns all published ticket types associated with the given event.
Example Response
{ "list": [ { "id": "bd4a0997-39db-41d9-883a-cdfa83e2101f", "name": "General Admission", "description": "Standard entry ticket", "price": 2500, "masterLanguage": "en", "translations": [ { "language": "da", "name": "Standard billet", "description": "Standard adgangsbillet" } ], "maxQuantity": 1000, "availableQuantity": 850, "soldOut": false, "addOn": false, "published": true }, { "id": "c6062aa8-40eb-52e0-9af2-e5e193e3102g", "name": "VIP Access", "description": "VIP entry with exclusive perks", "price": 7500, "masterLanguage": "en", "translations": [], "maxQuantity": 100, "availableQuantity": 45, "soldOut": false, "addOn": false, "published": true } ] }