No Direct Method Available in Java Doc to get Workgroup Names and Workgroup Details

Which IIQ version are you inquiring about?

Version 8.3

Share all details related to your problem, including any error messages you may have received.

I searched in Java Docs and no direct method found 1. to return workgroup names alone 2. which takes workgroup names passing through the filter condition as the input and return Workgroup Details like Name, Owner, Description, Group Email, Capabilities, Members, Scope, Notification Setting, Authorized Scopes as the output. so I am struggling in creating a custom workflow for above 1 & 2 since no method in available in Java Docs

Hi @manikanda_vanguard,

Workgroups object we don’t have.
Workgroup type is an identity. You can use the below code to get all attributes and data from workgroup identity.

Identity workgroup = context.getObjectByName(Identity.class, "workgroup name”);
Attributes attributes = workgroup.getAttributes();//workgroup attribute details , name, disabplayname etc.
List capabilities = workgroup.getCapabilities();//list of capabilities assigned to workgroup
Identity owner = workgroup.getOwner();//workgroup owner”

1 Like

TEST WF.xml (6.4 KB)
attached test wf is sample workflow to get the work groups details using launchesworkflows scim apis, which can be customized based on requirement.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.