#Gautam
1 messages · Page 1 of 1 (latest)
Hi there!
If you already have a PaymentMethod saved, you can use a PaymentIntent to charge the customer, as explained here: https://stripe.com/docs/payments/save-and-reuse?platform=ios&ui=payment-sheet#charge-saved-payment-method
However that will charge the customer immediately. There's no option to charge the customer in the future (unless you are talking about recurring payments).
what stripe will suggest to achieve this use case .. suppose we have created the customer and payment method .. and want to charge after 30 days .. and we should have flexibility to extend this date to 30 to 40 ..or reduce from 30 to 20 as well
That's totally possible, you'll need to write some code that will create the PaymentIntent in 30 or 40 days. That's completely up to you.
that correct .. we can write some batch or cron where we will invoke stripe api ..any other option which stripe can handle this process ( the time when we are creating customer and payment method then only we could invoke stripe api and ask api to charge after 30 days if this we can achieve?)