Skip to main content

PIX Charge Events

Events related to PIX payments (Brazilian instant payment system).

pix.charge.created

Triggered when a new PIX charge (QR Code) is generated.

Available Data

FieldTypeDescription
txidstringUnique Transaction ID for the PIX charge
amountamountThe amount to be paid (in cents)
currencystringCurrency code (usually BRL)
qr_codestringThe QR Code payload for payment
expires_atstringExpiration date and time of the charge

pix.charge.paid

Triggered when a PIX payment is successfully received and confirmed.

Available Data

FieldTypeDescription
txidstringUnique Transaction ID for the PIX charge
amountamountThe amount paid (in cents)
currencystringCurrency code (usually BRL)
payerobjectInformation about the payer
receiverobjectInformation about the receiver
timestampstringDate and time of payment

Example Usage

{
"hook_type": "pix.charge.paid",
"data": {
"amount": 5000,
"currency": "BRL",
"payer": { "name": "John Doe" }
}
}