Balances are returned within the balances object, where each key represents a specific balance type. See the sample Balance Object JSON below for reference.
Types of Balances
| Balance Type | Key | Description | 
|---|---|---|
| Pending | pending_balance | Total of all entries, including both pending and posted amounts. | 
| Posted | posted_balance | Total of all posted entry amounts only. | 
| Available | available_balance | Sum of posted inbound entries and pending outbound entries. The direction is based on the account’s normal_balance. | 
Sample Balance Object
{
    "balances": {
        "pending_balance": {
            "credits": 434751752772,
            "debits": 431936883967,
            "amount": 2814868805,
            "currency": "PHP",
            "currency_exponent": 2
        },
        "posted_balance": {
            "credits": 434708814958,
            "debits": 431936883967,
            "amount": 2771930991,
            "currency": "PHP",
            "currency_exponent": 2
        },
        "available_balance": {
            "credits": 434708814958,
            "debits": 431936883967,
            "amount": 2771930991,
            "currency": "PHP",
            "currency_exponent": 2
        }
    }
}