This method has been replaced with Get Rsvp, and will be removed on June 30, 2025.
Retrieves an RSVP.
You can only call this method when authenticated as a Wix app or Wix user identity.
RSVP ID.
RSVP.
curl -X GET 'https://www.wixapis.com/events/v1/events/fd56076c-38f4-4705-b9eb-ec322b85c745/rsvp/fb97100a-98e2-4579-a61c-e71a3501b085?fieldset=FORM&fieldset=DETAILS' \
-H 'Authorization: <AUTH TOKEN>'
{
"rsvp": {
"id": "fb97100a-98e2-4579-a61c-e71a3501b085",
"eventId": "fd56076c-38f4-4705-b9eb-ec322b85c745",
"contactId": "46df035c-a6af-4947-8675-4306255ba88f",
"memberId": "",
"created": "2020-05-18T10:56:56Z",
"modified": "2020-05-18T10:56:56Z",
"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": "YES",
"totalGuests": 1,
"guests": [
{
"index": 0,
"fullName": "John Doe",
"id": 1
}
],
"anonymized": false
}
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.