#Wasabi-payments
1 messages · Page 1 of 1 (latest)
heya @stable ledge, i don't really understand what you're referring to when you say payment element server-side vs. client side - can you try rephrasing?
@narrow token hii - please ignore that part. I'm more interested in knowing if you have suggestions for the use case I mentioned above
I would suggest following the accept a payment guide [0] and listen for the payment_intent.succeeded webhook to credit their account
Thank you
any suggestion on how might user wait to confirm payment post order is confirmed?
oh, the order isn't confirmed immediately?
Their concern is that they do not want to charge the customer until order is confirmed, and then credit the customer account after the order is confirmed, and charge sync of crediting
if the order isn't confirmed immediately, then you'd want to use authorize and capture : https://stripe.com/docs/payments/capture-later
and listen for the payment_intent.amount_capturable_updated event instead
yeah, it doesn't seem to be automatic from what it sounds like. they are also using paypal, and their existing flow is somewhat a manual capture.
then they should use the authorize and capture flow
thank you!!