Balances

El objeto de balance representa el saldo pendiente, retenido y disponible dentro de una compañía.

Objeto Balance

Atributos

TipoDescripción
availableArrayBalance Disponible
pendingArrayBalance Pendiente
retention_amountArrayBalance Retenido

Balance

{
    "available": [
        {
            "amount": 8836547, // Integer: amount available
            "currency": "MXN"  // String: currency of the amount available
        }
    ],
    "pending": [
        {
            "amount": 5299,    // Integer: amount pending
            "currency": "MXN"  // String: currency of the amount pending
        }
    ],
    "retention_amount": [
        {
            "amount": 100000,  // Integer: retention amount
            "currency": "MXN"  // String: currency of the retention amount
        }
    ],
    
}