create-cycle
Create a new project cycle with name, dates, and owner to organize work phases within Plane project management workflows.
Instructions
Create a new cycle in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Description of the cycle (optional) | |
end_date | No | End date of the cycle (YYYY-MM-DD format, optional) | |
name | Yes | Name of the cycle | |
owned_by | Yes | ID of the user who will own this cycle | |
project_id | Yes | ID of the project where the cycle should be created | |
start_date | No | Start date of the cycle (YYYY-MM-DD format, optional) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Description of the cycle (optional)",
"type": "string"
},
"end_date": {
"description": "End date of the cycle (YYYY-MM-DD format, optional)",
"type": "string"
},
"name": {
"description": "Name of the cycle",
"type": "string"
},
"owned_by": {
"description": "ID of the user who will own this cycle",
"type": "string"
},
"project_id": {
"description": "ID of the project where the cycle should be created",
"type": "string"
},
"start_date": {
"description": "Start date of the cycle (YYYY-MM-DD format, optional)",
"type": "string"
}
},
"required": [
"project_id",
"name",
"owned_by"
],
"type": "object"
}