Own entry state
GET
/events/:eventId/entriesRetrieve the authenticated user's entries (non-canceled) for the specified event.
| Auth | Login required |
|---|
Path parameters
eventIdstringrequiredEvent ID
Response
| Field | Type | Description |
|---|---|---|
entries | EventEntry[] | 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"}]}