API Idempotency

Each POST request creating a resource (for example a payment) requires to send a unique idempotency key. It is included in the Idempotency-Key HTTP header. Idempotency key helps prevent duplicates in your POST requests. We recommend using an UUID for the key, however you may use any other unique identifier you choose.

Preventing duplicates

If we have already processed the request and you send a request using the same idempotency key, it will fail with an error, returning a 409 Conflict response.

How is this guide?

Last updated on

On this page