Hi,
I am new to Camunda and BPMN.
I want to create a BPMN having multiple tasks. Each task accepts input from the user calls an API and returns its response to the user. There can be multiple tasks in the BPMN and after completion of each task the BPMN must wait for next user input.
For example, there is a package is to be delivered from the mail hub to the user. So in this case the delivery boy would perform following tasks:
- Pick the package from the mail hub. Mark in the mobile app that he has picked up the package from hub.
- After picking up the package he would mark travel start.
- When he reaches the customer location he will mark travel end.
- After reaching the customer location he will deliver the package to the customer and complete all the formalities.
- Then at last he will complete the package delivery.
In each of the of the above tasks an external API needs to be called and the response of the api needs to be returned to the user.
How to perform this in BPMN?
What kind of task needs to be used in BPMN? User or service task?
If the service or user task is to be used then how to configure it?
I am using Camunda with SpringBoot