#thomas-d

1 messages · Page 1 of 1 (latest)

static jayBOT
regal stump
#

What exactly are you trying to achieve?

rare lantern
#

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

regal stump
#

And how are you integrating? Which Stripe APIs/UIs are you using?

rare lantern
#

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

regal stump
#

Ok, Checkout. There's no way to split the payment up until instalments with Checkout outside of using a BNPL provider like Klarna

rare lantern
#

ok i see. So for example before user paid, it may be paid in one time with checkout or in several time with subscription ?

regal stump
#

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

rare lantern
#

ok thank you

static jayBOT