Workgroups in report

Hi Team,

we use sailpoint 8.4 IIQ. I need a sample code to include Teams’ DL as a email recipients. I have created a workgroup for that DL. Could you please share a piece of code to call that workgroup in Reports.

Now, we pass all user identities as comma seperated valus, but we would like to use as below. But below code is now working ( SupportDL is a workgroup name)

Please advise.

SupportDL

@stellamaryi Please provide the code that you have written.

Hi ,

please find the code written for DL

<entry key="emailRecipients">
        <value>
          <List>
            <String>SupportDL</String>
          </List>
        </value>    
</entry>

If that is your workgroup then in your report, it should be configured to emailIdentities not emailRecipients:

<entry key="emailIdentities">
  <value>
    <List>
      <String>SupportDL</String>
    </List>
  </value>
</entry>

Just make sure your workgroup notification option is set to Both (Note - WorkgroupNotifationOption is intentionally misspelled, it’s been like that for years now).

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE Identity PUBLIC "sailpoint.dtd" "sailpoint.dtd">
<Identity name="SupportDL" workgroup="true">
  <Attributes>
    <Map>
      <entry key="displayName" value="SupportDL"/>
    </Map>
  </Attributes>
  <Owner>
    <Reference class="sailpoint.object.Identity" name="spadmin"/>
  </Owner>
  <Preferences>
    <Map>
      <entry key="workgroupNotificationOption">
        <value>
          <WorkgroupNotifationOption>Both</WorkgroupNotifationOption>
        </value>
      </entry>
    </Map>
  </Preferences>
</Identity>

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