Before and after · API reliability
When a POST times out, did the write fail?
A lost response leaves the client unsure. Retrying the same write can create a second order. Compare the two paths.
The detail that matters
The key must identify the same intended operation on both attempts. This is an example of an API that supports idempotency keys; a random retry header does not make every endpoint safe.
The editable drawing is carried in the link. It is not saved to a cloud account. These example marks were composed with an agent in Drawbly.
Reference: Stripe API: idempotent requests. Stripe documents reusing a key for retries and returning the saved result.

