Delete an event
delete_eventPermanently remove a Google Calendar event with user approval. Requires a confirm token first, as deletion is destructive and irreversible.
Instructions
Permanently delete an event. Destructive and irreversible. The first call returns CONFIRMATION_REQUIRED with a description of exactly what would be deleted and a confirm_token; show that to the user, and only call again with the token once they have explicitly approved it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| account | Yes | The account id to act on, e.g. "work" or "personal". Required whenever more than one account could apply. | |
| calendar | No | Calendar id. Defaults to the account's configured default calendar ("primary" unless changed). | |
| event_id | Yes | ||
| send_updates | No | Who to email about this change. Defaults to "none" - never notify people unless the user asked you to. | |
| confirm_token | No | Confirmation token returned by a previous CONFIRMATION_REQUIRED response. Only supply this after the user has explicitly approved the exact action described. |