PATCH

Bulk Update Rsvp


Deprecated

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

Updates multiple RSVPs - status only.

Authentication

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

Permissions
Manage Events - all permissions
Manage Guest List
Learn more about app permissions.
Endpoint
PATCH
https://www.wixapis.com/events/v1/rsvp

Body Params
eventIdstringRequiredformat GUID

Event ID.


rsvpIdArray <string>format GUIDminItems 1maxItems 100

RSVPs to update.


fieldsFields

Set of fields to update.


statusstring

New RSVP status.

Response Object
rsvpsArray <Rsvp>

Updated RSVPs.

Bulk Update Rsvp Example 1
Request
cURL
curl -X PATCH 'https://www.wixapis.com/events/v1/events/fd56076c-38f4-4705-b9eb-ec322b85c745/rsvp' \ -H 'Content-Type: application/json' \ -H 'Authorization: <AUTH TOKEN>' \ -d @- << EOF { "rsvpId": ["7c9dbf44-359c-47c7-a3e4-02638ab851c4", "fb97100a-98e2-4579-a61c-e71a3501b085"], "status": "WAITING", "fields": { "paths": [ "status" ] } } EOF
Response
JSON
{}
Errors

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

Event TriggersThis method triggers the following events:
Did this help?