Balances
Request address
GET
https://api.mvpgateways.com/balances/Headers
{
"Content-Type": "application/json",
"MERCHANT_KEY": "***"
}Response example
{
"EUR": {
"total": 138665,
"reserved": 2500,
"sources": [
{
"source": "TEST",
"amount": 123123,
"decimal_amount": 1231.23
},
{
"source": "TEST_1",
"amount": 15542,
"decimal_amount": 155.42
}
],
"decimal_total": 1386.65,
"decimal_reserved": 25.0
}
}Notification parameters
Parameters
Description
EUR (currency)
The processing gateway currency in which the balance is displayed
total
Total available balance across all gateways in the specified currency
reserved
The amount of payouts pending final status
source
The name of the gateway
amount
Available balance for the specific gateway
decimal_amount
Available balance for the specific gateway (in decimals)
decimal_total
Total available balance across all gateways in the specified currency (in decimals)
decimal_reserved
The amount of payouts pending final status (in decimals)
Last updated