Credit Requests

This page documents the retry configurations implemented for credit requests to handle transient communication failures with external clients.

Retry Strategy & Backoff

The retry mechanism uses an exponential backoff strategy. This prevents overloading client servers when they are struggling.

When Do We Retry?

Retries are only triggered for transient issues:

We do not retry on client-side errors (4xx codes like 400 Bad Request or 401 Unauthorized), as repeating the request will not change the outcome.

Feature Control

We may choose to enable or disable this feature if necessary.

Debit Requests

Look at reconciliations