Error Reference
validation-failed
| Field | Value |
|---|---|
| Type URI | https://docs.kordiam.app/docs/errors/validation-failed |
| HTTP Status | 400 Bad Request |
Description
The request body, query parameters, path variables, or headers failed validation. The response
includes an errors array that describes each violation, including its scope, field path, a
machine-readable code string, and a human-readable message.
Response Example
Code
Common Causes
- Missing required fields in the request body
- Field values exceeding maximum size limits
- Invalid enum values that do not match the expected set
- Numeric fields with values outside the allowed range
How to Fix
- Inspect the
errorsarray in the response. Each entry tells you which field failed validation (path), where it is located (scope), and what went wrong (codeandmessage). - Correct the identified fields and retry the request.
Last modified on