Reputation: 1945
I'm using activiti-rest. Is it possible to get an image of the process with highlighted active tasks?
Currently I get the BPM image using the following GET request:
http://127.0.0.1:8080/activiti-rest/service/repository/process-definitions
Upvotes: 0
Views: 412
Reputation: 1945
Use the following activiti REST url:
http://127.0.0.1:8080/activiti-rest/service/runtime/process-instances/[processInstanceId]/diagram
Upvotes: 2