Endpoints for creating transactions
x-idempotency-key
header with the request.
Idempotency works by saving URL, method and idempotency header of your request as a key and the result of the request as value for 24 hours. Any subsequent requests with that key return the same response, including 500 errors.
In case an error occurs while processing the request, the error message will be persisted and resent on possible retries. Please note that the uuid
and timestamp
fields of the error will be regenerated to be able to track down the identity of each error.
Idempotency key needs to be a unique value generated by the client which the server then uses to activate the feature to be able to recognize possible future retries of the same request. The maximum length of the idempotency key is 64 characters.