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