#ashish_best-practices

1 messages ¡ Page 1 of 1 (latest)

little ravineBOT
#

👋 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/1315732159452942358

📝 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.

devout berry
blissful jay
#

No, it's for new subscription.

#

Code looks something like this
const subscription = await stripe.subscriptions.create({
customer: stripeCustomerId,
items: [
{
price: priceId,
},
],
default_payment_method: paymentMethodId,
expand: ["latest_invoice.payment_intent"],
discounts: [
{
coupon,
},
],
automatic_tax: {
enabled: true,
},
});

devout berry
#

Sorry, I guess I don't understand what you mean by "revert the Subscription" then. If it's a brand new Subscription what are you reverting it to?

blissful jay
#

Yes, is there way to check if the payments go through before creating new subscription of customer's payment method ?

devout berry
#

No, creating the Subscription and attempting the first payment is how you know if that payment will succeed or not.

blissful jay
#

If it fails, it moves to incomplete state, but I want to undo subscription

devout berry
#

What do you mean by undo, exactly?

blissful jay
#

Does cancelling subscription also voids the invoice ?

devout berry
#

No, you need to do that as an additional step if that's what you want to happen.

blissful jay
#

And what is the best way to know the reason of reject ?

#

subscription -> latest_invoice -> payment_intent ?

devout berry
#

Yeah, you can look there, or on the Payment Intent's associated Charge.

blissful jay
#

Thanks

#

That should be all