Get Goals
asana_get_goalsFetches Asana goals from a workspace, optionally filtered by team or time period. Provides goal details such as name, status, owner, and team.
Instructions
List goals in a workspace. Returns an array of goal objects with gid, name, status, owner, and team. Filter by team or time period using optional params. Supports pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| team | No | Filter to goals belonging to a specific team GID. Omit to get goals across all teams. | |
| limit | No | Results per page (1-100). | |
| 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,status,due_on,owner.name,team.name,time_period.display_name`. Default fields: gid, resource_type. | |
| time_periods | No | Comma-separated list of time period GIDs to filter by. Get time period GIDs from asana_get_time_periods. | |
| is_workspace_level | No | Set to true to only return workspace-level goals (not team-specific goals). |