#thomas-d
1 messages · Page 1 of 1 (latest)
What exactly are you trying to achieve?
for the moment client can paid at once but i want the customer to be able to pay several times because it can be amounts of 500 €. Customer take product and can paid several times
And how are you integrating? Which Stripe APIs/UIs are you using?
i using web site with next js and i use for the moment "stripe": "^12.13.0", for pay one times i use stripe.checkout.sessions.create and payment_intent_data: { capture_method: "manual" }, for cupture payment after meeting at the end
Ok, Checkout. There's no way to split the payment up until instalments with Checkout outside of using a BNPL provider like Klarna
Otherwise you can use a Subscription Schedule, but that's a more complex integration: https://stripe.com/docs/billing/subscriptions/subscription-schedules/use-cases#installment-plans
ok i see. So for example before user paid, it may be paid in one time with checkout or in several time with subscription ?
Yes, you can use a schedule to 'split' up a single expensive payment into multiple monthly instalments that we automatically collect from your customers
But that's not supported with Checkout, so you'd need to build your own payment UI with Elements, etc
ok thank you