list-cycle-issues
Retrieve all issues assigned to a specific project cycle in Plane.so, enabling users to view and manage cycle-related tasks and track progress within their project management workflow.
Instructions
List all issues in a specific cycle
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cycle_id | Yes | ID of the cycle to get issues from | |
| project_id | Yes | ID of the project containing the cycle |
Input Schema (JSON Schema)
{
"properties": {
"cycle_id": {
"description": "ID of the cycle to get issues from",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the cycle",
"type": "string"
}
},
"required": [
"project_id",
"cycle_id"
],
"type": "object"
}