Bank Transfer (In/Out)

Bank transfer via Itaú Uruguay, eBROU, Mercado Pago, Santander.

CountryUruguay
CurrencyUYU (Uruguayan peso)
Method typebanktransferuyu
DirectionPayIn/PayOut
Integration typeWidget/H2H
Transfer typeBank transfer via CBU/CVU
Account number format22-digit CBU or CVU number

Create PayIn (API request)
Integration type: Widget/H2H
HTTP Method: POST
Endpoint: /deals/payin

{
  "amount": 222,                        // Payment amount
  "currency": "UYU",                    // Currency
  "invoiceId": "invoiceId",             // Unique invoice identifier on the merchant side
  "clientId": "clientId",               // Unique client identifier on the merchant side
  "type": "banktransferuyu",            // Method type
  "lang": "RU"                          // Optional (widget): localization ES/EN/RU
}

Create PayOut (API request)
Integration type: H2H
HTTP Method: POST
Endpoint: /deals/PayOut

{
    "amount":100,                              // Payment amount
    "currencyTo": "UYU",                       // Currency
    "clientId": "clientID",                    // Unique client identifier on the merchant side
    "recipient": {                             // Recipient's information
        "account_number": "123456789012",      // Recipient's account number (CBU/CVU)
        "account_owner": "Account Holder",     // Recipient's full name (account holder)
        "type": "custom"                       // Recipient account type
    },
    "type": "banktransferuyu"                  // Method type
}

Did this page help you?