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.
You can only call this method when authenticated as a Wix app or Wix user identity.
Number of items to skip. See Pagination.
Number of items to load. See Pagination.
Controls which data is returned. See Fieldset.
Event ID.
RSVP ID.
RSVP status.
Site member ID.
Facet counts to include in the response. See supported facets.
Textual search filter - search is performed on "full_name" and "email".
Event creator id filter, by default any.
Sort order, defaults to "created:asc"
.
See supported fields.
Contact ID.
RSVP tag
Total RSVPs matching the given filters.
Offset.
Limit.
RSVP list.
Facet query result.
Rsvp data enriched facets.
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>'
{
"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": {}
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.