#rian_api
1 messages · Page 1 of 1 (latest)
👋 Welcome to your new thread!
⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1339263640372773008
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Oh no that's a limitation of the portal. See: https://docs.stripe.com/customer-management#customer-portal-limitations
Multiple products```
Here's my scenario: I have a product, and I wish to have an add-on with synced billing cycle, so if I cancel the product, then the add-on should be canceled as well. So that means I cannot update the base product either if the subscription has an add-on? I guess I should create two separate subscriptions then and somehow have their billing cycle synced, but can I have a checkout session with two separate subscriptions? I guess not right since it returns a single subscription id
Yeah I think the customer portal doesn't really fit your use-case
You'd have to build a custom page
Ok thanks, and I would just add the price via the update subscription endpoint? Would I have to pass in the original item + the new one when updating
Oh if adding an item, you'd use this endpoint: https://docs.stripe.com/api/subscription_items/create
oh great, didn't know that existed, thank you very much!