How to clean test Identities from the Environment and from the target systems as well?
for the identity you delete from debug, from console or with a rule.
About deleting the identity on target system you have 3 ways:
- Send a Delete from Manage Account(if you have configured the delete operation on app)
- Use a rule for building a delete provisioning plan and execute it
- Delete directly on target system
Thanks @enistri_devo
How to bulk delete the Identities using rule?
You can check this blog.
Run rule task - With custom input and return values - Compass (sailpoint.com)
1 Like
you can create a list of identity, after with a Terminator object you can use deleteObject function for delete a single object or deleteObjects with filter:
Terminator terminator = new Terminator(context);
terminator.deleteObject(identity);
or
Terminator terminator = new Terminator(context);
terminator.deleteObjects(Identity.class,qo);
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.