create-iteration
Initiate a new project iteration in Shortcut by specifying a name, start and end dates, and optional team ID or description. Ideal for organizing work cycles efficiently.
Instructions
Create a new Shortcut iteration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | A description of the iteration | |
endDate | Yes | The end date of the iteration in YYYY-MM-DD format | |
name | Yes | The name of the iteration | |
startDate | Yes | The start date of the iteration in YYYY-MM-DD format | |
teamId | No | The ID of a team to assign the iteration to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}