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 user 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:
{
"Login": [
"The length of 'Login' must be 20 characters or fewer. You entered 21 characters.",
"Invalid value!"
],
"UserEmail": [
"The length of 'User Email' must be 20 characters or fewer. You entered 22 characters.",
"Invalid value!"
]
}