action asana_get_tags_for_task { label: "Get a task's tags" description: "Get a compact representation of all of the tags the task has." provider: asana method: GET path: "/tasks/{task_gid}/tags" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" } } } } }