Tool details
Playground
Input schema
input-schema.json
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Delete a calendar event by ID
| Field | Value |
|---|---|
| Name | calendar__delete_event |
| Group | Integrations |
{
"type": "object",
"properties": {
"calendarId": {
"type": "string",
"description": "Calendar ID"
},
"eventId": {
"type": "string",
"description": "Event ID to delete"
},
"sendUpdates": {
"type": "string",
"description": "Whether to send cancellation notifications: all, externalOnly, or none"
}
},
"required": [
"calendarId",
"eventId"
],
"description": "Input schema for the calendar__delete_event tool."
}