When a client sends a request to a server, the server first checks if the request is correctly formed. If the syntax is correct but the data inside is invalid, the server returns a 422 Unprocessable Entity error. For example, if an email field is not a valid email format, the server will reject it with 422. This means the client must fix the data before trying again. The server does not process invalid data. This is different from a 400 Bad Request, which means the request syntax itself is wrong. The 422 status helps clients understand that the request was understood but the content is wrong.