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

  1. Inspect the field property in the error payload.
  2. 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"
    }
  ]
}

On this page