#matty - subscription trial
1 messages ยท Page 1 of 1 (latest)
Can you say more about what outcome you want? When using a trial, the first invoice should be for $0 and only after the trial ends your customer would be invoices for the price you set.
That's correct. If you add an invoice item https://stripe.com/docs/api/subscriptions/create#create_subscription-add_invoice_items these items will charge with that $0 invoice. I want those items to charge with the first invoice that is NOT that $0 invoice.
I assume there is no way to postpone this invoice to the second charge if the subscription is trialing?
You can add these invoice items after the subscription is started and trial invoice is "paid" so that they'll be on the renewal invoice: https://stripe.com/docs/api/invoiceitems/create#create_invoiceitem-subscription
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Boom!!!! That's perfect. Thank you!