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