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

CreateAccountJSON Not populating attributes correctly

ARCrosthwaite
New Contributor II
New Contributor II

We have an issue where we're using the CREATEACCOUNTJSON to populated a number of attributes with values from the user table.  However when the account is created the values are populated with the values in the CREATEACCOUNTJSON for example rather than the accounts given name attribute having the value "Bob" it has the value ${user.firstname}

CREATEACCOUNTJSON

{
"cn":"${task.accountname}",
"givenName":"${user.firstname}",
"sn":"${user.lastname}",
"title":"${user.title}",
"employeenumber":"${user.username}",
"mail":"${user.email}",
"objectClass":["top", "person", "organizationalPerson", "inetOrgPerson"]
}

3 REPLIES 3

rushikeshvartak
All-Star
All-Star

{
"cn":"${task.accountName}",
"givenName":"${user.firstname}",
"sn":"${user.lastname}",
"title":"${user.title}",
"employeenumber":"${user.username}",
"mail":"${user.email}",
"objectClass":["top", "person", "organizationalPerson", "inetOrgPerson"]
}


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

NM
Honored Contributor II
Honored Contributor II

{

"cn":"${arsTasks.accountName}",

"givenName":"${user.firstname}",

"sn":"${user.lastname}",

"title":"${user.title}",

"employeenumber":"${user.username}",

"mail":"${user.email}",

"objectClass":["top", "person", "organizationalPerson", "inetOrgPerson"]

}

stalluri
Valued Contributor
Valued Contributor

JSON:
{
"cn": "${CN}",
"givenName": "${user.firstname}",
"sn": "${user.lastname}",
"title": "${user.title}",
"employeenumber": "${user.username}",
"mail": "${user.email}",
"objectClass": [
"top",
"person",
"organizationalPerson",
"inetOrgPerson"
]
}

AccountNameRule:
CN=${task.accountName} , OU



https://docs.saviyntcloud.com/bundle/AD-v24x/page/Content/Configuring-the-Integration-for-Provisioni...




Best Regards,
Sam Talluri
If you find this a helpful response, kindly consider selecting Accept As Solution and clicking on the kudos button.