openspecimen/rest/ng/users/{userId}/password?token={token}reset-password
Use this resource for set 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 | |
---|---|---|
userIdloginName | Identifier of user e.g. 22, 12 etc | token OpenSpecimen login name of user whose password want to reset |
resetPasswordToken | Application generated token to set the password which has sent through email | |
newPassword | Password that user wants to set |
http[s]:<host>:<port>/openspecimen/rest/ng/users/{userId}/password?token={token}reset-password
Use this URL to set password in openSpecimen application.
...
URL | http://<host>:<port>/ openspecimen/rest/ng/users/{userId}/password?token={token}reset-password | ||||||||||
Method | PUTPOST | ||||||||||
Request | application/json | ||||||||||
json |
| ||||||||||
Response | "successtrue" |
Error Cases :
code | Applies to | Status Message | |||
---|---|---|---|---|---|
200 | All resources | Password has been updated successfully | |||
400 | All requests | Invalid parameters, e.g blank new password etc | 401 | All requests | Authorization failed, user doesn’t have authority |
404 | All requests | User not found, user with given details not present in the system | |||
500 | All requests | Internal server error, encountered server error while performing operations |
...