Flowable UI interaction

So when the model is retrieved for a specific process def key
will the model indicate which task its currently working on
or will it only generate the xml of process we have created in flowable modeler?
regards,
Kartik

Hey @kartik,

You keep creating a new topic for the same question. How is this different to Enable Rest End points?

Cheers,
Filip

Hey,
i found the model api in this documentation
https://documentation.flowable.com/latest/assets/core-swagger

This rest API
Will give us the BPMN Model it is mentioned in the documentation

curl -X GET “http://developer-docs.flowable.com/flowable-rest/service/repository/process-definitions/1234/model” -H “accept: application/json”

My question will this model Json indicate which task we are working on currently if this json is converted to Display the bpmn model in UI Application.

cheers,
Kartik

No that endpoint is going to return the BPMN Model representation and won’t return you the state of a process instance.

You need to build your own way of linking all these things together. This is what we are doing in our Enterprise version.

Another possibility is check version 6 UI. The UI is able to display this info.

Regards
Martin