Get Portfolios
asana_get_portfoliosList portfolios in an Asana workspace by specifying the required owner parameter. Use 'me' for your own portfolios or a user GID to retrieve another user's portfolios.
Instructions
List portfolios in a workspace. IMPORTANT: The owner parameter is required by the Asana API — omitting it returns a Bad Request error. Use owner: 'me' to list your own portfolios. Returns an array of portfolio objects.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Results per page (1-100). | |
| owner | No | Required. The user whose portfolios to list. Use `'me'` for the current user, or a user GID. The Asana API returns an error if this is omitted. | |
| offset | No | Pagination offset token from a previous response's next_page.offset. | |
| workspace | No | The GID of the workspace (numeric string, e.g. `'1234567890123'`). Get it from asana_list_workspaces. Can be omitted if ASANA_DEFAULT_WORKSPACE_GID is set. | |
| opt_fields | No | Comma-separated extra fields to include. Useful values: `gid,name,color,public,owner.name`. Default fields: gid, resource_type. |