#heymato
1 messages · Page 1 of 1 (latest)
👋 happy to help
once the PaymentIntent is successful you can no longer update it
would you mind sharing your scenario/use-case maybe I could find a workaround for you
I'm working in an existing project and customers are created at the end of the payment
since I link both stripe and custom customers together I can only do this at the end of the payment
so I'm looking for a way to bind the first payment to a stripe customer
after the first payment everything works as it should
unfortunately that's not possible, once the payment is made you can't re-associate the Customer of the PaymentIntent
ok
do you really need to validate the payment before creating the customer?
Well I'm thinking to link maybe later
so I will create the stripe customer first and link them toghether at the end
what I would suggest is either using manual capture https://stripe.com/docs/payments/place-a-hold-on-a-payment-method or build a 2-step confirmation integration https://stripe.com/docs/payments/build-a-two-step-confirmation
if you already created the customer at first, why not automatically linking it to the PaymentIntent
which approach have you chosen?
well, creating my stripe customer right before the paymentIntent and bind link them alreadye
let me know if you need any more help