create-iteration
Create new iterations in Shortcut project management with specified names, dates, and team assignments to organize development cycles.
Instructions
Create a new Shortcut iteration
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name of the iteration | |
| startDate | Yes | The start date of the iteration in YYYY-MM-DD format | |
| endDate | Yes | The end date of the iteration in YYYY-MM-DD format | |
| teamId | No | The ID of a team to assign the iteration to | |
| description | No | A description of the iteration |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "A description of the iteration",
"type": "string"
},
"endDate": {
"description": "The end date of the iteration in YYYY-MM-DD format",
"type": "string"
},
"name": {
"description": "The name of the iteration",
"type": "string"
},
"startDate": {
"description": "The start date of the iteration in YYYY-MM-DD format",
"type": "string"
},
"teamId": {
"description": "The ID of a team to assign the iteration to",
"type": "string"
}
},
"required": [
"name",
"startDate",
"endDate"
],
"type": "object"
}