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}

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
userIdIdentifier of User e.g. 22, 12 etc
tokenApplication generated token to set the Password
newPasswordPassword that user wants to set


API Example http[s]:<host>:<port>/catissuecore/rest/ng/users/{userId}/password?token={token}

Use this URL to set password in caTissue application.


Result:

The response of this request will contains the details of the updated password.

Below is the example of the set password:

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

Response

"success"

...