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. |
adminPassword | Password for the admin user. |
userName | User name. |
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 | oPassword 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"
}
}