I am integrating stripe to enable the user to subscribe to a physical product shipping to the US and Canada.
I want to use the invoice.created
webhook to modify the invoice and add a shipping charge depending on the delivery address.
The problem according to stripe docs is that the first invoice is charged immediately, implying that I cannot modify it prior to the first charge as I could with the subsequent.
If this is so, then the only way around this I believe is to add plans for us and canada for each of the subscription intervals e.g product-weekly-us
, product-monthly-us
, product-weekly-ca
, product-monthly-ca
instead of just product-monthly
, product-weekly
The shipping would then be static (no line item) and part of the total.
Edit
So looking into invoices from koopajah
's answer, here is what I can work out (please confirm):
- Create the invoice items for your customer (pending invoice items) - does this exclude the line item for the subscription?
- Create the subscription for the customer (which adds those pending invoice items to the new invoice for the subscription) - this will fire
invoice.created
webhook, which you would have to inspect and ignore - would you have to track the invoice numbers? **edit: oh wait! It would be closed, so you can just check that :D ** - All subsequent invoices are modified with the
invoice.created
webhook for open invoices