delete-cycle
Remove a specific cycle from a project in Plane to manage project timelines and organize work cycles effectively.
Instructions
Delete a cycle from a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cycle_id | Yes | ID of the cycle to delete | |
| project_id | Yes | ID of the project containing the cycle |
Input Schema (JSON Schema)
{
"properties": {
"cycle_id": {
"description": "ID of the cycle to delete",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the cycle",
"type": "string"
}
},
"required": [
"project_id",
"cycle_id"
],
"type": "object"
}