action asana_get_portfolios { label: "Get multiple portfolios" description: "Returns a list of the portfolios in compact representation that are owned by the current API user." provider: asana method: GET path: "/portfolios" encoding: json input: { type: "object" properties: { owner: { type: "string" } workspace: { type: "string" } } required: ["owner", "workspace"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" } } } } }