cancel
Showing results for 
Search instead for 
Did you mean: 

List Workflow Tasks webscript

mrgrechkinn
Champ in-the-making
Champ in-the-making
Hello,

I have a question about List Workflow Tasks webscript (rg/alfresco/repository/workflow/task-instances.get).
How I can use it and filter all tasks except "myWfPrefix:" for example. I didn't found the way to do this, there is a exclude paramater but if I have about 100 types of tasks for example (it's crazy to exclude all of this types).

Please comment how I can get a task with specified type.

Regards.
2 REPLIES 2

afaust
Legendary Innovator
Legendary Innovator
Hello,

unfortunately, for that API, you would have to exclude all that don't match your type. In order to simplify matters, you can use wildcard excludes, e.g. "bpm:*", "wf:*" etc., so you don't need to provide the specific task types.

Regards
Axel

mrgrechkinn
Champ in-the-making
Champ in-the-making
Hello,

This is sad.

Thanks.