Invalid Field Value
422userhttps://inputbuffer.io/docs/api/problems/invalid-field-value
What it means
A field was present but its value didn't pass validation: wrong type, wrong format, or outside an allowed set. field names which one; detail explains what was wrong.
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.
Wrong type, or wrong shape for a structured field.
Check the field's schema on this endpoint's reference page.
- 2.
A value outside an accepted enum, or past a length limit.
Read
detailfor the specific constraint that failed and adjust the value.
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