Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

How to Append Static value during AD Create Account

BalajiE
New Contributor
New Contributor

Hi Team,

We are integrating AD with Saviynt, During AD account creation, we have to append ASD with cp30 for sAMAccountname. I trying to provision with below format in CreateAccountJSON which is not working. please let me know the correct format.

"sAMAccountname":"ASD${user.customproperty30}",

 

 

 

2 REPLIES 2

rushikeshvartak
All-Star
All-Star

"sAMAccountname": "${'ASD' + user.customproperty30}"


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

SumathiSomala
All-Star
All-Star

@BalajiE Try below,

"sAMAccountname": "${'ASD' + user.customproperty30}"

 

Regards,
Sumathi Somala

If this reply answered your question, please Accept As Solution and give Kudos.