Transfer cycle work items
POST/api/v1/workspaces/{slug}/projects/{project_id}/cycles/{cycle_id}/transfer-issues/
Move incomplete work items from the current cycle to a new target cycle. Captures progress snapshot and transfers only unfinished work items.
Path Parameters
cycle_id:requiredstringCycle id.
project_id:requiredstringProject ID
slug:requiredstringWorkspace slug
Body Parameters
new_cycle_id:requiredstringID of the target cycle to transfer issues to
Scopes
projects.cycles:write
Transfer cycle work items
bash
curl -X POST \
"https://api.plane.so/api/v1/workspaces/my-workspace/projects/550e8400-e29b-41d4-a716-446655440000/cycles/550e8400-e29b-41d4-a716-446655440001/transfer-issues/" \
-H "X-API-Key: $PLANE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"new_cycle_id": "550e8400-e29b-41d4-a716-446655440000"
}'python
import requests
response = requests.post(
"https://api.plane.so/api/v1/workspaces/my-workspace/projects/550e8400-e29b-41d4-a716-446655440000/cycles/550e8400-e29b-41d4-a716-446655440001/transfer-issues/",
headers={"X-API-Key": "your-api-key"},
json={
"new_cycle_id": "550e8400-e29b-41d4-a716-446655440000"
}
)
print(response.json())javascript
const response = await fetch(
"https://api.plane.so/api/v1/workspaces/my-workspace/projects/550e8400-e29b-41d4-a716-446655440000/cycles/550e8400-e29b-41d4-a716-446655440001/transfer-issues/",
{
method: "POST",
headers: {
"X-API-Key": "your-api-key",
"Content-Type": "application/json",
},
body: JSON.stringify({
new_cycle_id: "550e8400-e29b-41d4-a716-446655440000",
}),
}
);
const data = await response.json();Response200
json
{
"message": "Success"
}
