Skip to main content

Payouts via online banking in India

To make account credits using online banking in India, a request to the Tranzzo API must contain the following parameters:

ParameterTypeRequiredDescription
pos_idUUIDMerchant's identifier (POS_ID)
modeMODEdirect
methodMETHODPayment method (credit)
amountNumberTransaction amount
currencyCURRENCYTransaction currency (ISO_4217)
order_3ds_bypassString3-D Secure flow option
order_idStringUnique identifier of order
descriptionStringPayment description
paywayStringbanking
server_urlURLWebhook notification will be sent to this URL
result_urlURLCustomer will be redirected to this URL after payment.
customer_fnameStringімʼя одержувача
customer_lnameStringпрізвище одержувача
customer_phoneStringмобільний номер одержувача
customer_emailStringелектронна адреса одержувача
properties.instrument_typeStringметод виплати (bank_transfer)
properties.bank_account_nameStringназва аккаунта отримувача (Beneficiary Bank Account Name)
properties.bank_accountStringномер аккаунта отримувача (Beneficiary Bank Account Number)
properties.bank_nameStringназва банка
properties.branch_codeStringрегіональний код банка
properties.ifscStringкод банка (IFSC Code)

The value of the payway parameter must be banking.

Request example:

{
"pos_id": "00000000-0000-0000-0000-000000000000",
"mode": "direct",
"amount": 300,
"method": "credit",
"currency": "INR",
"payway": "banking",
"description": "Description",
"order_id": "1234567890",
"customer_lname": "Doe",
"customer_fname": "John",
"order_3ds_bypass": "supported",
"customer_phone": "911100000000",
"customer_email": "[email protected]",
"properties": {
"instrument_type": "bank_transfer",
"bank_account_name":"test",
"bank_account": "00001234123412",
"bank_name": "test",
"branch_code": "001",
"ifsc": "BKID0000200"
},
"server_url": "http://callback-stub:9000/consume",
"result_url": "https://google.com"
}