Is there possibility for Process Rollback once process terminated?

Is there any plugin or mechanism to rollback the process where it is terminated?

Hi @somehanu,
you can restart process instance(s) at the given activity, but you would need to define yourself this activity (e.g. using history data).
This may be useful:
https://docs.camunda.org/manual/7.7/user-guide/process-engine/process-instance-restart/
https://docs.camunda.org/manual/7.7/reference/rest/process-definition/post-restart-process-instance-sync/
https://docs.camunda.org/manual/7.7/reference/rest/history/

1 Like

@sdorokhova. There is no REST API In camunda 7.3. But is this possible to do via any other modules?

Hi @somehanu,

here it is: https://docs.camunda.org/manual/7.3/api-references/rest/
But you also have Java API, just check the docs for examples.

Process instance restart was introduced only in v. 7.7. But you can try to build something yourself. The trickiest thing would be to propagate the new process instance to the point where it was terminated last time.