-
Notifications
You must be signed in to change notification settings - Fork 1
Password Reset
Mike Garvey edited this page Apr 24, 2022
·
3 revisions
Performs a "Reset Password" operation on the specified account. Different from "changing", this operation requires a higher level of access as no prior knowledge of the current password is required in order to perform. Normally, this permission is granted only to Administrators, Account Managers, and/or Support staff.
{
"dn": "<DN of the user to change>",
"encrypted": false,
"new": "<Base64-encoded NEW password>"
}| Name | Type | Description |
|---|---|---|
| dn | string | The Distinguished Name of the account to change. |
| new (pass | password) | string | The Base64-encoded new password to change to. |
| Name | Type | Default Value | Description |
|---|---|---|---|
| encrypted | boolean | false | Indicates whether the password is encrypted. If true, then the server will attempt to decrypt it using certificate-key-based encryption. |