Перейти до основного вмісту

Виплати через PIX

Для проведення зарахувань на електронні гаманці PIX у Бразилії запит до API Tranzzo повинен містити такі параметри:

ParameterTypeRequiredDescription
pos_idUUIDMerchant's identifier (POS_ID)
modeMODEdirect
methodMETHODPayment method (credit)
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.
properties.instrument_typeStringinstrument type (pix)
properties.instrument_methodStringinstrument method alias (pix)
properties.document_idStringpayer’s document number (CPF)
properties.pix_keyStringpayer’s pix key

Значення параметру payway має бути передане як pix.

Приклад запиту:

{
"pos_id": "'$POS_ID'",
"mode": "direct",
"amount": 5,
"method": "credit",
"currency": "BRL",
"payway": "pix",
"order_3ds_bypass": "supported",
"customer_lname": "Doe",
"customer_fname": "John",
"customer_email": "[email protected]",
"customer_phone": "1234567890",
"description": "Test description",
"order_id": "'$ORDER_ID'",
"properties": {
"document_id": "50284414727",
"document_type": "CPF"
},
"server_url": "https://callback.blackhole.com/callback",
"result_url": "https://example.com/result"
}