[POST] /{id}/copy
/api/bpm/process-definitions/{id}/copy
Description | Creates a copy of an existing process definition identified by The copy is created in the target organization under the specified family. The new process definition inherits the workflow model of the source but is treated as an independent definition — it can be edited, versioned, and started separately from the original. The request body must specify:
On success, the full details of the newly created process definition are returned, including its generated |
|---|---|
Required Systemrole | R_WFEDIT_START (ID = 21) |
Request | POST |
Response | JSON |
Minimum Version | BPM Service: 1.5.0 |
Request |
{
"sourceOrganizationId": "0947CC57A9C24B3E8D1DC27BAE777CBE",
"targetOrganizationId": "0947CC57A9C24B3E8D1DC27BAE777CBE",
"targetFamilyId": "9BB398531BAE4792B494DB161EAA40CB",
"targetName": "Process Definition Copy"
} |
Result | {
"id": "82656722C1E64489B87B8A2B1D727626",
"parentId": "9BB398531BAE4792B494DB161EAA40CB",
"name": "Process Definition Copy",
"userId": "BF894230A0324FB887CDD732FCDDD61D",
"createTime": "2026-04-14T02:04:58+02:00",
"type": "PROCESS_DEFINITION",
"version": 6,
"state": "EDIT_UNLOCKED",
"iconId": 1073742164
} |