Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

ARS Notification

Saviynt_learner
Regular Contributor II
Regular Contributor II

We have a requirement to send emails during the ARS approval process especially when requested for multiple endpoints & entitlement. We are using some dynamic attributes.  if we use ${entitlements} it will print all the requested entitlements in email., (Saviynt documentation says  ${entitlements} is an ArrayList and not a comma-separated string. )

But if we use ${endpoint}, its prints only one endpoint name in case of multiple application requests. Is there any way we can achieve to print all the value .

1 REPLY 1

rushikeshvartak
All-Star
All-Star

To get what variables are present to use in the email template, check using the below expression. By putting it in the email body, it will print all variable names with values, and then accordingly, you can use it:


${this.binding.variables.each {k,v -> println "$k = $v" + "" + "br" + ">"}}


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.