#rasparac
1 messages · Page 1 of 1 (latest)
Hi there!
Can you share more detail about your integration? Are you only using subscriptions? If so, how are you creating the subscriptions? And what exactly do you want to keep track of?
To learn more about subscriptions webhooks, I recommend reading this: https://stripe.com/docs/billing/subscriptions/webhooks
That link does not have info all the info
it says payment_intent.succeeded Sent when a PaymentIntent has successfully completed payment.
I need to track when user enters credit card details and confirms payment
Again, can you give me more information about your integration, like:
- Are you only creating Subscriptions?
- How are you creating the subscription, with Checkout Session or the Subscription endpoint?
- Also what is your end goal exactly? To know when the first payment is successful? Or to be notified every time a new payment happens?
i'm using subscriptions API. Creating customers and subscriptions. First i create customer and then subscription. I wanna know if user selected trial or without trial subscription and also successfully entered credit card details.
what i noticed is that setup_intent.succeeded is fired when user successfully enters credit card details for subscription without trial and payment_intent.succeeded with trial but i don't know if those two events will be fired on every subscription renewal
I think you meant to say the opposit?
setup_intent.succeededfor subscription with a trial. This is only triggered once, when they setup their payment method.payment_intent.succeededfor subscriptions without a trial. This is triggered every time the subscription renews.
yes you are right. Thank you for the answer