#karishma1642
1 messages · Page 1 of 1 (latest)
Instead of creating a Subscription with a short trial, you can create a Subscription Schedule that starts immediately (start_date: now) https://stripe.com/docs/api/subscription_schedules/create#create_subscription_schedule-start_date
This will immediately create a Subscription where the first Invoice is still a draft and you can add all the line items you need
so we can create an invoice with our product price, and while its in a draft, we can add several line items via the api?
sounds good, ty!