#LST
1 messages · Page 1 of 1 (latest)
One subscription can have multiple products with same billing interval and currency: https://stripe.com/docs/billing/subscriptions/multiple-products#restrictions
In your case which the billing intervals are different, 2 separate subscriptions have to be created and can only be checkout separately
Do you know if there's any way to achieve my goal then?
Hi! I'm taking over this thread.
I see two options:
- Have two separate subscriptions: one yearly and one monthly
- Or, have a monthly subscription, and manually on your end add an invoice item to the subscription once per year https://stripe.com/docs/api/subscriptions/update#update_subscription-add_invoice_items
Okay thanks, I will think about it!