POST

Cancel Rsvp Guests Check In


Cancels the check-in of RSVP guests.

If the request body is empty, cancels all check-ins from the RSVP. After the cancellation, the guests.checkInDate value becomes empty.

You can cancel check-in of up to 11 guests per request.

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
POST
https://www.wixapis.com/events/v2/rsvps/{rsvpId}/cancel-check-in

Path Params
rsvpIdstringRequired

ID of RSVP to cancel check-in.

Body Params
guestIdsArray <integer>minimum 1minItems 1maxItems 11

IDs of guests to check-in.


fieldsArray <string>maxItems 3

Predefined sets of fields to return.

Response Object
rsvpRsvp

Updated RSVP.

Cancel guests check in
Request
cURL
curl -X POST 'https://www.wixapis.com/events/v2/rsvps/8c30fd39-c927-49c5-95d4-dc75c991681d/cancel-check-in' \ -H 'Content-Type: application/json' \ -H 'Authorization: <AUTH TOKEN>' \ -d '{ "guestIds": [1] }'
Response
JSON
{ "rsvp": { "id": "8c30fd39-c927-49c5-95d4-dc75c991681d", "revision": "1", "eventId": "32c0eab1-b7a0-4ec2-9fb6-db76f76ee488", "createdDate": "2023-10-20T08:46:46.665Z", "updatedDate": "2023-10-20T13:04:01.957Z", "memberId": "8a8b9b73-4da8-47a5-8268-4396e68a0605", "contactId": null, "firstName": "John", "lastName": "Doe", "email": "johndoe@mail.com", "form": { "inputValues": [ { "inputName": "firstName", "value": "John", "values": [], "number": null, "dateTime": null, "address": null }, { "inputName": "lastName", "value": "Doe", "values": [], "number": null, "dateTime": null, "address": null }, { "inputName": "email", "value": "johndoe@mail.com", "values": [], "number": null, "dateTime": null, "address": null } ] }, "status": "YES", "totalGuests": 1, "guests": [ { "index": 0, "fullName": "John Doe", "checkInDetails": { "checkedIn": true, "checkInDate": null }, "guestId": 1 } ], "anonymized": false, "marketingConsent": true "language": null, "locale": null, "fullyCheckedIn": true }, "calendarLinks": null }
Errors
400Invalid Argument

There is 1 error with this status code.

428Failed Precondition

There is 1 error with this status code.

This method may also return standard errors. Learn more about standard Wix errors.

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