catissuecoreopenspecimen/rest/ng/users/{userId}/password?token={token}
...
Parameter | Details |
---|---|
userId | Identifier of User user e.g. 22, 12 etc |
token | Application generated token to set the Passwordpassword |
newPassword | Password that user wants to set |
http[s]:<host>:<port>/catissuecoreopenspecimen/rest/ng/users/{userId}/password?token={token}
Use this URL to set password in caTissue openSpecimen application.
Result:
The response of this request will contains the details of the updated password.
Below is the example of the set password:
URL | http://<host>:<port>/ catissuecoreopenspecimen/rest/ng/users/{userId}/password?token={token} |
Method | PUT |
Request | application/json |
json | {"newPassword" : "Login1234"} |
Response | "success" |
...
code | Applies to | Status Message |
---|---|---|
200 | All resources | Password has been updated successfully |
400 | All requests | Invalid parameters, e.g 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 |
...