Hello, everyone.
I would like to know if it is possible to delete a user account in Active Directory through IdentityNow.
Does anyone have an example?
Hello, everyone.
I would like to know if it is possible to delete a user account in Active Directory through IdentityNow.
Does anyone have an example?
Yes you can delete a user account in AD. You have to do it by changing the account request operation to Delete using BPR. Other way is using Workflow, where you can use Manage Account Action and raise a Delete Account on AD for the identity.
It’s worth noting that the Workflow action for Manage Account will only apply the delete action on flat file sources.
yes i would say explore the option of service standard BPR.
it’s more like you can change the operation to delete in BPR base on your criteria .
You can find the solution here
Hello @guilherme_sec, there are two ways to delete AD account from ISC
. Using before Prov rule (Recommended)
Or Using PS script (After modify Native rule)
Yes you can do it in multiple ways.
"cloudServicesIDNSetup": {
"eventConfigurations": [
{
"eventActions": [
{
"Action": "ChangeOperation",
"Attribute": null,
"Value": "Delete"
}
],
"Identity Attribute Triggers": [
{
"Attribute": "cloudLifecycleState",
"Value": "inactiveDelete",
"Operation": "eq"
}
],
"Operation": "Enable"
}
]
},