Reset Password

This field mapping automatically resets a user's password when user-defined conditions are met.

Example:

When a user is disabled (e.g. when they are terminated), their password is immediately reset with a secure random one.

WHEN
user.IsDisable == true  
THEN
GenerateRandomPassword(15, true, true, true, true)

This mapping is a straightforward way to ensure passwords are reset automatically in critical scenarios, maintaining security and reducing the workload for IT.

 

Was this article helpful?

Comments

0 comments

Please sign in to leave a comment.