Hi,
Is it possible and how to complete a user task with the Java API?
I have the task_id.
Thanks!
Hi,
Is it possible and how to complete a user task with the Java API?
I have the task_id.
Thanks!
In REST API, you can use this method:
https://docs.camunda.org/manual/7.10/reference/rest/task/post-submit-form/
you should find a similar one in Java API
Get the task service
Using the process engine
Complete with ID
processEngine().getTaskService() .complete("someTaskIdHere");
can we do that via scripting from within the process?
Did you find a solution for this?