#DamManc
1 messages · Page 1 of 1 (latest)
Hey! Bit of a broad question! Is there a specific use case you're trying to account for?
I need to create a checkout session in mode "payment" and I want to choose the date in which the payment actually done
is a specific question 🙂
I want to choose the date in which the payment actually done
Sorry, but I still not understanding your question, you mean like you enable your customer to achieve the payment after a date ? like creating a checkout session and it'll be active next week for example?
yess exactly!
in mode subscription i can use subscription_data.trial_end for create days for the trial; I need something similar but for type payment. I mean, the customer with the possibilities of payment later, choose the date of the payment, not right now
You can collect the payment details of your customer and save them as a PaymentMethod. Then you can charge it later when you decide.
You can take a look at this guide:
https://stripe.com/docs/payments/save-and-reuse?platform=checkout
thank you!