#jeet_code
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/1220673563418165338
đ 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.
- jeet_code, 1 hour ago, 3 messages
discussion was pending
Hi, let me help you with this.
What do you mean by "method is supported" exactly?
I tried to use .setPaymentIntent(paymentIntent.getId()); with SessionCreateParams but it is not showing
in documnetation also
My question was how I can use customer balance in one time payment using Stripe checkout
You can't set a PaymentIntent on a Checkout Session, an attached PaymentIntent is generated automatically when you create a Checkout Session.
what about this ?
Where did you find the use_stripe_balance exactly?
over chatgpt
This is not a valid parameter.
okay
Can you answer to my question
how I can use customer balance in one time payment using Stripe checkout
I am not sure it's possible. I am checking...
You can only use customer balance with Invoices. You can create a one-off Invoice and then let the Customer pay on the Hosted Invoice Page: https://docs.stripe.com/api/invoices/object#invoice_object-hosted_invoice_url
Is there any other way I can use customer balance in one time payment ?
You can add a discount to the checkout and then reset the customer balance.
Is there anything similar to customer balance that automatically get deducted while one time and recurring payment ?
Not for one-time payments without an Invoice, but it will work automatically for Subscriptions, because Subscriptions create Invoices each cycle.
Can you share share some sample code related to this ?
You can follow this guide: https://docs.stripe.com/invoicing/integration
The customer balance should be applied automatically.
is credit notes automatically get deducted in case of one time payment using Stripe checkout ?
as far as I know, no