Get Time Periods
asana_get_time_periodsList all fiscal time periods (years, halves, quarters) in a workspace to scope goals. Returns hierarchical details with GIDs for use in goal creation or retrieval.
Instructions
List all time periods in a workspace (fiscal years, halves, and quarters). Time periods are used to scope goals. Returns a hierarchical array: FY (fiscal year) → H (half-year) → Q (quarter), each with gid, display_name, start_on, end_on, and parent. Use the GIDs with asana_create_goal or asana_get_goals.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Results per page (1-100). | |
| end_on | No | Filter to time periods ending on or before this date (YYYY-MM-DD format). | |
| offset | No | Pagination offset token from a previous response's next_page.offset. | |
| start_on | No | Filter to time periods starting on or after this date (YYYY-MM-DD format). | |
| 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,display_name,start_on,end_on,parent.display_name,parent.gid`. Default fields: gid, resource_type. |