#helloworld-subscription
1 messages · Page 1 of 1 (latest)
Hi, so you can't use Stripe Invoice or Stripe Subscription because it would display 10 EUR and force your customer to pay by EUR?
Exactly. So it will create a EUR balance which i don't want. I want to stick with RON balance only.
But since conversion rate is different each month, the amount will be slightly different each month.
If you pre-calculate into RON price and then send one Invoice each month for the calculated price, would it work?
Like simply have a job/batch to send an Invoice after the calculation logic
Yes, but the client has to enter stripe and pay
Can i automatically charge them?
I mean for now, i do have a batch job that calculates and send the client the email to pay. Can i use something to charge the client automatically?
Stripe Invoice does have a property collection_method, which can be set to charge_automatically. But you will need to collect the customer payment info beforehand
I can do that on the first payment right? And stripe will save the "card" payment details?
To the customer, yes
Customer object has a property invoice_settings.default_payment_method, which will be populated to Invoice
Ok, so create a Customer in stripe, use collection_method to charge_automatically, and then each month use that customer to charge him automatically with a different amount?
So this way i can tell stripe, whenever i need, Charge X amount from Customer X?
Yep!
Keep in mind that on the first payment you will need to collect their payment method and save to the Customer object
Got it. I will probably add a Recurring Payment checkbox on my payment page on the first payment to do that. Thank you for your help