PATCH

Update Rsvp


Deprecated

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

Updates an RSVP.

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/{rsvpId}

Path Params
rsvpIdstringRequired

RSVP ID.

Body Params
eventIdstringRequiredformat GUID

Event ID.


fieldsFieldsRequired

Set of field paths, specifying which parts of RSVP to update.


rsvpFormRsvpForm

RSVP form response.


statusstring

RSVP response status.


optionsOptions

Update RSVP options. WIX_EVENTS.MANAGE_RSVP permission is required.

Response Object
rsvpRsvp

Updated RSVP.

Update Rsvp Example 1
Request
cURL
curl -X PATCH 'https://www.wixapis.com/events/v1/events/fd56076c-38f4-4705-b9eb-ec322b85c745/rsvp/7c9dbf44-359c-47c7-a3e4-02638ab851c4' \ -H 'Content-Type: application/json' \ -H 'Authorization: <AUTH TOKEN>' \ -d @- << EOF { "rsvpForm": { "inputValues": [ { "inputName": "firstName", "value": "John" }, { "inputName": "lastName", "value": "Doe" }, { "inputName": "email", "value": "john.doe@example.com" } ] }, "status": "NO", "fields": { "paths": [ "rsvpForm", "status" ] } } EOF
Response
JSON
{ "rsvp": { "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-18T15:38:20Z", "firstName": "John", "lastName": "Doe", "email": "john.doe@example.com", "rsvpForm": { "inputValues": [ { "inputName": "firstName", "value": "John" }, { "inputName": "lastName", "value": "Doe" }, { "inputName": "email", "value": "john.doe@example.com" } ] }, "status": "NO", "totalGuests": 1, "guests": [ { "index": 0, "fullName": "John Doe", "id": 1 } ], "anonymized": false } }
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?