Skip to main content

PIX 2

To enable the PIX payment method, you need to use direct integration. When creating a payment, send a request with the following parameters:

ParameterTypeRequiredDescription
pos_idUUIDMerchant's identifier (POS_ID)
modeMODEdirect
methodMETHODPayment method (purchase)
amountNumberTransaction amount. Must be a positive number. The number of decimal digits must be less than or equal to 2 (e.g., 100.00, 250, 50.50)
currencyCURRENCYTransaction currency (ISO_4217)
order_3ds_bypassString3-D Secure flow option
order_idStringUnique identifier of order
descriptionStringPayment description
paywayStringpix
server_urlURLWebhook notification will be sent to this URL
result_urlURLCustomer will be redirected to this URL after payment.
customer_fnameStringpayer’s first name
customer_lnameStringpayer’s last name
customer_emailStringpayer’s email address
customer_phoneStringpayer’s phone number
properties.instrument_typeStringpayer’s document type
properties.document_idStringpayer’s document ID

Request example:

{
"pos_id": "<POS_ID>",
"mode": "direct",
"amount": 5.50,
"method": "purchase",
"currency": "BRL",
"payway": "pix",
"order_3ds_bypass": "supported",
"customer_lname": "Doe",
"customer_fname": "John",
"customer_phone": "+5511987654321",
"customer_email": "joaosilva@hotmail.com",
"description": "Test description",
"order_id": "<ORDER_ID>",
"properties": {
"instrument_type": "pix",
"document_id": "50284414727"
},
"server_url": "https://callback.blackhole.com/callback",
"result_url": "https://example.com/result"
}