-
Notifications
You must be signed in to change notification settings - Fork 1
Password Change
Mike Garvey edited this page Apr 24, 2022
·
2 revisions
Performs a "Change Password" operation on the specified account. Different from "resetting", changing the password requires also supplying the old password. There is less security around change operations as the requester already has "authenticate"-able knowledge in the old password.
{
"dn": "<DN of the user to change>",
"encrypted": false,
"current": "<Base64-encoded CURRENT password>",
"new": "<Base64-encoded NEW password>"
}| Name | Type | Description |
|---|---|---|
| dn | string | The Distinguished Name of the account to change. |
| current | string | The Base64-encoded current password of the account. |
| new | 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. |