Error codes
scans.invalid_param
A query parameter on the scans endpoints failed validation.
scans.invalid_param is returned at HTTP 400.
When this fires
The ScansController declares a controller-local validation handler that overrides the generic validation.parameter_invalid for its own routes. Triggered by limit out of range, malformed cursor, or unrecognised filter values.
What to do
Match each parameter to its constraint in the OpenAPI spec under /v1/scans. The SDKs enforce these client-side; if you are seeing this, you are likely calling the endpoint with a hand-built URL.
See also
- SDK reference — the Python and TypeScript SDKs raise typed exceptions for codes in this namespace.
- Error code index — every code the runtime can return.