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
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.