Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Set Password API is useful when user redirects through forgot password link or new user sets the password through email. Use this API by using HTTP PUT method, URL  http://<host>:<port>/catissuecore/rest/ng/users/{userId}/password?token={token}

 

Below are the attributes which need to be sent in the request body:

Parameter
Details
tokenApplication generated token to set the Password
newPasswordPassword that user wants to set


API Example :

URLhttp://<host>:<port>/catissuecore/rest/ng/users/{userId}/password?token={token}
MethodPUT
Requestapplication/json
json{"newPassword" : "Login1234"}

Response

"success"


 Error Cases :

code
Applies to
Status Message
200All resourcesPassword has been updated successfully
400All requestsInvalid parameters, e.g  duplicate Login Name, duplicate Email Address, blank First Name etc
401All requestsAuthorization failed, User doesn’t have Authority
404All requestsUser not found, User with given details not present in the system
500All requestsInternal server error, Encountered server error while performing operations