Search code examples
restprocessjbpm

Is there a way to get complete tasks from JBPM 7 using its REST API


I'm trying to get a complete process instance tasks but in vain.

The REST service /server/containers/{containerId}/processes/instances/{processInstanceId} return only active user tasks. I read swagger documentation and couldn't find any service doing the job.

Please tell me if you had already this problem and how did you resolve it ?


Solution

  • As I said in the description; what I want is to be able to get details of complete processes tasks. The solution I found is to call the REST service

    GET /server/containers/{containerId}/processes/instances/{processInstanceId}/nodes/instances

    Which return informaions of all the process nodes including tasks ones.