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