Learn about idempotency in Nomba API
X-Idempotent-key
in their requests.
Bank Transfer
request is made, but a connection failure prevents confirmation. Uncertainty looms regarding the fate of the initial request, and if resent, it may inadvertently result in a duplicate disbursement.
To mitigate this risk, Nomba incorporates idempotency support by allowing API operations to include an idempotency key which is a unique string that guards against accidental duplicate calls.
Bank Transfer
example
Bank Transfer
request with the same idempotency key prompts the endpoint to recognize it as a duplicate. Instead of processing the request again, the endpoint retrieves the response from the initial successful Bank Transfer
operation.
Bank Transfer
request (e.g., specifying a different amount) results in an error, indicating previous usage of the idempotency key.