asana.deleteTag permanently delete an Asana tag.
automations/asana-delete-tag.automation.ts
tagId. Optional second argument { account } selects a named Asana binding.
Returns no value.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Permanently delete an Asana tag.
asana.deleteTag permanently delete an Asana tag.
import { automation, onDashboardRun } from "automate.ax"
import { asana } from "automate.ax/asana"
export default automation("Delete tag", () => {
onDashboardRun({ title: "Delete tag" })
asana.deleteTag({ tagId: "tag-gid" })
})
tagId. Optional second argument { account } selects a named Asana binding.
Returns no value.