1) Change Password :
This API is useful when user wants to change the password.
Method | URL |
---|---|
PUT | catissuecore/rest/ng/users/{userId}/password?type=change |
Request | application/json |
json | {"oldPassword":"Login123","newPassword":"Login1234"} |
Response | "success" |
2) Set Password :
This API is useful when user redirect through forgot password link or new user sets the password through email.
Method | URL |
---|---|
PUT | catissuecore/rest/ng/users/{userId}/password?token={token} |
Request | application/json |
json | {"newPassword":"Login1234"} |
Response | "success" |