delete_calendar_event
Remove Google Calendar events directly from your Obsidian workflow to maintain organized schedules and prevent outdated appointments.
Instructions
Delete a Google Calendar event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
confirm | No | ||
event_id | Yes | ||
update_note | No |
Input Schema (JSON Schema)
{
"properties": {
"confirm": {
"default": false,
"title": "Confirm",
"type": "boolean"
},
"event_id": {
"title": "Event Id",
"type": "string"
},
"update_note": {
"default": true,
"title": "Update Note",
"type": "boolean"
}
},
"required": [
"event_id"
],
"type": "object"
}