#nachofranco-Subscription

1 messages · Page 1 of 1 (latest)

errant bough
#

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

final steppe
#

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?

errant bough
#

How long is your billing cycle? 1 month?

final steppe
#

yeap

errant bough
#

OK, if you are sending the invoice 1 week earlier, technically you are shorten the billing cycle to 23 days only.

final steppe
#

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?

errant bough
#

Let me guess, is purpose just to remind the customers about upcoming invoices?

final steppe
#

yes, so we can lower the disputes from them once we collect the payment

errant bough
final steppe
#

and it will not affect the invoicing, right?

errant bough
final steppe
#

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?
errant bough
#

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?

final steppe
#

that it charges the customer or it creates the invoice

#

because we are using the invoice.created webhook

errant bough
#

Are you setting collection_method to send_invoice ?

final steppe
#

nope

#

it's charge_automatically

errant bough
#

Then why you want to remind your customers if the invoices are charged automatically?

final steppe
#

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

errant bough
#

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.

final steppe
#

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?

errant bough
#

The customers won't be automatically charged if the collection_method is set to send_invoice

final steppe
#

okay, thanks for the clarification