#clarkeash
1 messages · Page 1 of 1 (latest)
Hi there!
I need to create subscriptions for customers that start in the future
For this you should use Subscription Schedules: https://stripe.com/docs/billing/subscriptions/subscription-schedules
Okay I will take a look thanks
You can see an example here: https://stripe.com/docs/billing/subscriptions/subscription-schedules/use-cases#start-subscription-future
If I do this the customer will not have a subscription just a schedule which is fine but I dont see how I would be able to create usage records for the metered usage on a schedule.
Or am I supposed to create a subscription with just the metered products and then the schedule will add the base plan?
If I do this the customer will not have a subscription just a schedule which is fine but I dont see how I would be able to create usage records for the metered usage on a schedule.
I'm not sure I understand. You said you wanted to create a metered subscription in the future? So use a subscription schedule witha. future start_date. And at that date the metered subscription will be automatically created. Or did I missunderstood your question?
I want the customers renewal date to be in the future (to match what it was in our previous payment provider) I dont want them to be charged until their renewal date, and between now and the renewal date I need to be able to create usage records for their current metered usage
Lets say a customers renewal date is on the 1st and the plan is $50/month + metered usage so:
1st June - billed by previous provider
Today - I set up whatever is needed in stripe (no bill)
1st July - billed $50 + any metered usage I have tracked between now and 1st July
Got it, I missunderstood your question originally. You don't need subscription schedule for this.
If I set billing_cycle_anchor to the renewal date then the metered usage is charged as expected however the customer is also charged the prorated base plan between now and the renewal date.
Maybe you could add a 100% off coupon for the first payment?
Is there a way to add multiple coupons? I am already adding a coupon to customers who were on legacy plans
Hi! I'm taking over from my colleague. Please, give me a moment to catch up.
Are you adding coupons to a Subscription?
Why do you need multiple coupons?
I am currently adding a coupon to the account (it seemed to get lost when a change was made to the subscription when I was adding it to the subscription), I am currently creating a coupon to discount our new pricing for customers who are in yearly contracts
What do you mean it's lost?
It got removed from the subscription when the subscription was modified, I am sure I was doing something wrong but adding it to the account solved the issue
So what do you want to do now?
I guess I need to take another look at how I am doing this, if using a coupon is the only way to remove the prorated charge
It's the easiest way. You could also look into Customer Credir Balance: https://stripe.com/docs/billing/customer/balance
okay thanks for your help
Happy to help!