#haris ishtiaq-sub-model
1 messages · Page 1 of 1 (latest)
Hey there!
Sure, you'd just have a single subscription with multiple items: https://stripe.com/docs/billing/subscriptions/multiple-products
It'd be up to you to build the implementation to enable the add-on selection, etc
Unless you're using Checkout: https://stripe.com/docs/payments/checkout/cross-sells
in addon models there is a dependency over one an other because its kind of parrent child relation between two subscriptions
but here in stripe multiple subscription it doesnt have such kind of any relation over two items or products or plans
There's no dependency model you're right. So you'd need to manage that yourself
so we need to build that dependency on our side in the code to stimulate as add-on subscription models
i.e. check the existing subscription has price_xxx before they can add price_yyy
okay one last question i have
i have subscription having 2 prices or plans
one is primary let say and one is add-on to that primary
so i want to upgrade my add-on price with some other price or plan
so would it allow me to upgrade that one price with any other ?
okay so we are simply updating it
and there would be no grace period to that plan or price after update ?
What do you mean by grace period?
in stripe grace period is when subscription is schedualed to cancel until next billing date comes
You can either update the subscription immediately, or schedule it for some time in future
For example, if a user cancels a subscription on March 5th that was originally scheduled to expire on March 10th, the user is on their "grace period" until March 10th.
For scheduling at a different date: https://stripe.com/docs/billing/subscriptions/subscription-schedules/use-cases#upgrading-subscriptions
okay thank you so much ynnoj
Of course!