Versions Compared

Key

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

Change Password :

Change Password API available to change the user password. Use this API using HTTP PUT method, URL  http://<host>:<port>/catissuecore/rest/ng/users/{userId}/password?type=change

 Use this resource for change 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 body:

 

Parameter
Details
userIdUser Identifier
oldPasswordOld Password of the user.
newPasswordNew Password that user wants to set


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

Use this URL to change the password in caTissue application.


Result:

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

Below is the example of the change password:

 

Method
URL
PUTcatissuecore/rest/ng/users/{userId}/password?type=change
Requestapplication/json
json{"oldPassword":"Login123","newPassword":"Login1234"}

Response

"success"


 Error Cases :

code
Applies to
Status Message
200All resourcesPassword has been updated successfully
400All requestsInvalid parameters, e.g  blank Old Password, blank New Password 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