transfer-issues
Move issues from one project cycle to another within Plane project management, helping teams reorganize work when priorities or timelines change.
Instructions
Transfer issues from one cycle to another
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cycle_id | Yes | ID of the source cycle to transfer issues from | |
| new_cycle_id | Yes | ID of the target cycle to transfer issues to | |
| project_id | Yes | ID of the project |
Input Schema (JSON Schema)
{
"properties": {
"cycle_id": {
"description": "ID of the source cycle to transfer issues from",
"type": "string"
},
"new_cycle_id": {
"description": "ID of the target cycle to transfer issues to",
"type": "string"
},
"project_id": {
"description": "ID of the project",
"type": "string"
}
},
"required": [
"project_id",
"cycle_id",
"new_cycle_id"
],
"type": "object"
}