This method has been replaced with Query Rsvps, and will be removed on June 30, 2025.
Retrieves a list of up to 100 RSVPs, supporting structurized queries.
You can only call this method when authenticated as a Wix app or Wix user identity.
Offset. See Pagination.
Limit. See Pagination.
Control which data is returned. See Fieldset.
Filter. See supported fields and operators.
Site member ID.
Filter facets to include in the response. See supported facets.
Textual search filter - search is performed on "guests.full_name".
Event creator ID.
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 POST 'https://www.wixapis.com/events/v1/rsvp/query' \
-H 'Content-Type: application/json' \
-H 'Authorization: <AUTH TOKEN>' \
--data-binary '{
"offset": 0,
"limit": 2,
"order": "created:desc",
"filter": {
"status": {
"$hasSome": [ "YES", "NO" ]
}
},
"fieldset": [],
"facet": [
"status"
]
}'
{
"total": 102,
"offset": 0,
"limit": 2,
"rsvps": [
{
"id": "8234bc18-65d9-4016-9937-003f67666aa5",
"eventId": "fd56076c-38f4-4705-b9eb-ec322b85c745",
"contactId": "c9294dfd-ea55-4f51-a4a0-1c0df504c962",
"memberId": "",
"firstName": "",
"lastName": "",
"email": "",
"status": "NO",
"totalGuests": 0,
"guests": [],
"anonymized": false
},
{
"id": "fb97100a-98e2-4579-a61c-e71a3501b085",
"eventId": "fd56076c-38f4-4705-b9eb-ec322b85c745",
"contactId": "46df035c-a6af-4947-8675-4306255ba88f",
"memberId": "",
"firstName": "",
"lastName": "",
"email": "",
"status": "YES",
"totalGuests": 0,
"guests": [],
"anonymized": false
}
],
"facets": {
"status": {
"counts": {
"YES": 95,
"NO": 7
}
}
},
"rsvpFacets": {
"facets": {
"status": {
"counts": {
"YES": {
"count": 95,
"guests": 98,
"guestsCheckIn": 4
},
"NO": {
"count": 7,
"guests": 9,
"guestsCheckIn": 3
}
}
}
}
}
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.