Overview
The APIs support idempotency, ensuring that retrying requests can be done safely without accidentally performing the same operation more than once. By using an idempotency key, you can safely repeat a request if a connection error occurs, without risking the creation of duplicate objects or performing updates multiple times.How Idempotency Works
To perform an idempotent request, include an additionalx-idempotency-key element in the request header.
Key Management
- Generation: The client generates a unique idempotency key using a
UUID. - Life Cycle: The system automatically removes the key
24hours after it is created.
UUID format, the resulting status code and body of the first request associated with that key will be saved, regardless of whether the request succeeds or fails. Any subsequent requests with the same key will return the same result, including any errors.

