BANKING ARS 1
Online banking in Argentina is processed through direct or hosted payment requests.
| Parameter | Type | Required | Description |
|---|---|---|---|
pos_id | UUID | ✅ | Merchant's identifier (POS_ID) |
mode | MODE | ✅ | direct or hosted |
method | METHOD | ✅ | Payment method (purchase) |
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 order identifier |
description | String | ✅ | Payment description |
payway | String | ✅ | banking |
customer_fname | String | Customer first name | |
customer_lname | String | Customer last name | |
customer_email | String | ✅ | Customer email |
customer_phone | String | ✅ | Customer phone |
customer_country | String | Customer country (ISO 3166-1 Alpha-2) | |
customer_city | String | Customer city | |
customer_ip | String | Customer IP address | |
properties.instrument_type | String | ✅ | online_banking |
properties.address | String | Billing address | |
properties.post_code | String | Postal code | |
properties.state | String | State / Region | |
server_url | URL | Webhook notification URL | |
result_url | URL | Customer redirect URL after payment |
{
"pos_id": "00000000-0000-0000-0000-000000000000",
"mode": "direct",
"amount": 1000,
"method": "purchase",
"currency": "ARS",
"payway": "banking",
"order_3ds_bypass": "supported",
"description": "Test description",
"order_id": "123456789",
"properties": {
"instrument_type": "online_banking"
},
"server_url": "http://callback-stub:9000/consume",
"result_url": "https://google.com"
}