Skip to main content

BANKING ARS 1

Payouts via online banking in Argentina are processed through direct credit requests.

ParameterTypeRequiredDescription
pos_idUUIDMerchant's identifier (POS_ID)
modeMODEdirect
methodMETHODPayment method (credit)
amountNumberTransaction amount. Must be a positive number
currencyCURRENCYTransaction currency (ISO_4217)
order_3ds_bypassString3-D Secure flow option
order_idStringUnique identifier of order
descriptionStringPayment description
paywayStringtransfer
customer_fnameStringRecipient's first name
customer_lnameStringRecipient's last name
customer_emailStringRecipient's email
customer_idStringRecipient's identifier in merchant's system
properties.instrument_typeStringInstrument type (bank_transfer)
properties.account_numberStringRecipient's bank account number
server_urlURLWebhook notification will be sent to this URL
result_urlURLCustomer 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"
}