asana.removeTaskTag remove a tag from an Asana task.
automations/asana-remove-task-tag.automation.ts
taskId and 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.
Remove a tag from an Asana task.
asana.removeTaskTag remove a tag from an Asana task.
import { automation, onDashboardRun } from "automate.ax"
import { asana } from "automate.ax/asana"
export default automation("Remove task tag", () => {
onDashboardRun({ title: "Remove task tag" })
asana.removeTaskTag({ taskId: "task-gid", tagId: "tag-gid" })
})
taskId and tagId. Optional second argument { account } selects a named Asana binding.
Returns no value.