Rsvp Created


Permissions
Manage Events - all permissions
Read Events - all read permissions
Manage Guest List
Read Event Tickets and Guest List
Learn more about app permissions.
Event BodyEvent Body Event data is received as a JSON Web Token (JWT). It may be delayed. Be sure to verify the data was sent by Wix.
Event Data
timestampstringformat date-time

RSVP created timestamp in ISO UTC format.


languagestringformat LANGUAGE

Site language when RSVP created


silentboolean

Notifications silenced for this domain event.


eventIdstringformat GUID

Event ID.


rsvpIdstringformat GUID

RSVP ID.


contactIdstring

Contact ID associated with this RSVP.


memberIdstringformat GUID

Member ID associated with this RSVP.


firstNamestring

Guest first name.


lastNamestring

Guest last name.


emailstringformat EMAIL

Guest email.


rsvpFormRsvpForm

RSVP form response.


statusstring

RSVP response status.


guestsArray <Guest>

List of all guests.


onlineConferencingLoginOnlineConferencingLogin

URL and password to online conference

Event Body

The data payload will include the following as an encoded JWT:

JSON
{ "data": { "eventType": "wix.events.rsvp.events.RsvpCreated", "instanceId": "<app-instance-id>", "data": "<stringified-JSON>", // The identity field is sent as a stringified JSON "identity": { "identityType": "<identityType>", // ANONYMOUS_VISITOR, MEMBER, WIX_USER, APP "anonymousVisitorId": "<anonymousVisitorId>", // in case of ANONYMOUS_VISITOR "memberId": "<memberId>", // in case of MEMBER "wixUserId": "<wixUserId>", // in case of WIX_USER "appId": "<appId>" // in case of APP } } }

Rsvp Created
JSON
{ "timestamp": "2020-04-27T12:37:22.444Z", "eventId": "0adc383d-db6b-4c4a-8fb8-5fe77c6569bb", "rsvpId": "4160c868-35b8-49f3-bff2-9d3912be9c0a", "status": "YES", "contactId": "2b1df22d-cfcf-447e-9afe-27b782aecd8c", "memberId": "c2b48f6f-5964-46ad-9888-1e9d3f81b83b", "firstName": "John", "lastName": "Doe", "email": "john.doe@somedomain.com", "rsvpForm": { "inputValues": [ { "inputName": "email", "value": "john.doe@somedomain.com" }, { "inputName": "lastName", "value": "Doe" }, { "inputName": "firstName", "value": "John" }, { "inputName": "date", "value": "2020-04-27" }, { "inputName": "additionalGuests", "value": "2" }, { "inputName": "guestNames", "values": ["Jane Doe", "Baby Doe"] }, { "inputName": "comment", "value": "A comment" }, { "inputName": "custom", "value": "Another comment" }, { "inputName": "address", "values": ["Wix Playground, 100 Gansevoort St, New York, NY 10014, USA"] }, { "inputName": "phone", "value": "(555) 555-1234" } ] }, "guests": [ { "index": 0, "fullName": "John Doe", "id": 1 }, { "index": 1, "fullName": "Jane Doe", "id": 2 }, { "index": 2, "fullName": "Baby Doe", "id": 3 } ] }
Did this help?