List Iterations
Parameters
| Parameter | Required | Description |
|---|---|---|
projectId | Yes | The project to query |
status | No | Filter: active or done |
current | No | Set to true to get only the current iteration |
Get all iterations
Get the current iteration
The current iteration is the first active, non-system iteration by sort order. Use this when you need to know what’s being worked on now.Iteration fields
| Field | Type | Description |
|---|---|---|
name | string | Iteration name (unique within project) |
status | string | active or done |
system | boolean | System iterations (e.g. “Later”) can’t be deleted |
sortOrder | number | Display order |
gitTags | string[] | Associated git tags (optional) |
completedAt | number | Timestamp when marked done (auto-set) |
Create an Iteration
Update an Iteration
PATCH semantics. Use this to rename, mark done, or add git tags.done automatically sets completedAt. Done iterations are hidden from the UI dropdown and matrix view.

