action asana_get_projects_for_workspace { label: "Get all projects in a workspace" description: "Returns the compact project records for all projects in the workspace.\n*Note: This endpoint may timeout for large domains. Prefer the `/teams/{team_gid}/projects` endpoint.*" provider: asana method: GET path: "/workspaces/{workspace_gid}/projects" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" } } } } }