#nachofranco-Subscription
1 messages · Page 1 of 1 (latest)
Hi there, the invoice will only be sent once it is finalized. I won't recommend you to send the invoice earlier, instead you can use days_until_due to give more time for your customer to complete the payment https://stripe.com/docs/api/invoices/create?lang=dotnet#create_invoice-days_until_due
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
could you elaborate a bit on the reasons please?
in case there's a strong decision on doing it anyway, how should I do it?
How long is your billing cycle? 1 month?
yeap
OK, if you are sending the invoice 1 week earlier, technically you are shorten the billing cycle to 23 days only.
but is it possible to send the invoice on the 23rd and collect the payment on the 1st of the next month?
or when the invoice is sent the customer is charged?
Let me guess, is purpose just to remind the customers about upcoming invoices?
yes, so we can lower the disputes from them once we collect the payment
Ok, https://dashboard.stripe.com/settings/billing/automatic you can configure a reminder here
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
and it will not affect the invoicing, right?
You can also do an one-off reminder https://stripe.com/docs/invoicing/send-email#email-reminders
just two more questions:
- what kind of reminder should I use if I'm collecting from sepa direct debit?
- will this reminder (the first one) affect the invoicing?
There's only one reminder configuration regardless of the payment method.
I don't quite understand the 2nd question. What kind of effect are you concerning about?
that it charges the customer or it creates the invoice
because we are using the invoice.created webhook
Are you setting collection_method to send_invoice ?
Then why you want to remind your customers if the invoices are charged automatically?
that's the use case our Ops team wants to cover: to let the customers know we are about to charge them, so when we charge them they have the bank account with the required cash, and also to avoid disputes
The email reminder is only applicable if collection_method is send_invoice. In this case, you will need to send out the emails by yourself.
and the difference between send invoice and charge automatically is that in the send_invoice the customers have to pay it themselves, right?
or is the customer going to be charged automatically on send_invoice as well?
The customers won't be automatically charged if the collection_method is set to send_invoice
okay, thanks for the clarification