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}
...
Parameter | Details |
---|---|
token | Application generated token to set the Password |
newPassword | Password that user wants to set |
API Example :
URL | http://<host>:<port>/ catissuecore/rest/ng/users/{userId}/password?token={token} |
Method | PUT |
Request | application/json |
json | {"newPassword":"Login1234"} |
Response | "success" |
...