07/27/2023
12:12 PM
- last edited on
07/27/2023
12:42 PM
by
Dave
We need to pass a dynamic attribute value to Add access json (Rest Connector). The user will choose the dynamic attribute value from ARS page not for any emergency access.
We have tried the below however it didnt work:
In the Customproperty32 we are storing the DA value in Accounts Column.
${reqAttrs.DAName}
${requestAccessAttributes.get('customproperty32')}
${reqAttrs.customproperty32}
Can you please let me know if I am missing something?
07/27/2023 12:36 PM - edited 07/27/2023 12:54 PM
$requestAccessAttributes: Use this attribute to utilize any dnamic attribute in the request and to obtain that value in the newly created account or updated account. This is an optional variable.
Syntax: "${requestAccessAttributes.get('TimezoneCode')}
https://docs.saviyntcloud.com/bundle/REST-v23x/page/Content/Developers-Handbook.htm07/27/2023 09:49 PM
@Souvik if you're storing the DA value in account's customproperty32, then you can directly use,
${account?.customproperty32} Please let me know if this helps!