Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/21/2024 07:57 AM
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"]
}
08/21/2024 08:00 AM
{
"cn":"${task.accountName}",
"givenName":"${user.firstname}",
"sn":"${user.lastname}",
"title":"${user.title}",
"employeenumber":"${user.username}",
"mail":"${user.email}",
"objectClass":["top", "person", "organizationalPerson", "inetOrgPerson"]
}
08/21/2024 09:59 AM
{
"cn":"${arsTasks.accountName}",
"givenName":"${user.firstname}",
"sn":"${user.lastname}",
"title":"${user.title}",
"employeenumber":"${user.username}",
"mail":"${user.email}",
"objectClass":["top", "person", "organizationalPerson", "inetOrgPerson"]
}
08/21/2024 05:36 PM
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...