Overview
useFetchEventRsvps returns a callable that fetches the paginated named RSVP (guest) list. Each item is an EventRsvp with the user populated. The named list is visible to hosts always, and to any viewer when the event’s guestListVisible is true (otherwise 403). Aggregate counts are always available on the event’s rsvpCounts.
Usage Example
Parameters
The event ID.
Comma-separated statuses to filter by, e.g.
"going,maybe". Omit for all.Page number (1-indexed). Defaults to
1.Results per page. Capped at
100.Returns
Returns aPromise<PaginatedResponse<EventRsvp>> — { data, pagination }.

