Fetch Event RSVPs
Event Endpoints
Fetch Event RSVPs
List the named guest list (who RSVP’d) for an event
GET
Fetch Event RSVPs
Returns a paginated list of EventRsvp records, each with the
See also: useFetchEventRsvps
user populated — the named guest list. Results are ordered by createdAt descending.
Authentication is optional. The event is first loaded behind the visibility predicate, so a caller without access to the event gets 404. The named list itself is then gated:
- Hosts can always see it.
- Any viewer (including anonymous) can see it when the event’s
guestListVisibleistrue. - Service/master keys bypass the gate.
- Otherwise the response is
403.
rsvpCounts — this endpoint only governs the per-user list.
Path Parameters
UUID of the event.
Query Parameters
Page number (1-indexed). Defaults to
1.Results per page. Capped at
100. Defaults to 10.Comma-separated RSVP statuses to filter by, e.g.
"going,maybe". When omitted, all statuses are returned.Response
Returns a paginated response:{ data: EventRsvp[], pagination: {...} }.
Error Responses
Not Found / No Access — 404
Not Found / No Access — 404
Guest List Hidden — 403
Guest List Hidden — 403

