clickUp.deleteList deletes a ClickUp List.
automations/clickup-delete-list.automation.ts
Inputs
listId. Every action accepts an optional static account binding.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Deletes a ClickUp List.
clickUp.deleteList deletes a ClickUp List.
import { automation, onDashboardRun } from "automate.ax"
import { clickUp } from "automate.ax/clickup"
export default automation("Delete List", () => {
onDashboardRun({ title: "Delete List" })
clickUp.deleteList({ listId: "list-id" })
})
listId. Every action accepts an optional static account binding.