DELETE

Delete Rsvp Check In


Deprecated

This method has been replaced with Cancel Rsvp Guests Check In, and will be removed on June 30, 2025.

Deletes an RSVP check-in.

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
DELETE
https://www.wixapis.com/events/v1/rsvp/check-in

Query Params
eventIdstringRequired

Event ID.


rsvpIdstringRequired

RSVP ID to delete check-in.


guestIdArray <integer>

Guest IDs to delete check-in.

Response Object
rsvpRsvp

Updated RSVP.

Delete Rsvp Check In Example 1
Request
cURL
curl -X DELETE 'https://www.wixapis.com/events/v1/rsvp/check-in?eventId=fd56076c-38f4-4705-b9eb-ec322b85c745&rsvpId=7c9dbf44-359c-47c7-a3e4-02638ab851c4&guestId=1' \ -H 'Authorization: <AUTH TOKEN>'
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-18T16:01:40.012Z", "firstName": "John", "lastName": "Doe", "email": "john.doe@example.com", "status": "WAITING", "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?