googleCalendar.deleteCalendar deletes a secondary calendar owned by the connected account.
Example
Inputs
Provide an exact title or ID incalendar: string. Second argument { account } selects the Google Account.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Permanently delete an owned secondary Google Calendar.
googleCalendar.deleteCalendar deletes a secondary calendar owned by the connected account.
import { automation, onDashboardRun } from "automate.ax"
import { googleCalendar } from "automate.ax/google-calendar"
export default automation("Delete an obsolete calendar", () => {
onDashboardRun({ title: "Delete an obsolete calendar" })
googleCalendar.deleteCalendar({ calendar: "Obsolete project" })
})
calendar: string. Second argument { account } selects the Google Account.