Error Reference
FIELD_REQUIRED
A required input field is missing from the request.
This error means the request did not include a mandatory field.
Typical causes
- Missing body property
- Missing query parameter
- Missing GraphQL argument
How to fix
- Inspect the
fieldproperty in the error payload. - Provide the required field and retry.
Example
{
"errors": [
{
"message": "No file in request",
"code": "FIELD_REQUIRED",
"field": "file",
"documentation": "https://developers.rad.live/docs/errors/field_required"
}
]
}