Prerequisites
Before you begin, make sure you have:
- Your ISPB (Identificador do Sistema de Pagamentos Brasileiro) — the 8-digit identifier derived from your institution’s CNPJ
- Access to your Midaz and CRM instances (deployed and running)
- Access to BTG provider services (BTG provides the credentials)
PIX_ISPB is also used to detect intra-PSP (P2P) transfers: when a transfer’s destination ISPB matches this value, the plugin settles it internally instead of routing it to BTG, while still reporting it to BACEN. See Intra-PSP transfers.1. License
The plugin is an enterprise solution and requires a valid license to operate. Lerian provides the license key during onboarding.
2. Access Manager (optional)
Access Manager handles authentication for the plugin. When enabled, it validates all incoming requests before they reach the plugin’s API.
PLUGIN_AUTH_ENABLED=true, the plugin validates every request’s Authorization header to ensure:
- The token belongs to an authorized user or application
- The token grants access to the requested API endpoint and method
You only need to provide client credentials (
CLIENT_ID / CLIENT_SECRET) for Midaz, CRM, and Fee services if those services also have Access Manager authentication enabled.3. Midaz
Midaz is the core ledger for all Pix transactions the plugin processes. The plugin posts every cash-in, cash-out, and refund operation to Midaz as a double-entry transaction.
Connection
Asset requirements
Configure an asset in your organization and ledger with these properties:
Link all accounts to your ledger using the
BRL asset. The plugin rejects operations on accounts that don’t match this configuration.
Account setup
Before using the plugin, create an account in Midaz for each customer under your ISPB. Use the Create an Account endpoint to set up accounts. Each account must:
- Belong to your configured organization and ledger
- Use the
BRLasset
X-Account-Id header
Many Pix operations require the
X-Account-Id header to identify which account is performing the action. This ID corresponds to the Midaz ledger account ID.
When you call a plugin endpoint, the X-Account-Id value tells the plugin:
- Which account to use for ledger operations
- Which customer data to fetch from CRM
- Which balance to validate and update
How the plugin uses the account ID
The plugin uses the account ID differently depending on the operation type:Account compliance
The plugin does not enforce business-level account restrictions, such as blocked or suspended accounts. Your application is responsible for validating account status before calling the plugin. To prevent Pix settlements on a specific account, block it directly in Midaz. The plugin receives a rejection when it attempts to post the transaction. Related documentation:
4. CRM
The CRM stores customer (holder) information and their associated bank accounts. Every Midaz account must have a corresponding holder and alias account in the CRM to perform Pix operations. The plugin queries CRM data to:
- Register and validate Pix keys
- Build payment messages for BACEN
- Authorize incoming transactions
- Process refund and dispute workflows
Connection
Holders
Holder data represents the customer who owns the account. Create each holder in the CRM before executing any Pix operation for that customer.
Required fields
Optional fields
Related documentation: Create a Holder
Alias accounts
Alias accounts link a Midaz account to its banking details. Each alias account must include the banking information that the Pix ecosystem requires for transaction processing.
Required fields
Supported account types
Related documentation: Create an Alias Account
5. BTG provider
BTG is the direct participant that connects your institution to BACEN’s Pix infrastructure. BTG provides the credentials directly when your institution signs up for indirect BACEN integration.
Connection
mTLS (webhook security)
Mutual TLS (mTLS) adds an extra layer of security by validating BTG’s certificate on webhook requests. This ensures that incoming webhooks genuinely originate from BTG.
6. Fee service (optional)
Enable fee calculation to automatically charge and distribute fees on incoming payments. This is optional — if you don’t configure it, the plugin processes transactions without fee calculation.
Connection
How it works
When you set
CASHIN_FEE_CALCULATION_TYPE=segment, the plugin:
- Retrieves the segment associated with the receiving account
- Calculates applicable fees before processing the transaction in Midaz
- Distributes the incoming payment according to any package rules linked to that segment
Setup steps
- Create segments in Midaz — Define the account segments that determine fee rules
- Configure packages in Fees Engine — Link each segment to its fee calculation rules
- Assign segments to accounts — Create or update Midaz accounts with the appropriate segment ID
7. DICT reconciliation (VSync)
VSync reconciles your local DICT data with BACEN by processing all key-related events from the day. This ensures your local state stays consistent with BACEN’s authoritative records.
The CIDR range restricts which networks can trigger reconciliation. The plugin automatically rejects requests from outside this range.
Redis cache configuration
VSync uses Redis to cache BTG/DICT entries and CRM holders during reconciliation. In Helm deployments the default
REDIS_HOST points to the built-in Valkey sidecar, so no extra setup is required for a standard install.
In Helm deployments, the default
REDIS_HOST points to the built-in Valkey sidecar (<release-name>-valkey:6379) — no additional Redis setup is needed unless you connect to an external instance.Connection (always used)
Connection pool and retries (always used)
Authentication (optional — only used if set)
TLS (optional — only used if REDIS_TLS=true)
GCP IAM authentication (optional — only used if REDIS_USE_GCP_IAM=true)
VSync cache TTLs (always used)
8. Internal webhook security
The plugin uses an internal communication channel between the Worker and Application services. HMAC-SHA256 signatures secure this channel to prevent tampering and replay attacks.
9. Worker layers
The plugin operates with three worker layers, each handling a different part of the Pix lifecycle. All workers run as separate services alongside the main application.
Inbound worker
The inbound worker receives webhook notifications from BTG and forwards them to your application for processing.
Outbound worker
The outbound worker sends event notifications from the plugin to your application via webhooks. This is how your system stays informed about Pix events (transfers, refunds, claims, disputes).
URL resolution priority
The plugin resolves webhook URLs in this order, using the first match:- Entity URL — A URL specific to the event type (e.g.,
WEBHOOK_DICT_CLAIM_URL) - Flow URL — A URL for the broader category (e.g.,
WEBHOOK_DICT_URL) - Default URL — The fallback URL (
WEBHOOK_DEFAULT_URL)
Reconciliation worker
The reconciliation worker needs the same credentials as the Application layer for these services:
- CRM — URL and credentials
- BTG — URL and credentials
- Midaz — Organization ID
If you leave both fields empty, the worker runs without time restrictions — 24/7.
Indirect Pix cashout and refund endpoints support idempotency through the
X-Idempotency request header, with configurable TTL via X-TTL. For retry strategies and implementation details, see Retries and idempotency.10. Observability (OpenTelemetry)
The plugin ships with full OpenTelemetry instrumentation (traces, metrics, and logs) across the Application and Worker layers. Every Pix flow is traced end to end — transfers (cash-in and cash-out), refunds, inbound and outbound webhooks, DICT reconciliation, and intra-PSP settlement — so you can follow a single payment across the plugin, Midaz, CRM, and BTG calls. Telemetry is disabled by default. Enable it and point the OTLP exporter at your collector:
When
ENABLE_TELEMETRY=true, OTEL_EXPORTER_OTLP_ENDPOINT is required. Set the same OTel variables on the Application and on each Worker so traces correlate across services.Exporter: gRPC and TLS
The plugin exports traces, metrics, and logs over OTLP/gRPC. The endpoint scheme controls transport security:
Example: collector endpoint
Point the plugin at any OTLP-compatible collector (the OpenTelemetry Collector, Grafana LGTM/Alloy, etc.) listening on the gRPC port:
11. Health and readiness
The Application and Workers expose a readiness probe at
/readyz (alongside the standard liveness checks). Point your orchestrator’s readiness probe at this endpoint so traffic is only routed once the service and its dependencies are ready.
Transfer purpose (MED 2.0)
The cashout endpoint accepts an optional
X-Purpose header that identifies the transaction purpose, used for MED 2.0 refund transfers. When omitted, it defaults to TRANSFER.
TRANSFER and INSTANT_PAYMENT_REFUND. See MED 2.0 — Funds Recovery for details.
Next steps
With the plugin fully configured, you’re ready to start operating Pix. Explore these topics to go deeper:
- Webhooks — Event types, payloads, retries, and best practices
- MED 2.0 — Funds Recovery — Cross-account fraud recovery and the X-Purpose header
- Refund operations — Distributed partial refunds and unblocking
- Intra-PSP transfers — Internal P2P settlement and TRCK002 reporting
- Main domains: DICT — Understanding Pix key management
- Main domains: transactions — Transaction flows and lifecycle
- Main domains: QR Codes — Static and dynamic QR code generation
- API reference — Full API documentation for DICT, Claims, Transactions, QR Codes, and MED operations

