#PetroKok-Payment
1 messages · Page 1 of 1 (latest)
If I got right it's not possible to by using stripe?
Yes, but what do you want to achieve actually? You can save a Card Information and charge it later by using SetupIntent
The client's website is for sellers that selling goods and he wants to have the possibility to confirm the payment when the seller creates the order and chooses some period that the customer will be charged (in 2 weeks., in 1+ month) and the customer must be charged after this period automatically or by using some "cron job" on our end.
I see, there is actually a workaround: You can hold an authorization for 7 days, then when reaching the time you can create a new authorization before releasing the old one.
Even if there are 3d secure and without contacting customer?
In the first authorization you can pass in setup_future_usage off_session, when recreate it you can pass in off_session = true, it should be the same with this flow: https://stripe.com/docs/payments/save-during-payment?platform=web#charge-saved-payment-method
I will try, thanks
Can I provide an amount to the subscription instead of price id?