[POST] /process-definitions
/api/bpm/process-definitions
Description | Creates a new process definition inside a specified family. The name of the new process definition and the id of the target parent family are sent in the request body as Optionally, an After successful creation, the new process definition is returned with the id and creation timestamp assigned by the enaio server. The process definition is created in state |
|---|---|
Required System-role | R_WFEDIT_START (ID = 21) |
Request | POST |
Request Optional Query Parameter |
|
Response | JSON |
Minimum Version | BPM Service: 1.5.0 |
Request |
{
"name": "New process definition",
"parentId": "1D3F4694BF1B4056B8A9DF75CE36006C"
} |
Result | {
"objects": [{
"id": "62AFC01A55B555F70DAED1DAADE1EF00",
"name": "New process definition",
"parentId": "1D3F4694BF1B4056B8A9DF75CE36006C",
"userId": "146B2B9F2E334E6EA97FF566E6E8EDBA",
"createTime": "2026-05-19T11:46:00+02:00",
"state": "EDIT_UNLOCKED"
}]
} |