googleCalendar.removeFromCalendarList removes a calendar from the connected user’s Calendar list. The calendar and its events continue to exist.
Example
Inputs
Providecalendar: 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.
Unsubscribe a Google Account from a calendar without deleting it.
googleCalendar.removeFromCalendarList removes a calendar from the connected user’s Calendar list. The calendar and its events continue to exist.
import { automation, onDashboardRun } from "automate.ax"
import { googleCalendar } from "automate.ax/google-calendar"
export default automation("Unsubscribe from a calendar", () => {
onDashboardRun({ title: "Unsubscribe from a calendar" })
googleCalendar.removeFromCalendarList({ calendar: "Former project" })
})
calendar: string. Second argument { account } selects the Google Account.