About Us
Idempotency
Idempotency ensures that making the same request multiple times has the same effect as making it once. This prevents duplicate operations when network issues or retries occur.
Use Idempotency only with POST request. Not needed for GET and DELETE requests.
How It Works
Include an Idempotency-Key
header with a unique value for POST requests:
Key Expiration
Idempotency keys expire after 24 hours. After expiration, the same key can be reused.
Key Uniqueness
Never reuse the same idempotency key for different operations. Each request should have a unique key.