asana.updateSection renames a section.
automations/rename-asana-section.automation.ts
sectionId and a non-empty name. Optional second argument { account } defaults to the project binding. Returns the updated AsanaSection.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Rename an Asana section.
asana.updateSection renames a section.
import { automation, onDashboardRun } from "automate.ax"
import { asana } from "automate.ax/asana"
export default automation("Rename Asana section", () => {
onDashboardRun({ title: "Rename Asana section" })
asana.updateSection({ sectionId: "section-gid", name: "Ready for review" })
})
sectionId and a non-empty name. Optional second argument { account } defaults to the project binding. Returns the updated AsanaSection.