ChangePassword
This API changes password permission for the user.
URL
<http/https>://<host-name>:<Port>/protectappws/services/rest/users/changePassword
Input Parameters
| Parameters | Description | 
|---|---|
| adminUser | User with admin rights (optional). | 
| adminPassword | Password for the admin user (optional). | 
| userName | Name of the user for which password is to changed. | 
| password | Password associated with the user. | 
| isPasswordChangeable | (boolean) Determines whether the password can be changed. | 
| certAlias | Client certificate alias for making SSL connections (optional). | 
| certPassword | Password for the provided certificate alias (optional). | 
Sample REST call for cxf
request
    {
        "ChangePasswordRequest": {
        "adminUser": "cryptouser",
        "adminPassword": "safenet@123",
        "userName": "cryptouser",
        "userPassword": "safenet@1234",
        "isPasswordChangeable": "false"
        }
    }
response
    {
        "ChangePasswordResponse": {
            "description": "Information updated successfully"
        }
    }