How can I start a BPM process via API? For example: /bpm/start/process/id. I want to initiate a BPM process via API and retrieve the results once it's completed, checking the status.
Announcement
Collapse
No announcement yet.
Help getting started with BPM API
Collapse
X
-
Hi BigBoss,
You can start the BPM process via the API (provided that the start element is a Start Event) as follows:
POST http://ESPO_URL/api/v1/BpmnProcess
Code:{ "targetId": "66449ad6dd2ef4cd7", "targetName": "Test Account", "targetType": "Account", "flowchartId": "6655815376df5c698", "startElementId": "ft4z9k5s7a" }
Comment