0

I would like to know if there is a REST API call to list an archived set of Tasks in jBPM 6.x

As far as I know, there are just two query calls available:

[GET] /query/runtime/task
[GET] /query/task

Neither of those can retrieve all archived tasks. I saw in the BPM Suite dashboard that all tasks can be listed somehow. I'm wondering if there is an API available for that operation.

ZombieBsAs
  • 171
  • 3
  • 14

1 Answers1

-1

To list completed tasks try with below REST API:

[GET] /query/runtime/task?taskstatus=Completed

Abhijit Humbe
  • 1,563
  • 1
  • 12
  • 13
  • It will only list the completed tasks for the uncompleted processes. I need to list all tasks, including the fail and exited processes. – ZombieBsAs Apr 01 '17 at 16:09