#darkrider97
1 messages · Page 1 of 1 (latest)
You can call stripe.retrievePaymentIntent periodically to get the status from the webpage. However, it's not recommended as you might hit the API limit if your retrieve too frequently.
It's not about the payment intent status. It's about informing the client when the webhook for payment_intent.succeeded event has been succesfully processed by the server. For example, I might do an order fullfullment by updating the database in my webhook handler for the payment_intent.succeeded event and only after this handler is processed, I'd want the client to take the user to order confirmed page.