ResetPassword
Resets a user's password to regain access or enhance security.
Input
Name | Type | Description |
UserId | String | The unique identifier of the user whose password needs to be reset. The identifier typically corresponds to the user's globally unique identifier (GUID) or primary key in the directory. |
Password | String | The new password that the user submits. If left blank, the system generates a secure random password. |
Result Set Columns
Name | Type | Description |
Success | String | Indicates whether the password reset operation completed successfully. Returns true for success or false for failure. |
NewPassword | String | Provides the new password assigned to the user. If the input password is blank, this will contain the system-generated password. |