500
errors.
Enable idempotency
To submit a request for idempotent processing, send a request with theIdempotency-Key: <key>
header. The <key>
can be any unique string
up to 255 characters long. (We recommend using V4 UUIDs). All POST
requests accept
idempotency keys.
Idempotency error
In the unlikely event that the idempotent data store is unavailable, the API returns a503
error status with the a sub type of IDEMPOTENCY_UNAVAILABLE
If idempotency
is required, we recommend retrying your request later, otherwise, fall back to non-idempotent processing by
not submitting the Idempotency-Key
header.