add_cycle_issues
Add specific issues to a project cycle in Plane by providing the project ID, cycle ID, and issue UUIDs. Streamlines issue management within cycles.
Instructions
Add issues to a cycle
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cycle_id | Yes | The uuid identifier of the cycle to add issues to | |
issues | Yes | Array of issue UUIDs to add to the cycle | |
project_id | Yes | The uuid identifier of the project containing the cycle |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cycle_id": {
"description": "The uuid identifier of the cycle to add issues to",
"type": "string"
},
"issues": {
"description": "Array of issue UUIDs to add to the cycle",
"items": {
"type": "string"
},
"type": "array"
},
"project_id": {
"description": "The uuid identifier of the project containing the cycle",
"type": "string"
}
},
"required": [
"project_id",
"cycle_id",
"issues"
],
"type": "object"
}