asana.deleteSection permanently removes the section but leaves its tasks in Asana.
automations/delete-asana-section.automation.ts
sectionId. Optional second argument { account } defaults to the project binding. Returns Signal<void>.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Delete an Asana section without deleting its tasks.
asana.deleteSection permanently removes the section but leaves its tasks in Asana.
import { automation, onDashboardRun } from "automate.ax"
import { asana } from "automate.ax/asana"
export default automation("Delete Asana section", () => {
onDashboardRun({ title: "Delete Asana section" })
asana.deleteSection({ sectionId: "section-gid" })
})
sectionId. Optional second argument { account } defaults to the project binding. Returns Signal<void>.