General Information
...
WorkFlow: Change Password Flow
InputInput
...
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)
...