ARS DynamicAttribute needs to be passed in Workflow Email Template

IAM_99
Regular Contributor II
Regular Contributor II

Hi All,

We have a dynamic attribute (created in Endpoint) used in ARS request , need to pass that user selected dynamic attribute  value in the Email ( in Workflow). How to get DA in Workflow email, Can you provide any sample syntax if you come across similar requirement ?

2 REPLIES 2

dgandhi
All-Star
All-Star

 

Document says below:

https://docs.saviyntcloud.com/bundle/EIC-Admin-v23x/page/Content/Chapter06-EIC-Configurations/Creati...

 

${accessItems.collect{ it.request_access_attrss.find{it.attributeName.toString().equalsIgnoreCase('Location')}.collect{it.attributeValue}}.get(0)

Obtains a specific dynamic attribute name and value from request.

 

Thanks,
Devang Gandhi
If this reply answered your question, please click the Accept As Solution button to help future users who may have a similar problem.

IAM_99
Regular Contributor II
Regular Contributor II

Thanks let me try.