Missing Required Field

422user

https://inputbuffer.io/docs/api/problems/missing-required-field

What it means

The request body is missing a field this endpoint requires. field names which one.

This usually comes from what the end user submitted rather than your integration's setup. detail is written to be safe to show them as-is, like "title is required."

How to fix it

  1. 1.

    The field was left out of the request body entirely.

    Add the field named in field to the request body.

  2. 2.

    The field was sent as null or an empty string, which the API treats as absent.

    Send a real value, or omit the field only if it is genuinely optional for this endpoint.

Where this happens

Still stuck? Email [email protected] with the type value above and roughly when it happened.