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