Have an existing bpmn process that already does some work:
- processes received payload;
- triggers sub-process;
- creates a few task for manual user processing;
- etc.
And now I need to find a way how to stop/terminate/cancel running workflow (I am not sure which action is preferable in terms of Camunda) because the action that we expect to be done by Camunda process already successfully performed by another external system.
Camunda docs say that I can start/stop/cancel process via REST API or just via Java API but I am looking on way of visualization of possibility to cancel/terminate process via Camunda Modeller.
How can I do it?
I see that multiple types of events supported: Start, End, Intermediate but which one can suite my needs?