Виплати через онлайн-банкінг в Індії
Для проведення зарахувань на рахунки за допомогою онлайн-банкінгу в Індії запит до API Tranzzo повинен містити такі параметри:
Parameter | Type | Required | Description |
---|---|---|---|
pos_id | UUID | ✅ | Merchant's identifier (POS_ID ) |
mode | MODE | ✅ | direct |
method | METHOD | ✅ | Payment method (credit ) |
amount | Number | ✅ | Transaction 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) |
currency | CURRENCY | ✅ | Transaction currency (ISO_4217) |
order_3ds_bypass | String | ✅ | 3-D Secure flow option |
order_id | String | ✅ | Unique identifier of order |
description | String | ✅ | Payment description |
payway | String | ✅ | banking |
server_url | URL | Webhook notification will be sent to this URL | |
result_url | URL | Customer will be redirected to this URL after payment. | |
customer_fname | String | ✅ | імʼя одержувача |
customer_lname | String | ✅ | прізвище одержувача |
customer_phone | String | ✅ | мобільний номер одержувача |
customer_email | String | ✅ | електронна адреса одержувача |
properties.instrument_type | String | ✅ | метод виплати (bank_transfer ) |
properties.bank_account_name | String | ✅ | назва аккаунта отримувача (Beneficiary Bank Account Name) |
properties.bank_account | String | ✅ | номер аккаунта отримувача (Beneficiary Bank Account Number) |
properties.bank_name | String | ✅ | назва банка |
properties.branch_code | String | ✅ | регіональний код банка |
properties.ifsc | String | ✅ | код банка (IFSC Code) |
Значення параметру payway
має бути передане як banking
.
Приклад запиту:
{
"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"
}