GET

Get Rsvp


Deprecated

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

Retrieves an RSVP.

Authentication

You can only call this method when authenticated as a Wix app or Wix user identity.

Permissions
Manage Events - all permissions
Read Events - all read permissions
Manage Guest List
Read Event Tickets and Guest List
Learn more about app permissions.
Endpoint
GET
https://www.wixapis.com/events/v1/rsvp/{rsvpId}

Path Params
rsvpIdstringRequired

RSVP ID.

Query Params
eventIdstring

Event ID.


fieldsetArray <string>

Controls which data is returned. See Fieldset.

Response Object
rsvpRsvp

RSVP.

Get Rsvp Example 1
Request
cURL
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>'
Response
JSON
{ "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 } }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?