Click HERE to see how Saviynt Intelligence is transforming the industry. |
03/01/2024 04:08 AM
Hi Team,
We are trying to remove manager in AD when user is terminated.
We have tried below attributes in json:
"manager": ""
Error:LDAP: error code 21 - 00000057: LdapErr: DSID-0C0910C0, comment: Error in attribute conversion operation, data 0, v3839
"manager": NULL
Error: AD - Malformed 'manager' attribute
Has anyone come across this usecase earlier?
Thanks,
Bhushan
03/03/2024 07:51 PM
@bhushan1
Make sure you escape the slash on the manager.
Example:
"manager": "${managerAccount?.accountID}"
"manager": "${managerAccount.accountID}"
"manager": "${managerAccount!=null ? managerAccount.accountID: ''}"
"manager": "${managerAccount!=null ? managerAccount.comments: ''}"
skip the characters
"manager": "${managerAccount.accountID?.replace('\\', '\\\\')?.replace('/', '\\/')}"
If it is still failing please check the permissions on the AD side.
03/06/2024 07:08 AM
Hi @stalluri,
Thanks for your response.
We want to remove manager when the user is terminated. The syntax shared will add the manager right?
Thanks,
Bhushan