#zach_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/1342427545349656596
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
What is best practice? Should I implement the top-up flow separately from the subscription integration, using a basic checkout session for example?
Or should I use the invoice API and lock the invoices to the existing subscription? If so can I make it autopay using the subscription payment method?
You can use Checkout or invoices but for one time payment only
You can't link it to a Subscription
I'm linking it to a subscription using
invoice = Stripe::Invoice.create(
customer: Current.user.stripe_customer_id,
auto_advance: true,
collection_method: "charge_automatically",
automatic_tax: { enabled: true },
subscription: subscription.id,
)
That created invoice will include only pending items of the Subscription
If that answers your need, then yes that could help.
Ah ok. I guess I'll go with regular Checkout Session with one-off payments, unconnected to the subscription then ๐