Home Docs Schema Formats Errors

unprocessable entity

unprocessable-entity Error — Conduit Documentation

422 — Unprocessable Entity

The request could not be validated.

What This Error Means

This error indicates that Conduit encountered a condition preventing the request from being completed. Below are the most common causes and how to resolve them.

Common Causes

  • Field-level validation errors
  • Invalid enum values
  • Constraints violated

How to Fix It

  • Correct invalid fields
  • Ensure values match expected formats
  • Review schema constraints

Example Request

POST /v1/books {"title": ""}

Example Response

{"error":{"title":"Unprocessable Entity","status":422}}

← Back to Error Index