#Aurelie-Payment

1 messages · Page 1 of 1 (latest)

patent relic
#

^ On above guide, just choose "Node" as your server language

copper stirrup
#

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

patent relic
#

Which country is your business registered?

copper stirrup
#

France

patent relic
#

Would you want to implement a full-fledge Installment yourself? Or would you use a PaymentMethod like Klarna that support installment plans?

copper stirrup
#

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 ?

patent relic
#

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

copper stirrup
#

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?

patent relic
#

Stripe's Invoice

#

You will need to calculate the time yourself, then from each times, create an Invoice with the amount

copper stirrup
#

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

patent relic
#

Is your customer using credit card?