Improved
Idempotency-Key support on tokenization mint and redeem endpoints
3 days ago
Adds optional idempotency support to the tokenization mint and redeem endpoints:
- Supply the
Idempotency-Keyrequest header to make requests idempotent: retries with the same key and identical body return the original request without creating a duplicate. - A new
Idempotent-Replayedresponse header indicates when a response is a replay of a prior request. - Reusing the same
Idempotency-Keywith a different request body returns422 Unprocessable Entity. - A malformed
Idempotency-Key, or replaying a request that was originally rejected, returns400 Bad Request.
Use a client-generated unique value (e.g. a UUID) to safely retry on timeouts, network errors, or 5xx responses.
Broker API
POST /v1/accounts/{account_id}/tokenization/mintPOST /v1/accounts/{account_id}/tokenization/callback/redeem
Trading API
POST /v2/tokenization/mint