Get Workgroups by filter (GET)

Which IIQ version are you inquiring about?

Version 8.3

When we pass the workgroup name as the filter, what are the possible responses we receive as the workgroup details ?

Is there any out of box API available in SailPoint IdentityIQ for this requirement - When we pass the workgroup name as the filter, what are the possible responses we receive as the workgroup details.

If out of box API is not available in the SailPoint IdentityIQ for When we pass the workgroup name as the filter, what are the possible responses we receive as the workgroup details - How can I achieve this as a next step ?

not much clear on the requirement however workgroup is stored as an Identity in IdentityIQ. see the below code to get the details for workgroup there are other methods also to get the notification type,

Identity workgroup = context.getObjectByName(Identity.class, "name of workgroup");
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 

Try this

With filter set to workgroup -eq true

Hi @kjakubiak,
Can we get members of the workgroup as well via this API ?

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