Idempotency
Transfer creation endpoints support idempotency. Include an Idempotency-Key header with a unique value on each logical operation:
Behavior
- The first request with a given key creates the resource.
- Subsequent requests with the same key return the original result, even if the body differs.
- Keys are looked up by header value only — not by request body comparison.
When to retry with the same key
- Network timeouts or connection errors
500 Internal Server Erroror503 Service Unavailable- Any ambiguous failure where you are unsure the request was processed
Response codes
Do not reuse idempotency keys across different logical operations.