action asana_get_tasks_for_project { label: "Get tasks from a project" description: "Returns the compact task records for all tasks within the given project, ordered by their priority within the project. Tasks can exist in more than one project at a time." provider: asana method: GET path: "/projects/{project_gid}/tasks" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" } } } } }