BioFlow / API docs / Errors / idempotency_in_progress

idempotency_in_progress

HTTP 409application/problem+json

A request with this Idempotency-Key is still executing.

What causes it

  • A request with the same Idempotency-Key is still executing — usually a rapid retry racing the original attempt.

How to fix it

  • Wait briefly and retry with the SAME key; you'll get the original request's result once it settles.
Wire format

Example response body.

{ "type": "https://getbioflow.com/docs/api/errors/idempotency-in-progress", "title": "A request with this Idempotency-Key is still executing", "status": 409, "instance": "urn:request:req_01abc", "code": "idempotency_in_progress", "request_id": "req_01abc" }

Branch on the stable code field — title and detail are for humans and may change. type always resolves to this page. Quote request_id when contacting support. Full code registry on the API docs hub; the complete surface is in the interactive reference.