Skip to content

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:requiredstring

Cycle id.

project_id:requiredstring

Project ID

slug:requiredstring

Workspace slug

Body Parameters

new_cycle_id:requiredstring

ID 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" \
  # Or use -H "Authorization: Bearer $PLANE_OAUTH_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "new_cycle_id": "550e8400-e29b-41d4-a716-446655440000"
}'
Response200
json
{
  "message": "Success"
}