GET

List Rsvp


Deprecated

This method has been replaced with Query Rsvps, and will be removed on June 30, 2025.

Retrieves a list of up to 100 RSVPs, given the provided paging, filtering & sorting.

Authentication

You can only call this method when authenticated as a Wix app or Wix user identity.

Permissions
Manage Events - all permissions
Read Events - all read permissions
Manage Guest List
Read Event Tickets and Guest List
Learn more about app permissions.
Endpoint
GET
https://www.wixapis.com/events/v1/rsvp

Query Params
offsetinteger

Number of items to skip. See Pagination.


limitinteger

Number of items to load. See Pagination.


fieldsetArray <string>

Controls which data is returned. See Fieldset.


eventIdArray <string>

Event ID.


rsvpIdArray <string>

RSVP ID.


statusArray <string>

RSVP status.


memberIdArray <string>

Site member ID.


facetArray <string>

Facet counts to include in the response. See supported facets.


searchPhrasestring

Textual search filter - search is performed on "full_name" and "email".


eventCreatorIdArray <string>

Event creator id filter, by default any.


sortstring

Sort order, defaults to "created:asc". See supported fields.


contactIdArray <string>

Contact ID.


tagArray <string>

RSVP tag

Response Object
totalinteger

Total RSVPs matching the given filters.


offsetintegerminimum 0

Offset.


limitintegerminimum 0maximum 100

Limit.


rsvpsArray <Rsvp>

RSVP list.


facetsMap <string, FacetCounts>format map

Facet query result.


rsvpFacetsRsvpFacets

Rsvp data enriched facets.

Request
cURL
curl -X GET 'https://www.wixapis.com/events/v1/rsvp?offset=0&limit=2&eventId=fd56076c-38f4-4705-b9eb-ec322b85c745&order=created:asc,modified:desc&fieldset=DETAILS&status=YES' \ -H 'Authorization: <AUTH TOKEN>'
Response
JSON
{ "total": 3, "offset": 0, "limit": 2, "rsvps": [ { "id": "fb97100a-98e2-4579-a61c-e71a3501b085", "eventId": "fd56076c-38f4-4705-b9eb-ec322b85c745", "contactId": "46df035c-a6af-4947-8675-4306255ba88f", "memberId": "", "created": "2020-05-18T10:56:56Z", "modified": "2020-05-18T16:06:59Z", "firstName": "John", "lastName": "Doe", "email": "john.doe@example.com", "status": "YES", "totalGuests": 1, "guests": [ { "index": 0, "fullName": "John Doe", "id": 1 } ], "anonymized": false }, { "id": "7c9dbf44-359c-47c7-a3e4-02638ab851c4", "eventId": "fd56076c-38f4-4705-b9eb-ec322b85c745", "contactId": "46df035c-a6af-4947-8675-4306255ba88f", "memberId": "", "created": "2020-05-18T15:07:54Z", "modified": "2020-05-18T16:06:57Z", "firstName": "Bob", "lastName": "Jones", "email": "bob.jones@example.com", "status": "YES", "totalGuests": 1, "guests": [ { "index": 0, "fullName": "Bob Jones", "checkIn": { "created": "2020-05-18T16:02:47.495Z" }, "id": 1 } ], "anonymized": false } ], "facets": {} }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?