The API supports idempotency for safely retrying requests without accidentally performing the same operation twice. When creating or updating an object, use an idempotency key. Then, if a connection error occurs, you can safely repeat the request without risk of creating a second object or performing the update twice.Documentation Index
Fetch the complete documentation index at: https://docs.debitdirect.io/llms.txt
Use this file to discover all available pages before exploring further.
To perform an idempotent request, provide an additional
Idempotency-Key: <key> header to the request.Handling Idempotency
Our idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including HTTP result of208.
We require the idempotency key to be a unique value generated using V4 UUIDs to avoid collisions.