What spend power means
Spend power is how much a user can currently spend from a linked bank account. It is based on the account’s most recent known balance, reduced by recent ACH outflows that have not fully settled yet. When a user spends from the account, those amounts are held for roughly three business days before they clear and stop counting against spend power. (The exact clearing window is set per bank and can be shorter.) Fluz keeps the stored balance for each linked account up to date automatically. When you need a more current reading — for example, right after a user moves money in or out of their bank — request a realtime refresh (rate limited; see below). Refreshing the balance updates the balance-derived spend-power figure.Auth
Call/api/v1/graphql with a Fluz user Bearer access token that includes MANAGE_PAYMENT. Basic auth is not allowed on these fields.
Get spend power for one bank account
Get the latest stored balance
For one bank account:Refresh one account in realtime
Request a rate-limited realtime balance refresh for a single bank account. This pulls a fresh balance from Plaid and updates the balance-derived spend power.Refresh rate limit
To control cost, realtime refreshes are rate limited per Plaid institution: one realtime refresh per hour and six realtime refreshes per day. A refresh requested inside a limit window does not call Plaid again — it returns the latest stored balance instead, so the call still succeeds and returns data. Design your UI so that a returned balance is not always assumed to be a brand-new realtime reading.Refresh all connections (cached)
Request a cached refresh of all connected Plaid bank data for the authenticated account.refreshPlaidBankConnections when you want identity-service to perform its cached all-connection refresh.
IfverifyMembersis returned, one or more connections need repair. Use theplatformItemIdto start the relink flow — see Relinking Disconnected Bank Accounts. Note that the single-accountrefreshPlaidBankAccountBalancemutation does not return this signal, so userefreshPlaidBankConnectionswhen you need to detect disconnected connections.