Skip to main content
Pagou returns standard HTTP status codes and RFC 7807 application/problem+json bodies for most errors.

Retry matrix

Example error response

Example fix

Request:
Response:

Practical rules

  • Never auto-retry 4xx writes except behind explicit reconciliation logic.
  • Use exponential backoff for 429 and 5xx responses.
  • If the response to a write is lost, retrieve the resource before creating another one.
  • Log requestId, your external_ref, and the Pagou resource ID together.

Next steps