BANKING ARS 1
Payouts via online banking in Argentina are processed through direct credit requests.
| 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 |
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 | ✅ | transfer |
customer_fname | String | Recipient's first name | |
customer_lname | String | Recipient's last name | |
customer_email | String | Recipient's email | |
customer_id | String | Recipient's identifier in merchant's system | |
properties.instrument_type | String | ✅ | Instrument type (bank_transfer) |
properties.account_number | String | ✅ | Recipient's bank account number |
server_url | URL | Webhook notification will be sent to this URL | |
result_url | URL | Customer will be redirected to this URL after processing, if applicable |
Request example:
{
"pos_id": "00000000-0000-0000-0000-000000000000",
"mode": "direct",
"amount": 1000,
"method": "credit",
"currency": "ARS",
"payway": "transfer",
"properties": {
"instrument_type": "bank_transfer",
"account_number": "0123456789"
},
"order_3ds_bypass": "supported",
"description": "Test description",
"order_id": "123456789",
"server_url": "http://callback-stub:9000/consume",
"result_url": "https://google.com"
}