#f1na_webhooks
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/1222893844274610276
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello
Yep so with async debit payment methods the Subscription will move to active immediately while the payment is still processing. It would then move to past_due if the payment fails.
If you don't want to provision for the Subscription until the payment succeeds, then you want to check the type of payment method and if SEPA Debit wait and listen for payment_intent.succeeded which will fire when the payment actually moves to succeeded
ok thanks for the answer
how to do the link between the payment_intent and the subscription please ? ๐
There is an invoice property on the PaymentIntent and a subscription property on Invoice. So when you retrieve a PaymentIntent you can expand invoice.subscription
https://docs.stripe.com/expand if you aren't familiar with how expansion works
Sure thing