Ticket detail

GET/events/:eventId/tickets/:ticketId

Retrieve a single ticket type.

AuthNot required

Path parameters

eventIdstringrequired

Event ID or slug.

ticketIdstringrequired

Ticket type ID; required for events that have ticket types.

Request
curl https://api.4s.link/events/EVENT_ID/tickets/TICKET_ID \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"id": "t1a2b3c4-...",
"name": "一般チケット",
"description": "...",
"price": 5000,
"paymentType": "PREPAID_STRIPE",
"salesLimit": 200,
"status": "PUBLISHED",
"requiresApproval": false,
"transferable": true
}