Skip to main content
422 Unprocessable Entity means JSON was understood but one or more fields failed validation.

The problem

The response includes a detail array:
Each item points to a field (loc) and message (msg).

Common fixes

Solution

1

Log the full detail array

Do not only read HTTP status — every loc entry is a required fix.
2

Compare with API Reference

Open the matching operation under API Reference and align required fields.
3

Re-test with minimal payload

Strip optional fields until the call succeeds, then add fields back.
Last modified on May 22, 2026