General Information
...
Service | API | Method |
---|---|---|
urac | /account/changePassword | POST |
Data Model: UsersWorkflow: %Link to Architecture Page%
WorkFlow: Change Password Flow
Input
...
Type: application/json
Name | Source | Mandatory | Type | Special Format | Description |
---|---|---|---|---|---|
uId | Query | YES | String | N/A | User id |
oldPassword | Body | YES | String | N/A | Old Password |
password | Body | YES | String | N/A | New Password |
confirmation | Body | YES | String | N/A | same value as password |
...
Output
...
Valid Response
Code Block | ||||
---|---|---|---|---|
| ||||
{ "result": true, "data": true } |
Invalid Response
Code Block | ||||
---|---|---|---|---|
| ||||
{ "result":false, "errors":{ "codes":[400], "details":[ { "code":400, "message":"Problem with the provided password" } ] } } |
Error Codes
Code | Description |
---|---|
405 | Unable to find User. Please try again. |
407 | Problem validating Request. Please try again. |
408 | The password and its confirmation do not match |
409 | Invalid old password provided |
411 | invalid user id provided |
Example (CURL)
...
Request
Code Block | ||||
---|---|---|---|---|
| ||||
> CURL -X POST http://127.0.0.1:4000/urac/account/changePassword?uId=123 -d 'oldPassword=johnoldpassword&password=johnpassword&confirmation=johnpassword' |
...