clickUp.deleteTask deletes a ClickUp task.
automations/clickup-delete-task.automation.ts
Inputs
taskId. 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 task.
clickUp.deleteTask deletes a ClickUp task.
import { automation, onDashboardRun } from "automate.ax"
import { clickUp } from "automate.ax/clickup"
export default automation("Delete task", () => {
onDashboardRun({ title: "Delete task" })
clickUp.deleteTask({ taskId: "task-id" })
})
taskId. Every action accepts an optional static account binding.