#ashish_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/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.
- ashish_best-practices, 2 days ago, 99 messages
- ashish_best-practices, 3 days ago, 14 messages
- ashish_api, 4 days ago, 7 messages
- ashish_best-practices, 6 days ago, 9 messages
- ashish_best-practices, 6 days ago, 4 messages
Hello! Sounds like you want to use pending updates. Have a look here for details: https://docs.stripe.com/billing/subscriptions/pending-updates
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,
},
});
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?
Yes, is there way to check if the payments go through before creating new subscription of customer's payment method ?
No, creating the Subscription and attempting the first payment is how you know if that payment will succeed or not.
If it fails, it moves to incomplete state, but I want to undo subscription
This might be what you're looking for: https://docs.stripe.com/billing/subscriptions/overview#subscription-payment-behavior
What do you mean by undo, exactly?
Do you just want to cancel it? https://docs.stripe.com/api/subscriptions/cancel
Does cancelling subscription also voids the invoice ?
No, you need to do that as an additional step if that's what you want to happen.
And what is the best way to know the reason of reject ?
subscription -> latest_invoice -> payment_intent ?
Yeah, you can look there, or on the Payment Intent's associated Charge.