>_FoxiRef
4xx Client error responses

422Unprocessable Entity

Unprocessable entity

#When does this occur?

Returned when the request body format (e.g., JSON) is correct but cannot be processed semantically. (e.g., invalid email format, required field value errors)

#How to handle?

Fix semantic errors in your request data. Check the response body for specific validation error messages.

#Example

HTTP Response
HTTP/1.1 422 Unprocessable Entity
Content-Type: application/json
Date: Tue, 10 Feb 2026 07:17:24 GMT

{
  "status": 422,
  "message": "Unprocessable Entity"
}

#Related Status Codes

이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.

HTTP 422 Unprocessable Entity | Foxi Dev Reference