update-cycle
Modify an existing cycle's details within a project, including name, description, and date ranges, to reflect changes in project timelines or scope.
Instructions
Update an existing cycle in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cycle_id | Yes | ID of the cycle to update | |
| description | No | Updated description of the cycle (optional) | |
| end_date | No | Updated end date of the cycle (YYYY-MM-DD format, optional) | |
| name | No | Updated name of the cycle (optional) | |
| project_id | Yes | ID of the project containing the cycle | |
| start_date | No | Updated start date of the cycle (YYYY-MM-DD format, optional) |
Input Schema (JSON Schema)
{
"properties": {
"cycle_id": {
"description": "ID of the cycle to update",
"type": "string"
},
"description": {
"description": "Updated description of the cycle (optional)",
"type": "string"
},
"end_date": {
"description": "Updated end date of the cycle (YYYY-MM-DD format, optional)",
"type": "string"
},
"name": {
"description": "Updated name of the cycle (optional)",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the cycle",
"type": "string"
},
"start_date": {
"description": "Updated start date of the cycle (YYYY-MM-DD format, optional)",
"type": "string"
}
},
"required": [
"project_id",
"cycle_id"
],
"type": "object"
}