validation_missing_required
HTTP Status: 422 Category: Validation
When you see this
A required field is absent from the request body.
How to fix it
Include every field flagged in error.details.errors[]. See the endpoint schema in the OpenAPI docs.
Example response
{
"error": {
"code": "validation_missing_required",
"message": "A required field is absent from the request body.",
"hint": null,
"doc_url": "https://docs.valara.cloud/api-reference/errors/validation_missing_required",
"request_id": "req_01H...",
"details": {
"errors": [],
"field_count": 0
}
}
}