get-cycle
Retrieve detailed information about a specific project cycle in Plane.so, including cycle ID and project context, to track and manage project timelines and progress.
Instructions
Get detailed information about a specific cycle
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cycle_id | Yes | ID of the cycle to retrieve | |
| project_id | Yes | ID of the project containing the cycle |
Input Schema (JSON Schema)
{
"properties": {
"cycle_id": {
"description": "ID of the cycle to retrieve",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the cycle",
"type": "string"
}
},
"required": [
"project_id",
"cycle_id"
],
"type": "object"
}