#черный властелин
1 messages · Page 1 of 1 (latest)
hi! I don't understand, sorry. Can you explain an example?
by the default stripe, when i`m entering my card details, funds automatically(now - in real time) writes off from my card, and paymentIntent gets status as succeeded
my case is that, i need to delay charge off on the next day
you understand me, or i need one more explanation?)
you can use https://stripe.com/docs/payments/save-and-reuse to save card details now and charge them later.
or you can use https://stripe.com/docs/payments/capture-later to authorise a charge now but capture it a few days later
okay,but if they dont have enough money on their bank account, what stripe will do ?
the payment would decline and you'd have to contact the customer to have them give you new details
so i cannot try to create one more intent with that details, such as using node-cron?
you certainly can try yes
each individual attempt might succeed or it might decline, that's mainly up to the customer's bank
if you need to gurantee that you get the money, then you should charge upfront, or look into the auth-and-capture option(https://stripe.com/docs/payments/capture-later)