#varsted_best-practices
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/1227063250005397506
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
How are you integrating with subscription? Is it through Checkout Session or direct Subscription API?
Through Laravel Cashier. Although all thats being done is creating the subscription with billing method as "Send invoice".
We were hoping that when the customer paid the first invoice that it would automatically charge the customers next invoice for that subscription - thats what we're looking for
We are using Stripes built in Billing portal when customers are paying their invoice
Thanks for sharing the information. Stripe doesn't change the collection method to charge_automatically automatically after the payment is first paid.
If the payment method used supports recurring payment such as card, your system can update the subscription to charge_automatically, so that the future invoice will be under automatic payment
And how would I update to charge_automatically?
Subscription Update API can be used: https://docs.stripe.com/api/subscriptions/update with setting collection_method to charge_automatically
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Thank you! That will definitely do