Rest API - HTTP Status Codes
Consider this JSON response from a REST API:
{
"status": 422,
"errors": {
"email": "Invalid email format",
"password": "Password too short"
}
}
What does this response tell the client?