invalid_input

Plugin API error invalid_input — request payload validation failure.

HTTP 400 · not retryable

The request body, query string, or headers did not pass schema validation. The English message_i18n field includes the specific Zod issue (e.g. jobs.0.unit_cost: must be >= 0).

How to fix

  • Re-check the OpenAPI contract for the endpoint you're calling.
  • Confirm Content-Type: application/json (or multipart/form-data for assets/upload).
  • Verify enum values match the documented set exactly (e.g. job_type, provider).

Common causes

  • Missing required field
  • Wrong type (string vs number)
  • Out-of-range numeric value
  • Unknown enum variant