Sending email to workgroup from ISC workflow

Is it possible to send email to Workgroup from ISC workflow? When I try searching for workgroup from recipient drop down, it shows only identities and not workgroup. Any suggestion on this would be helpful.

Hi @Shesh

Welcome to the SailPoint Developer Community.

Are you referring to Governance Groups? as we don’t have workgroups in ISC.

Yes, Governance Group is what I’m referring to.
In another words, I want to send email notification to group of people.

Hi @Shesh

Please refer following topics: where you will have clue how to achieve your requirement through DL from dummy identity.

Generate Report and send to a group of people/goverance group

Hello @Shesh

You can do this way :

HTTP Action - Get Workgroup Members that you want
{{baseUrl}}/workgroups/:workgroupId/members
This response contains members :

[
{
        "email": "amelia.lily@enhisectest.com",
        "type": "IDENTITY",
        "id": "0630209a08ff435082036c211c4c4b2e",
        "name": "Amelia Lily"
    },
    {
        "email": null,
        "type": "IDENTITY",
        "id": "095bf2c3c54a4773b44396766cffae3f",
        "name": "dniani@gmail.com"
    }
]

And In send email recipients you can select variable and use this
$.httpRequest.Body[*].email[*]

6 Likes

Only change you need is

$.httpRequest.Body.[*].email

1 Like

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