#paulo-lacerda_docs
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1303433417425289246
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- paulo-lacerda_code, 6 days ago, 20 messages
Hello
I think it will only apply to next finalized invoice. It can't be used with existing invoice
Customer cash balance (using Bank Transfers) can be used to pay overdue invoices but customer credit balance only applies in specific scenarios - https://docs.stripe.com/billing/customer/balance#details
@lyric crescent looks like you're in the wrong place, this thread is for someone else's question.
- If you have your own thread please chat there.
- If you have a question or a followup to a closed thread use one of the buttons in https://discord.com/channels/841573134531821608/842637025524842496 to get help (we don't reopen closed threads).
Note that posting inappropriate messages in other people's threads is against the rules. No worries if this was just an honest mistake, but anyone who violates the rules multiple times will be removed from this server.
ok, so we would have to use this customer cash balance and not credit
Customer cash balance is specific to Bank transfers payment method. You can't use Stripe as a wallet unfortunately
https://docs.stripe.com/payments/bank-transfers
This section of the doc explains cash balance - https://docs.stripe.com/payments/customer-balance#cash
ah ok, so if we want to use it as a wallet we would need to use the credit balance and it wouldn't be used to pay overdue invoices, only new ones
and to add credit to the client we probably have to create the payment intent so the client pays for it and then add it as a credit to be used in future invoices right?
there's not a feature to do that directly, right?
Correct. Ideally, you'd model the wallet functionality on the application level.
For example,
Customer wants to add $50, you charge the customer $50 and update their credit balance with $50. Then you create an invoice for whatever amount which then is offset by the credit baalnce.
Yup