#edutomesco
1 messages · Page 1 of 1 (latest)
https://stripe.com/docs/billing/subscriptions/upgrade-downgradeis how you update a subscription to add new Prices.
you update it and pass new items https://stripe.com/docs/api/subscriptions/update#update_subscription-items
So even if the number of items change?
not sure what you mean
I mean if i update my subscription that before has 2 items associated (prices) and now it will have 3 items associated (prices)
Because I want to make like an Addon's functionality
So customer can order more services
you pass items:[{price:"price_xxx", quantity:1}] for example, that adds a new item with that price
Nice but I mean there is no restriction if the number of Items change?
what sort of restriction are you worried about?
If i incorporate a lot of prices that maybe i have to put the same number of prices
Okey