batch_limit_exceeded

Plugin API error batch_limit_exceeded — too many items in a single batch.

HTTP 400 · not retryable

POST /jobs/batch accepts at most PLUGIN_API_BATCH_LIMIT items per request (default 100, configurable per environment). The error message includes the actual limit so you can size submissions accordingly.

How to fix

  • Split large submissions into batches of ≤ 100.
  • Track responses individually — batch responses use HTTP 207 with per-item status, not all-or-nothing.