action asana_get_subtasks_for_task { label: "Get subtasks from a task" description: "Returns a compact representation of all of the subtasks of a task." provider: asana method: GET path: "/tasks/{task_gid}/subtasks" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" } } } } }