We want to print the timeline of process Instance with users’s actions on each task for this process instance like following:
user | taskName | Operation | startTime | endTime | duration |
Camunda provide a lot of history APIs:
first api is: /history/user-operation
It retrieve the user’s action without task name:
second api: /history/activity-instance
It retrieve the task name without the user’s action on each task
Is there any way to achieve that?