How can I get Tasks assigned to particular user group?

I want all the tasks assigned to particular user group.

Hey @AkaiIto,

What have you tried so far?

Do you want to do this programatically for tasks with a certain criteria, or do you want to do this for all tasks that will be created?

Cheers,
Filip

Hi @filiphr,

I want to do this for all tasks that will be created.

Vishal

Programmatic fetching of tasks assigned to a group:

taskService.createTaskQuery().taskCandidateGroup("group name").list()

Assigning specific tasks to particular user group in Modeler:

@fiki574

That solved my problem. Thank you so much!

1 Like