General Information
...
Service | API | Method |
---|
urac | /account/changePassword | POST |
Data Model: %Link to Data Model%Workflow: %Link to Architecture Page% Users
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 |
---|
language | js |
---|
title | Valid Response Sample |
---|
|
{
"result": true,
"data": {
"..."
}true
} |
...
Invalid Response
Code Block |
---|
language | js |
---|
title | Error Response Sample |
---|
|
{
"result":false,
"errors":{
"codes":[400],
"details":[
{
"code":400,
"message":"Problem with the provided password"
}
]
}
} |
Error Codes
400 | Database Error |
---|
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 |
---|
language | bash |
---|
title | Calling YOUR Change Password API |
---|
|
> CURL -X POST http://127.0.0.1:4000/...urac/account/changePassword?uId=123 -d 'oldPassword=johnoldpassword&password=johnpassword&confirmation=johnpassword' |
Response
Code Block |
---|
language | js |
---|
title | YOUR Change Password API response |
---|
|
{
"result": true,
"data": {
"_id": "57063608622c47b5c097d19b",
"..."
}true
} |