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

REST - Endpoint Dynamic Attribute (Account) is not resolving in CreateAccountJSON

IAM_99
Regular Contributor II
Regular Contributor II

Hi,

We have a Dynamic Attribute configured ( regions) for  a REST endpoint as drop down ( with Single SQL query) defined cp18 as account attribute.

IAM_99_0-1683228496668.pngIAM_99_1-1683228567189.png

 

trying to refer same in CreateAccountJSON its not resolving,

"httpParams": "{\"firstName\":\"${user.firstname}\",\"lastName\":\"${user.lastname}\",\"email1\":\"${user.email}\",\"regions\":\"${account.customproperty18}\"}",

 

tried below,  but no luck.
regions: ${arsTasks.accountKey.customproperty18}
regions: ${regions}
regions: ${account.customproperty18}

any idea ? what i am missing

 

 

 

2 REPLIES 2

dgandhi
All-Star
All-Star

Try this as mentioned in the document:

https://docs.saviyntcloud.com/bundle/REST-v23x/page/Content/Developers-Handbook.htm#top

"${requestAccessAttributes.get('regions')}

Check the exact syntax from above link.

Thanks

Thanks,
Devang Gandhi
If this reply answered your question, please Accept As Solution and give Kudos to help others who may have a similar problem.

IAM_99
Regular Contributor II
Regular Contributor II

Thank you Devang it worked.