calendar-delete-event
Remove calendar events from Google Calendar using event ID to manage your schedule by deleting unwanted or outdated appointments.
Instructions
Delete a calendar event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
calendarId | No | Calendar ID - Available options: 'primary' (Primary Calendar) | primary |
eventId | Yes | Event ID |
Input Schema (JSON Schema)
{
"properties": {
"calendarId": {
"default": "primary",
"description": "Calendar ID - Available options: 'primary' (Primary Calendar)",
"type": "string"
},
"eventId": {
"description": "Event ID",
"type": "string"
}
},
"required": [
"eventId"
],
"type": "object"
}