action asana_get_tasks_for_tag { label: "Get tasks from a tag" description: "Returns the compact task records for all tasks with the given tag. Tasks can have more than one tag at a time." provider: asana method: GET path: "/tags/{tag_gid}/tasks" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" } } } } }