Google Calendar

delete_event

Deletes an event from the calendar

Input Schema

NameRequiredDescriptionDefault
eventIdYesID of the event to delete

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "eventId": { "description": "ID of the event to delete", "type": "string" } }, "required": [ "eventId" ], "type": "object" }