Hello! Is there a nice and clean way to do this that anyone has found?
Basically I want to remove a single user from a Group Calendar Invite, but I can’t find a way of doing this without clearing the calendar invite attendees and then re-adding everyone but the person I want to remove… Which has the unintended consequence of
Notifying everyone when the event is cleared
Re-notifying them when I add everyone back in
...Another way to put this question could also be “How can I update a calendar invite without notifying everyone?”
Page 1 / 1
Hi @andywingrave
Have you tried using the GCal Update Event and simply replacing the Attendees minus the 1 you want to remove?
Wondering how GCal behaves if it sees the same Attendees -1.
Maybe this won’t retrigger the notifications for the Attendees.
Hey @Troy Tessalone - How can I do that though, because this field seems to expect individual users
I guess I could just set the limit on users to something managable in a JS script and output them as individual variables…
Which is what I did - And it looks as ugly as anything I’ve ever seen, but it’s functional… So there’s that.
var attendees = (await inputData.attendees).split(',') var remove = inputData.email
var newAttendees = attendees.filter(x => x != remove)
Yeah - Good shout - Didn’t think of that. D’oh! Thanks Troy
Although - aside from the prettier code, I’m still capped by the number of records I want to copy and paste into the next step… So I will keep my ugly code as it is for now. But appreciate your guidance here.