Idempotency keys help prevent duplicate transactions by ensuring that identical requests are processed only once. When you include an idempotency key in your request headers:Documentation Index
Fetch the complete documentation index at: https://docs.manifestfinancial.com/llms.txt
Use this file to discover all available pages before exploring further.
- If you make a request with the same idempotency key and identical request body as a previous request, you’ll receive the same response as the original request, but the request will be processed only once.
- If you make a request with the same idempotency key but a different request body, you’ll receive a
409 Conflicterror.
RequestHeaders
- Use a unique value for each unique transaction
- Generate keys that are long enough to avoid collisions
- Consider using UUIDs or other unique identifiers