#๐๐๐๐๐
1 messages ยท Page 1 of 1 (latest)
Hi, taking a look here
It depends on your integrations but I'd recommend listening to payment_intent.succeeded: https://stripe.com/docs/payments/payment-intents/verifying-status#handling-webhook-events to start fulfilling orders.
Seems like i have to use checkout.session.completed otherwise i dont get billing details
case "checkout.session.completed":
var session = stripeEvent.Data.Object as Stripe.Checkout.Session;
this.FulfillOrder(session);
break;
I see, yes - depending on what you're looking for, these will be triggered once a payment has succeeded.
๐