BANKING ARS 2
Online banking in Argentina is processed through 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 | ✅ | payment method type |
properties.instrument_method | String | ✅ | payment method name |
properties.document_id | String | ✅ | payer’s document ID |
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 |
Request example:
{
"pos_id": "<POS_ID>",
"mode": "direct",
"amount": 1001.50,
"method": "purchase",
"currency": "ARS",
"payway": "banking",
"customer_fname": "John",
"customer_lname": "Doe",
"properties": {
"instrument_type": "online_banking",
"instrument_method": "ONLINE_BANKING",
"document_id": "12345678901"
},
"order_3ds_bypass": "supported",
"description": "Description",
"order_id": "123456890",
"server_url": "http://callback-stub:9000/consume"
}