remove-issue-from-cycle
Remove an issue from a project cycle in Plane to update cycle scope and maintain accurate project tracking.
Instructions
Remove an issue from a cycle
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cycle_id | Yes | ID of the cycle to remove issue from | |
| issue_id | Yes | ID of the issue to remove from the cycle | |
| project_id | Yes | ID of the project containing the cycle |
Input Schema (JSON Schema)
{
"properties": {
"cycle_id": {
"description": "ID of the cycle to remove issue from",
"type": "string"
},
"issue_id": {
"description": "ID of the issue to remove from the cycle",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the cycle",
"type": "string"
}
},
"required": [
"project_id",
"cycle_id",
"issue_id"
],
"type": "object"
}