Last updated 11 months ago
This method is used to verify the balance of the merchant
Returns the currently balance of the merchant
OK
const response = await fetch('/api/v1/{merchantId}/balance', { method: 'GET', headers: {}, }); const data = await response.json();
[ [ { "country": "ARG", "currency": "ARS", "availableBalance": 98000000, "balance": 100000000 }, { "country": "CHL", "currency": "CLP", "availableBalance": 100000000, "balance": 100000000 } ] ]