> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # ListRsvpSummary # Package: registration # Namespace: RsvpManagement # Method link: https://dev.wix.com/docs/api-reference/business-solutions/events/registration/rsvp-v2/list-rsvp-summary.md ## Permission Scopes: Read Event Tickets and Guest List: SCOPE.DC-EVENTS.READ-GUEST-LIST ## Introduction Retrieves an RSVP summary. --- ## REST API ### Schema ``` Method: listRsvpSummary Description: Retrieves an RSVP summary. URL: https://www.wixapis.com/events/v2/rsvps/summaries Method: GET # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: eventId Method parameters: query param name: eventId | type: array | description: Event GUID to retrieve the RSVP summary for. | required: true Return type: ListRsvpSummaryResponse - name: summaries | type: array | description: Retrieved RSVP summary. - name: eventId | type: string | description: Event GUID. - name: yesGuestCount | type: integer | description: Number of RSVPs that answered `yes`. - name: noGuestCount | type: integer | description: Number of RSVPs that answered `no`. - name: waitlistGuestCount | type: integer | description: Number of RSVPs that are in the waitlist. - name: totalRsvpCount | type: integer | description: Total number of RSVPs. ``` ### Examples ### List RSVP Summary for events ```curl curl -X GET 'https://www.wixapis.com/events/v2/rsvps/summaries?eventId=56b4ea0a-7789-40e8-81b8-10e8d6b8bb88&eventId=15872fbe-e584-4004-b095-d21ed2778f40' \ -H 'Authorization: ' \ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.registration.RsvpManagement.listRsvpSummary(eventId) Description: Retrieves an RSVP summary. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: eventId Method parameters: param name: eventId | type: array | description: Event GUID to retrieve the RSVP summary for. | required: true Return type: PROMISE - name: summaries | type: array | description: Retrieved RSVP summary. - name: eventId | type: string | description: Event GUID. - name: yesGuestCount | type: integer | description: Number of RSVPs that answered `yes`. - name: noGuestCount | type: integer | description: Number of RSVPs that answered `no`. - name: waitlistGuestCount | type: integer | description: Number of RSVPs that are in the waitlist. - name: totalRsvpCount | type: integer | description: Total number of RSVPs. ``` ### Examples ### listRsvpSummary ```javascript import { rsvpV2 } from '@wix/events'; async function listRsvpSummary(eventId) { const response = await rsvpV2.listRsvpSummary(eventId); }; ``` ### listRsvpSummary (with elevated permissions) ```javascript import { rsvpV2 } from '@wix/events'; import { auth } from '@wix/essentials'; async function myListRsvpSummaryMethod(eventId) { const elevatedListRsvpSummary = auth.elevate(rsvpV2.listRsvpSummary); const response = await elevatedListRsvpSummary(eventId); } ``` ### listRsvpSummary (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { rsvpV2 } from '@wix/events'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { rsvpV2 }, // Include the auth strategy and host as relevant }); async function listRsvpSummary(eventId) { const response = await myWixClient.rsvpV2.listRsvpSummary(eventId); }; ``` ---