To perform an idempotent request, provide an additional
Idempotency-Key: <key>
header to the request.Handling Idempotency
Our idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including HTTP result of208
.
We require the idempotency key to be a unique value generated using V4 UUIDs to avoid collisions.