recipe-cancel-and-notify
Original:🇺🇸 English
Translated
Delete a Google Calendar event and send a cancellation email via Gmail.
465installs
Sourcegoogleworkspace/cli
Added on
NPX Install
npx skill4agent add googleworkspace/cli recipe-cancel-and-notifyTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Cancel Meeting and Notify Attendees
PREREQUISITE: Load the following skills to execute this recipe:,gws-calendargws-gmail
Delete a Google Calendar event and send a cancellation email via Gmail.
[!CAUTION] Deleting with sendUpdates sends cancellation emails to all attendees.
Steps
- Find the meeting: and locate the event ID
gws calendar +agenda --format json - Delete the event:
gws calendar events delete --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}' - Send follow-up:
gws gmail +send --to attendees --subject 'Meeting Cancelled: [Title]' --body 'Apologies, this meeting has been cancelled.'