Skip to content
Last updated

Guides

Use the guides when you already know the flow you want to integrate and need operational detail, security rules, or implementation decisions.

StepRead this when you need toGuide
1Authenticate requests and understand DigitalSignatureAuthentication
2Receive asynchronous events safely and idempotentlyWebhooks
3Map failures to retries, alerts, and operator actionsError Handling

Pick the right guide fast

If you are trying to...Start here
Send your first authenticated requestAuthentication
Validate webhook delivery before productionWebhooks
Handle rejected requests or business-rule failuresError Handling

API Overview

DomainDescription
Cash-InGenerate PIX QR Codes and OpenFinance payment intents. Receive confirmation webhooks when payments land.
Cash-OutSend PIX payments to any Brazilian bank account or PIX key.
AccountView consolidated wallet balances across all banking partners and manage transactional vs. proprietary account rebalance.
WebhooksAsynchronous events sent by ConnectPSP when transactions evolve.

Key Concepts

Asynchronous Settlement

Cash-Out requests return 202 Accepted immediately. Final settlement happens asynchronously through the PIX network (SPI/BACEN), so webhook handling is part of the happy path, not an optional extra.

Dual Account Architecture

ConnectPSP manages two accounts per banking partner:

  • Transactional — mirrors your users' total exposure (wallets + in-flight operations)
  • Proprietary — your operational capital/buffer

Use POST /account/rebalance to keep transactional funds aligned with actual user exposure.

End-to-End IDs (E2E)

Every PIX transaction settled by BACEN receives a unique E2E ID:

  • Starts with E → original payment settled
  • Starts with D → devolution/refund of a previous payment

Continue the journey

  • Start from Initial Setup if you are still preparing the integration baseline.
  • Use the Quickstart section when you want a guided first transaction.
  • Open the API Reference when you need exact request and response contracts.