#ib-schedule-retrieve
1 messages ยท Page 1 of 1 (latest)
ib-schedule-retrieve
@silk topaz that's the id of a SubscriptionSchedule so it's a different resource which you can retrieve using its own API: https://stripe.com/docs/api/subscription_schedules/retrieve
basically here is what i'm trying to do:
I have a subscription scheduled to start tomorrow, but I want to apply metered usage on a subscription item. I'm not sure how to do this since the subscription doesnt start until tomorrow
Then you can look at the subscription property which points to the underlying Subscription object if any. It can be null if the SubscriptionSchedule is created in advance with a start date in the future
And mostly what you want to do is impossible really. Metered usage is applied during the month and billed at the end, so you can apply usage ahead of time
Hmm so we have been handling some of our customers subscriptions directly in QBO. We have usage based pricing and want to transition them to be in Stripe.
Basically we want to start off their first month in August, but include their previous months usage on the subscription (along with some other items). Is this possible?
https://stripe.com/docs/billing/subscriptions/backdating would be a better approach in that case
@silk topaz did that solve your problem?
Hmm. We are not on the advanced plan for billing so I don't think we can do that. However, I think I can just create a non-metered price point for the first month and then switch it to metered price point for months after.
You shouldn't need an advanced plan for that if you write code and do all of this in the API