Clone a project
POST
/api/v2/projects/{id}/cloneCreate a project from an existing projectSend only the properties that should differ from the source project. The response contains the new project.
curl -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: bearer YourTokenHere' \
-d '{
"name": "Website Redesign Copy",
"plannedStart": "2026-10-01"
}' \
'https://app.celoxis.com/psa/api/v2/projects/123/clone'