POST

Check In Rsvp


Deprecated

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

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

Body Params
eventIdstringRequiredformat GUID

Event ID.


rsvpIdstringRequiredformat GUID

RSVP ID to check-in.


guestIdArray <integer>minimum 1minItems 1maxItems 11

Guest IDs to check-in.

Response Object
rsvpRsvp

Updated RSVP.

Check In Rsvp Example 1
Request
cURL
curl -X POST '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-18T15:58:53.656Z", "firstName": "John", "lastName": "Doe", "email": "john.doe@example.com", "status": "WAITING", "totalGuests": 1, "guests": [ { "index": 0, "fullName": "John Doe", "checkIn": { "created": "2020-05-18T15:58:53.656Z" }, "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?