Payment
Overview
Create payment API
Initialize Payment
{
"method": "bank_transfer_argentina", // required
"mode": "initial", // required, only "initial" for this method
"reference": "AR-BT-ORD-951753-20250825", // required, unique
"currency": "ARS", // required
"amount": 3858, // required
"description": "My order payin", // optional
"customer":// required
{
"identifier": "1111-1111-2211-2211", // required, any unique value from the merchant's system may be used.
"email": "juancarlos@hotmail.com", // optional
"phone": "+573190437224", // optional
"first_name": "Juan", // required
"last_name": "Garcia Rodríguez", // required
"middle_name": "Carlos", // optional
"country": "AR", // optional, Argentina (ISO 3166-1 country code for Argentina)
"state_code": "B", // optional, Buenos Aires Province (ISO 3166-2 state code for Buenos Aires)
"city": "Buenos Aires", // optional
"address": "Calle Emilio Mitre 3256", // optional
"zip_code": "C1407", // optional
"itn": "1234567890", // conditional, CUIT/CUIL/CDI number (Argentine tax identification number)
"birthday": "2006-01-02", // optional
"ip": "192.168.0.1", // optional
"gender": "male" // optional
},
"redirect_url": "https://merchant.shop.com", // optional
"cancel_url": "https://merchant.shop.com/cancel", // optional
"callback_url": "https://merchant.shop.com/callback/success", // conditional
"extra": // conditional, any field which may be needed for transaction routing and integration
[
{"key_1":"value"},
{"key_2":"value"},
{"key_3":"value"},
{"key_4":"value"}
]
}Challenge type: redirect
Challenge type: requisites
Response - 400 Bad request
Confirm Payment
Response - 400 Bad request
Callback
Callback flow
Example
Check Payment Status
Response (Not Found):
Last updated