> 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 # CountRsvps # Package: registration # Namespace: RsvpManagement # Method link: https://dev.wix.com/docs/api-reference/business-solutions/events/registration/rsvp-v2/count-rsvps.md ## Permission Scopes: Read Event Tickets and Guest List: SCOPE.DC-EVENTS.READ-GUEST-LIST ## Introduction Counts RSVPs with the specified filtering and searching. --- ## REST API ### Schema ``` Method: countRsvps Description: Counts RSVPs with the specified filtering and searching. URL: https://www.wixapis.com/events/v2/rsvps/count Method: POST Method parameters: param name: filter | type: filter | description: Filter object in the following format: `"filter" : { "fieldName1": "value1", "fieldName2":{"$operator":"value2"} }` Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains` param name: search | type: SearchDetails - name: mode | type: Mode | description: Search mode. Defines the search logic for combining multiple terms in the `expression`. - enum: - OR: At least one of the search terms must be present. - AND: Searches by all provided words. - name: expression | type: string | description: Search term or expression. - name: fields | type: array | description: Fields to search in. If the array is empty, all searchable fields are searched. Use dot notation to specify a JSON path. For example, For example, `order.address.streetName`. - name: fuzzy | type: boolean | description: Whether to enable the search function to use an algorithm to automatically find results that are close to the search expression, such as typos and declensions. Return type: CountRsvpsResponse - name: count | type: integer | description: Number of RSVPs. ``` ### Examples ### Count RSVPs using filter ```curl curl -X POST 'https://www.wixapis.com/events/v2/rsvps/count' \ -H 'Authorization: '\ -H 'Content-Type: application/json' \ -d '{ "filter": { "eventId": "2c0eab1-b7a0-4ec2-9fb6-db76f76ee488" } }' ``` ### Count RSVPs using search ```curl curl -X POST 'https://www.wixapis.com/events/v2/rsvps/count' \ -H 'Authorization: '\ -H 'Content-Type: application/json' \ -d '{ "search": { "mode": "AND", "expression": "John", "fields": [ "firstName" ], "fuzzy": true } }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.registration.RsvpManagement.countRsvps(options) Description: Counts RSVPs with the specified filtering and searching. Method parameters: param name: options | type: CountRsvpsOptions none - name: filter | type: object | description: Filter object in the following format: `"filter" : { "fieldName1": "value1", "fieldName2":{"$operator":"value2"} }` Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains` - name: search | type: SearchDetails | description: Search details. - name: mode | type: Mode | description: Search mode. Defines the search logic for combining multiple terms in the `expression`. - enum: - OR: At least one of the search terms must be present. - AND: Searches by all provided words. - name: expression | type: string | description: Search term or expression. - name: fields | type: array | description: Fields to search in. If the array is empty, all searchable fields are searched. Use dot notation to specify a JSON path. For example, For example, `order.address.streetName`. - name: fuzzy | type: boolean | description: Whether to enable the search function to use an algorithm to automatically find results that are close to the search expression, such as typos and declensions. Return type: PROMISE - name: count | type: integer | description: Number of RSVPs. ``` ### Examples ### Count RSVPs using filter ```javascript import { rsvpV2 } from "@wix/events"; async function countRsvps() { const response = await rsvpV2.countRsvps({ filter: { eventId: "2c0eab1-b7a0-4ec2-9fb6-db76f76ee488" }, }); return response; } ``` ### countRsvps (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 countRsvps(options) { const response = await myWixClient.rsvpV2.countRsvps(options); }; ``` ---