FleetbaseFleetbase

Wallets

Manage digital wallets for drivers, customers, your company, and individual users — credit, top-up, transfer, payout, freeze, and recalculate.

Wallets

A Wallet is a digital balance account within Ledger. Wallets track money owed to or held for a specific entity — a driver's earnings, a customer's prepaid credit, your organization's operating account, or an individual user's personal balance.

Navigate to Ledger → Payments → Wallets.

Wallet Types

Wallets are polymorphic — subject_uuid + subject_type point at the entity that owns the balance:

TypeSubjectCommon Use
DriverFleet-Ops driverTrack earnings from completed deliveries
CustomerStorefront / Fleet-Ops customerPrepaid credit, loyalty balance, refunds
CompanyYour organizationPlatform revenue, operating, payout / refund reserves
UserIndividual Fleetbase userPersonal account

A single subject can have multiple wallets in different currencies.

Auto-Provisioned Wallets

Ledger creates wallets automatically in two cases:

  • New companies receive four system wallets on creation: Operating Wallet, Revenue Wallet, Payout Reserve, and Refund Reserve
  • New users (and users joining a company) receive a personal wallet

Each wallet additionally has an internal ledger account auto-created with code WALLET-{wallet_uuid} so journal entries can post against it.

Wallet Status

The status field is the single source of truth for whether a wallet can transact. It accepts one of three values:

StatusBehavior
activeNormal — credits and debits allowed
frozenOperations blocked while under review
closedPermanently disabled

API responses also expose a derived is_frozen attribute — it's a computed accessor that returns true when status === 'frozen'. Don't write to is_frozen; set the wallet's status instead. The legacy is_frozen toggle in the wallet form is a frontend remnant and does not drive backend behaviour.

Creating a Wallet

Wallets are usually provisioned automatically. To create one manually:

Navigate to Ledger → Payments → Wallets.

Click New Wallet.

Select the Subject — the driver, customer, company, or user the wallet belongs to.

Select the Currency.

Enter an optional Name and Description.

Click Save.

Wallet Operations

Each operation below is a button on the wallet detail panel.

ActionEffect
CreditManual credit (no gateway)
Top-UpGateway-charged top-up via Stripe or QPay
TransferMove funds to another wallet
Payout (sometimes labelled "Withdraw")Debit the wallet (e.g., driver payout)
FreezeSet the wallet status to frozen
UnfreezeSet the wallet status to active
Recalculate BalanceRecompute the balance from completed transactions
Transactions tabFiltered transaction list for this wallet

Credit (manual deposit, no gateway)

Add funds to wallet — credit form

Adds funds to a wallet without charging a gateway. Used for manual adjustments or earning allocations.

Journal entry: DEBIT Cash → CREDIT Wallet Liability. Transaction type: deposit.

Top-Up (deposit via gateway)

Charges a payment method via the chosen gateway (Stripe or QPay) and credits the wallet on success.

Journal entry: DEBIT Cash → CREDIT Wallet Liability. Transaction type: deposit.

Transfer

Transfer funds between wallets — source, destination, amount

Moves funds between two wallets. Pick a destination wallet and an amount — Storefront produces:

  • Two transactions on the source wallet (transfer_out, debit) and the destination (transfer_in, credit)
  • One journal entry directly between the two wallet liability accounts (no intermediate account)

Payout

Debits the wallet (e.g., driver earnings sent to a bank). The UI sometimes labels this Withdraw.

Journal entry: DEBIT Wallet Liability → CREDIT Cash. Transaction type: payout.

Freeze / Unfreeze

Toggles the wallet's status. While frozen, all operations are blocked.

Recalculate Balance

If a wallet balance appears incorrect, click Recalculate Balance to recompute from all completed transactions.

Viewing Wallet Transactions

Open any wallet and click the Transactions tab to see a chronological list. Filter by type, direction, status, and date range.

Wallets | Fleetbase