Ir al contenido

Ledger

GET /v1/ledger/{clientId}

Obtiene el historial de movimientos del ledger (entradas contables).

ParamDescripciónEjemplo
startDateFecha de inicio (ISO 8601)2026-03-01T00:00:00Z
endDateFecha de fin (ISO 8601)2026-03-31T23:59:59Z
limitMáximo de resultados (default 50, max 100)100
countryPaís (default BR)BR
{
"entries": [
{
"txId": "a1b2...",
"entryType": "CREDIT",
"amount": 9700,
"currency": "BRL",
"balanceBefore": 140000,
"balanceAfter": 149700,
"description": "Pay-in completado",
"category": "PAYIN_CREDIT",
"createdAt": "2026-03-18T14:02:30.000Z"
}
],
"count": 1,
"hasMore": false
}
CampoDescripción
entryTypeCREDIT (ingreso) o DEBIT (egreso)
balanceBeforeBalance antes del movimiento en centavos
balanceAfterBalance después del movimiento en centavos
categoryCategoría contable (ej: PAYIN_CREDIT, PAYOUT_DEBIT)
hasMoretrue si hay más páginas disponibles