Participant counts

GET/manage/events/:eventId/entries/counts

Return registration counts by state and ticket. Requires the participantsRead permission.

AuthLogin required

Path parameters

eventIdstringrequired

Event ID or slug.

Request
curl https://api.4s.link/manage/events/EVENT_ID/entries/counts \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"total": 320,
"byState": { "UNUSED": 280, "CHECKED_IN": 30, "CANCELED": 10 },
"byTicket": [
{ "ticketId": "t1a2b3c4-...", "name": "一般チケット", "count": 300 }
]
}