Check Account Balance
Account Balances
Your Fluz account can have up to four different balances:
- Rewards balance - A withdrawalable balance that contains your available cashback and bonus rewards.
- Cash balance - A withdrawable balance that you can use to fund your gift card and virtual card purchases, among other uses.
- Fluz prepayment balance - A non-withdrawable balance you can use towards gift card and virtual card purchases.
- Reserve balance - A balance held in Fluz to cover any transactions that fail to settle, ensuring your account remains in good standing.
In order to see your current balances you can use the getWallet
query. This can help you determine how much you want to deposit or apply towards a gift card purchase. The sum of these balances makes up your 'available Fluz balance', which determines the total amoount you can use towards funding a payment on Fluz.
Sample Response:
{
"data": {
"getWallet": {
"bankCards": [BankCard],
"bankAccounts": [BankAccount],
"paypalAccounts": [Paypal],
"blockedPaymentTypes": ["BANK_CARD"],
"balances": {
"rewardsBalance": RewardsBalance,
"cashBalance": CashBalance,
"giftCardCashBalance": CashBalance
}
}
}
}
Updated 3 months ago