You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If all data in JSON request are valid and the password was successfully updated, then WebAPI returns 204 No Content
If data aren't valid or the user doesn't exist, the WebAPI returns 400 Bad Request with an error message.
For example, when the WebAPI receives not valid data:
{
"Password": [
"The length of 'Password' must be 20 characters or fewer. You entered 23 characters.",
"Invalid value!"
],
"NewPassword": [
"The length of 'New Password' must be 20 characters or fewer. You entered 23 characters.",
"Invalid value!"
]
}