Use Idempotency only with POST request. Not needed for GET and DELETE requests.
How It Works
Include anIdempotency-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.
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.
Never reuse the same idempotency key for different operations. Each request should have a unique key.