Sonny Labs Docs
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

Returned by /v1/scans when a query parameter is malformed — limit out of range, a malformed cursor, or an unrecognised filter value. Distinct from the generic validation.parameter_invalid so callers can branch on scans-specific failures.

What to do

Match each parameter to its constraint in the REST API reference 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.

On this page