Bank Transfer (In/Out)
Bank transfer via Itaú Uruguay, eBROU, Mercado Pago, Santander.
| Country | Uruguay |
|---|---|
| Currency | UYU (Uruguayan peso) |
| Method type | banktransferuyu |
| Direction | PayIn/PayOut |
| Integration type | Widget/H2H |
| Transfer type | Bank transfer via CBU/CVU |
| Account number format | 22-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
}

Updated 6 months ago
Did this page help you?
