PUT ./auth/recovery
It is used to recover a password.
PUT parameters
| Name | Value Type | Validation | Details |
|---|---|---|---|
| cvToken | string | Required | Recovery token. |
| uaNewPassword | string | Required | Password; min_length[6] |
| uaNewPassword2 | string | Required | Password confirmation; matches[uaNewPassword] |
Validation
| Error Field | Error Code | Error Message |
|---|---|---|
| cvToken | 101 | Invalid token. |
| uaNewPassword | 7 | The field must be at least %% characters in length. |
| uaNewPassword2 | 17 | The field does not match the %% field. |
Output example
{"result": true}
