Rest Api in DMN

Hi,

I have used the following way to get all users from a DMN having group A with key ‘parallel’.

List parallelUsers = execution.getProcessEngineServices().getIdentityService().createUserQuery()
.memberOfGroup(parallel).list();

How can I do the same using RestApi Calls in java.

Kindly help me to resolve the same.
Thank you,
Ashwathi

Hi,

You can use the following endpoint with the query parameter memberOfGroup:

1 Like