#Aurelie-Payment
1 messages · Page 1 of 1 (latest)
Yes you can! You can follow our guide here: https://stripe.com/docs/payments/accept-a-payment Btw can you elaborate on the "payment in several times"?
^ On above guide, just choose "Node" as your server language
Or simpler, we have a sample integration with Node-React: https://stripe.com/docs/payments/integration-builder?client=react
For example my client wants to buy an item at 200, but he wants to pay in 4 installments, so I would like him to be able to pay 50 for 4 months.
Stripe is already set on the projet and the classique payement too, but now I have to implement method to pay the same item in several time/month
Which country is your business registered?
France
Would you want to implement a full-fledge Installment yourself? Or would you use a PaymentMethod like Klarna that support installment plans?
If I can do it with stripe, I want to do it with stripe, is that possible with stripe ? Or should I use another tool ?
So I understand that I have to use a complementary tool ?
For a simple integration, yes. You can just split the Payment to 4 times and issue 4 separated Invoice. The concern is how would you handle all the complex business logic under installments? Like what if you customer dropped out after a few payment, how would you score your customer's credit v.v...
A Payment Method that support Installment would handle all that for you
With that said, if you just want it to work and think about management later, just split your Payment into 4 times and issue 4 separate Invoice accordingly
Then technically you customer can pay 50 for 4 times
Okay, thanks for the information.
I have to create something lasting.
So to create a payment in several times with an automatic withdrawal over a given number of months, which tools would you recommend?
Stripe's Invoice
You will need to calculate the time yourself, then from each times, create an Invoice with the amount
hum... ok, I have to create 4 invoices (4 payments) and determine the debit date before recording this invoice? That's right ?
I don't know if invoices are a good idea, because the customer must be debited automatically and not come every month to make a new payment
Is your customer using credit card?
If you want the customer to be charge automatically, you can save their card and charge them later (base on your calculated time): https://stripe.com/docs/payments/save-during-payment