create_cycle
Create a new cycle (sprint/iteration) within a board.| Property | |
|---|---|
| Read-only | No |
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
boardId | string | Yes | Parent board ID. Use get_board_cycle. |
name | string | Yes | Cycle name. |
description | string | Yes | Cycle description. |
startDate | DateTime | No | Cycle start date. |
finishDate | DateTime | No | Cycle end date. |
budgetHours | int | No | Budget in hours for this cycle. |
Returns
ACycleDto with the created cycle’s ID, name, dates, budget, and status.
update_cycle
Update cycle details or close it. Closing a cycle automatically approves all time entries for items in the cycle.| Property | |
|---|---|
| Read-only | No |
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
boardId | string | Yes | Parent board ID. |
cycleId | string | Yes | Cycle ID to update. |
name | string | No | New cycle name. |
startDate | DateTime | No | New start date. |
finishDate | DateTime | No | New end date. |
budgetHours | int | No | New budget in hours. |
closed | bool | No | Set to true to close the cycle. Closing auto-approves all time entries. |
Returns
ACycleDto with the updated cycle details.
delete_cycle
Delete a cycle from a board. Requires Manage permission on the board.| Property | |
|---|---|
| Read-only | No |
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
boardId | string | Yes | Parent board ID. Use get_board_cycle. |
cycleId | string | Yes | Cycle ID to delete. |
Returns
A confirmation message with the deleted cycle’s name.get_cycle_stats
Get item count statistics grouped by cycle.| Property | |
|---|---|
| Read-only | Yes |
Parameters
None.Returns
A list ofGroupByCountRecord objects, each containing:
| Field | Description |
|---|---|
content | Cycle name |
count | Number of items in the cycle |