Skip to main content

BANKING ARS 2

Online banking in Argentina is processed through hosted payment requests.

ParameterTypeRequiredDescription
pos_idUUIDMerchant's identifier (POS_ID)
modeMODEdirect or hosted
methodMETHODPayment method (purchase)
amountNumberTransaction amount. Must be a positive number
currencyCURRENCYTransaction currency (ISO_4217)
order_3ds_bypassString3-D Secure flow option
order_idStringUnique order identifier
descriptionStringPayment description
paywayStringbanking
customer_fnameStringCustomer first name
customer_lnameStringCustomer last name
customer_emailStringCustomer email
customer_phoneStringCustomer phone
customer_countryStringCustomer country (ISO 3166-1 Alpha-2)
customer_cityStringCustomer city
customer_ipStringCustomer IP address
properties.instrument_typeStringpayment method type
properties.instrument_methodStringpayment method name
properties.document_idStringpayer’s document ID
properties.addressStringBilling address
properties.post_codeStringPostal code
properties.stateStringState / Region
server_urlURLWebhook notification URL
result_urlURLCustomer 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"
}