#imexoodeex
1 messages · Page 1 of 1 (latest)
for example I have my order model in db and I want to update eg. hasMadePayment etc.
Prisma ORM with postgres
React with Remix.run
I meant with Stripe, are you using Checkout, or Stripe Elements?
Stripe Elements in my app
ok in that case you can listen to the payment_intent.succeeded webhook event
I've reed smth about that webhook event and realized that i can check payment status on success page. And I have question. Is Stripe processing the payment after redirecting to success page or its fully succeeded?
You shouldn't rely on users being redirected to a success page for post payment actions/fulfilment
Our recommendation is to utilise webhooks and fulfil async
okey thanks