#poussy-Subscription
1 messages · Page 1 of 1 (latest)
👋 happy to help
you could create a subscription with the add_invoice_items https://stripe.com/docs/api/subscriptions/create#create_subscription-add_invoice_items for the first installment, a one-time payment. and use a trial period to give the time for the customer to get their goods and once the goods are received you end the trial period
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
does that answer your question?
Hi @fringe oak - thank you for your fast answer
that could work, but I see a couple of caveats
- since the delivery time of goods isn't deterministic - we would have to set a very large trial period ?
- wouldn't the trial affect the date of payment? ie. subscription starts 1st of the month, goods are received 2 weeks later -> we end trial -> next invoice would be 1/2 of the monthly price?
- since the delivery time of goods isn't deterministic - we would have to set a very large trial period ?
yes that's true
ie. subscription starts 1st of the month, goods are received 2 weeks later -> we end trial -> next invoice would be 1/2 of the monthly price?
actually the billing cycle anchor would be the date after the trial ends
Is it possible to do this way:
- first we make a "manual" payment of 100$
- when goods are arrived, we create a subscription with the appropriate settings (1s month 100$, following months at 50$)
- we immediately mark the first subscription invoice's as "already paid", with a link to the manual payment made at step 1?
Hey, taking over here. Let me catch-up!
Have you instead considered a subscription schedule? https://stripe.com/docs/billing/subscriptions/subscription-schedules/use-cases
Hi @drifting flint - yes that’s what we’re currently using
But how can we de-sync the first installment from the effective start of the rental?
We would like for the « suscription start date » to be different from the date of payment of the first installment
Ie: clients pay for the first month in advance, but the subscription effectively start when the goods are received