#Gyan-Checkout
1 messages · Page 1 of 1 (latest)
hello! i'd suggest listening for the checkout.session.completed event
Some guides that may be helpful :
https://stripe.com/docs/payments/checkout/fulfill-orders
https://stripe.com/docs/webhooks/quickstart
is this somekind of call that will be fired at the end or keep firing at regular intervals?
Hi @tropic blade I'm taking over this thread
What Alex talks about is Webhook. If you register a webhook endpoint that listens to checkout.session.completed, Stripe will send an event to your webhook endpoint when a Checkout Session is completed. You are able to get data related to this CheckoutSession in the event object, and use it to fulfil the order.