Own entry state

GET/events/:eventId/entries

Retrieve the authenticated user's entries (non-canceled) for the specified event.

AuthLogin required

Path parameters

eventIdstringrequired

Event ID

Response

FieldTypeDescription
entriesEventEntry[]Entries (state / ticket / payment info)
Request
curl https://api.4s.link/events/EVENT_ID/entries \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"entries": [
{
"id": "en1-...",
"state": "CONFIRMED",
"eventId": "e1f2a3b4-...",
"userId": "a1b2c3d4-...",
"checkedInAt": null,
"ticketId": "t1-...",
"ticket": { "id": "t1-...", "name": "一般" },
"invitationGeneration": 0,
"canCreateInvitationCode": true,
"createdAt": "2026-05-01T00:00:00.000Z"
}
]
}