Email notifications

In a workflow how can we pull logic only to send emails to reviewers and their managers of certification campaign.

Hi Raghava,

For this you can use “campaign activate” trigger. From this step get the campaign ID and call list-identity-certifications | SailPoint Developer Community API by filtering using campaign ID that you got from trigger. This API will give you list of reviewers, loop through each reviewer, get the managers and send email. Here are the high-level workflow steps.

  1. “Campaign Activated” Trigger
  2. “Define Variable” to store the campaign ID
  3. “HTTP Request” to call list certification API. Make sure you use filter here with the campaign ID
  4. Loop
    4.1 “Get Identity” to get reviewer details
    4.2 “Get Identity“ to get manager details
    4.3 “Send email“
  5. End step success
1 Like

remainder_mail.txt (9.1 KB)

Here is json code that will help you, there are multiple variables defined for testing you can have single operator for all variables

1 Like

Thanks for the code. This worked for me.