catissuecoreopenspecimen/rest/ng/users/{userId}/password?type=change
Use this resource for change the password. Use HTTP PUT method to call this API by passing the below details in JSON format.
Below are the attributes which need to be sent in the request:
Parameter | Details |
---|---|
userId | User Identifieridentifier |
oldPassword | Old Password password of the user. |
newPassword | New Password password that user wants to setchange |
http[s]:<host>:<port>/catissuecoreopenspecimen/rest/ng/users/{userId}/password?type=change
Use this URL to change the password in caTissue openSpecimen application.
Result:
The response of this request will contains the details of the changed password.
Below is the example of the change password:
Method | URL |
---|---|
PUT | catissuecoreopenspecimen/rest/ng/users/{userId}/password?type=change |
Request | application/json |
json | {"oldPassword":"Login123","newPassword":"Login1234"} |
Response | "success" |
Error Cases :
code | Applies to | Status Message |
---|---|---|
200 | All resources | Password has been updated successfully |
400 | All requests | Invalid parameters, e.g blank Old Passwordold password, blank New Password new password etc. |
401 | All requests | Authorization failed, User user doesn’t have Authorityauthority |
404 | All requests | User not found, User user with given details not present in the system |
500 | All requests | Internal server error, Encountered encountered server error while performing operations |