Skip to content

Password Reset

Mike Garvey edited this page Apr 24, 2022 · 3 revisions

PUT /password/reset

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.

Query Parameters

See password query parameters

Body Syntax

{
    "dn": "<DN of the user to change>",
    "encrypted": false,
    "new": "<Base64-encoded NEW password>"
}

Required Body Parameters

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.

Optional Body Parameters

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.

Clone this wiki locally