Missing Required Field
422userhttps://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.
The field was left out of the request body entirely.
Add the field named in
fieldto the request body. - 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
- POST/api/v0/feedback· Create a piece of feedback
- PATCH/api/v0/feedback/{feedback_id}· Update a piece of feedback
- POST/api/v0/feedback/{feedback_id}/notes· Add a note
- POST/api/v0/buffers· Create a buffer
- PATCH/api/v0/buffers/{buffer_id}· Update a buffer
- POST/api/v0/buffers/{buffer_id}/move-all· Move all feedback to another buffer
- POST/api/v0/routing/test· Test the routing logic
- POST/api/v0/reactions· Submit a reaction
- POST/api/v0/targets· Create a target
- PATCH/api/v0/targets/{target_id}· Update a target
- POST/api/v0/targets/import/oas· Import targets from an OpenAPI spec
- POST/api/v0/research/queries· Ask a research question
- POST/api/v0/research/queries/{query_id}/follow_ups· Ask a follow-up question