So quick update for you.
I’m testing to see how the wixEvents_onRsvpCreated fires and where the code needs to go.
In the events.js file I added a static constant (Bob) and found that when I RSVPed to an event the constant popped up in my spreadsheet
export function wixEvents_onRsvpCreated(event) {
let eventId = event.eventId;
let rsvpId = event.rsvpId;
let status = event.status;
let firstName = event.firstName;
let lastName = event.lastName;
let email = event.email;
const name =(‘Bob’);
const values = [name];
const res = appendValuesWrapper(values);
console.log(res);
}
I’m one step closer.