Idempotency ID keys are not provided by Admoji. You must generate them in your website or application code so that a new unique key is created for each API call. This prevents duplicate API calls from creating duplicate orders. Refer to our API documentation at docs.admoji.com to learn more about idempotency support.
How to Generate Idempotency IDs
Implement a UUID or GUID generator in your application code.
Generate a new unique key for each API call — never reuse a key across different transactions.
Include the generated key in your API request as documented at docs.admoji.com.
Best Practices for Idempotency IDs
Unique Generation: Use cryptographically secure random generators.
Proper Format: Use UUID v4 format or similar unique identifier standards.
Request-Specific: Generate a new ID for each unique transaction.
Consistent Usage: Always include the Idempotency ID in every API call.