Google Calendar
GOOGLECALENDAR_DELETE_EVENT
Deletes a specified event by `event_id` from a Google Calendar (`calendar_id`); this action is idempotent and raises a 404 error if the event is not found.
Remote googlecalendar
Other tools also called GOOGLECALENDAR_DELETE_EVENT?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"event_id": {
"type": "string",
"description": "Unique identifier of the event to delete, typically obtained upon event creation."
},
"calendar_id": {
"type": "string",
"default": "primary",
"description": "Identifier of the Google Calendar (e.g., email address, specific ID, or 'primary' for the authenticated user's main calendar) from which the event will be deleted.\nExamples:\n \"primary\"\n \"[email protected]\"\n \"[email protected]\""
}
}
}