About 55 results
Open links in new tab
  1. rest - 400 vs 422 response to POST of data - Stack Overflow

    To handle situation like these, the service layers normally use versioning or setup configuration flag for strict HTTP conformance clients to send 400, and send 422 for the rest of them. That way they …

  2. 400 vs 422 for Client Error Request - Stack Overflow

    Aug 23, 2018 · The 422 (Unprocessable Entity) status code means the server understands the content type of the request entity (hence a 415 (Unsupported Media Type) status code is inappropriate), and …

  3. Getting 422 ERROR when sending a POST request - Stack Overflow

    Oct 4, 2023 · Getting 422 ERROR when sending a POST request Asked 2 years, 6 months ago Modified 1 year ago Viewed 20k times

  4. Difference between 400 and 422 HTTP status codes

    Jan 7, 2020 · There are a lot of discussions if the HTTP request payload is missing mandatory attributes, the response code must either be 400 or 422. I am yet not clear about the difference. Please suggest …

  5. POSTMAN Error 422 - Unprocessable Entity, with GitHub API. What is it ...

    Jul 10, 2018 · Once I hit "Send", the resulting status was a 422 Unprocessable Entity Anyone familiar with Postman and GitHub, and GitHub API knows what does this mean and any ideas on how to …

  6. php - Usar status code 422 para exceções do tipo ...

    Dec 6, 2019 · 422: O codigo de resposta HTTP 422 Unprocessable Entity indica que o servidor entende o tipo de conteúdo da entidade da requisição, e a sintaxe da requisição esta correta, mas não foi …

  7. Python: FastAPI error 422 with POST request when sending JSON data

    Jan 27, 2020 · Send a request with any JSON, if you still receive 422, then move to next. Make sure your header content type is correct, the most common is just:

  8. StatusCode: 422 - UnprocessableEntity Entity - Stack Overflow

    Jan 8, 2022 · StatusCode: 422 - UnprocessableEntity Entity - HTTP Client .NET Core 5.0 Asked 4 years, 3 months ago Modified 4 years, 3 months ago Viewed 11k times

  9. Which http status code returns, 404 or 422? - Stack Overflow

    Dec 11, 2018 · The HyperText Transfer Protocol (HTTP) 422 Unprocessable Entity response status code indicates that the server understands the content type of the request entity, and the syntax of …

  10. python - How to solve a 422 status code error in FastAPI with path ...

    Jul 28, 2025 · How to solve a 422 status code error in FastAPI with path parameters? Asked 8 months ago Modified 8 months ago Viewed 289 times