How to clean test Identities from the Environment?

How to clean test Identities from the Environment and from the target systems as well?

Hi @anubhav_varshney07,

for the identity you delete from debug, from console or with a rule.

About deleting the identity on target system you have 3 ways:

  1. Send a Delete from Manage Account(if you have configured the delete operation on app)
  2. Use a rule for building a delete provisioning plan and execute it
  3. 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.