Execution sequence of tasks

Hi,

I would like to know -
Ways to get from Camunda, the execution sequence.
Example, A workflow has many user tasks, gateways, etc. also it has Call Activity connecting to another workflow. And the workflow is in midst of execution sequence and has not got completed. What are all the possible ways to get the execution sequence of tasks of that instance from Camunda.

Thanks.

It’s likely you’ll be able to get the information you’re looking for by asking for the historical details of a specific process. You can do that via the REST API.

Thanks Niall. Presume it is also possible to get the execution sequence of the tasks through Java APIs.

You presume correctly :slight_smile:

Thank you !