Google Super

GOOGLESUPER_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 googlesuper

Other tools also called GOOGLESUPER_DELETE_EVENT? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "event_id": {
      "type": "string",
      "title": "Event Id",
      "description": "Unique identifier of the event to delete, typically obtained upon event creation."
    },
    "calendar_id": {
      "type": "string",
      "title": "Calendar Id",
      "default": "primary",
      "examples": [
        "primary",
        "[email protected]",
        "[email protected]"
      ],
      "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."
    }
  }
}