# concurrency_limit

Too many jobs are running concurrently for this organization. Returned with HTTP 429; retrying can succeed.

| Property | Value |
| --- | --- |
| HTTP status | `429` |
| Retryable | Yes |
| `type` | `https://fylane.dev/errors/concurrency-limit` |

This error is transient. Retry with backoff, reusing the same idempotency key so the retry cannot double-charge you.

Example response

```json
{
  "type": "https://fylane.dev/errors/concurrency-limit",
  "code": "concurrency_limit",
  "message": "Too many jobs are running concurrently for this organization.",
  "retryable": true,
  "request_id": "req_01JBQ8Z5T7WXK9MNP2RSTVA3C4",
  "docs_url": "https://fylane.dev/docs/errors/concurrency-limit"
}
```

Quote the `request_id` if you contact support. It is the same value returned in the `X-Request-Id` header and it identifies this exact request in our logs.
