bad request
bad-request Error — Conduit Documentation
400 — Bad Request
The request could not be processed.
What This Error Means
This error indicates that Conduit encountered a condition preventing the request from being completed. Below are the most common causes and how to resolve them.
Common Causes
- Malformed JSON, YAML, XML, TOML, or CBOR payload
- Missing required fields
- Invalid query parameters
- Unsupported or incorrect data types
How to Fix It
- Validate your request body format
- Ensure all required fields are present
- Check for typos in field names
- Verify that numeric fields are not strings
Example Request
POST /v1/books {"title": 123}
Example Response
{"error":{"title":"Bad Request","message":"The request could not be processed.","status":400,"details":[]}}