Idempotency Error Codes

CodeMessageDescription
409A transaction with the supplied idempotency-key already exists with a conflicting payloadThis error occurs when the payload for a request supplied with an idempotency key does not exactly match the payload for a previous request with the same idempotency key.
409A transaction with the supplied idempotency-key is already in progressThis error occurs when the idempotency key supplied with a request matches the idempotency key supplied with a previous transaction but a final result has not yet been recorded for the original transaction. This "in progress" response protects against duplicate request submissions and will be returned until the original request is completed and its final result is recorded. Any subsequent requests with the same idempotency key will return the original transaction's final result.