#manny_manny_2023
1 messages · Page 1 of 1 (latest)
Hello! No, that's not possible. Future periods would generate separate Invoices. What's your use case?
we are creating a subscription and through spring boot scheduler if the items are within current cycle are are adding them as soon as the subscription update webhook calls, but still those items are going to next upcoming invoice, we want them in the current invoice only
You can add Invoice Items to the draft Invoice by specifying it in the invoice property: https://stripe.com/docs/api/invoiceitems/create#create_invoiceitem-invoice
Would that work for what you want to do?
we are adding Subscription Items to subscription
Those will only show up on a future Invoice then.
if the invoice has not been finalized yet for the current cycle can we somehow update it with the added items?
You can add Invoice Items to it, but you can't add Subscription Items to it.
ok if we add invoice items to it how to remove invoice items for the future invoice?
You would likely need to modify the Subscription. You could remove the items, set a trial period, or use a Subscription Schedule to alter future phases.
Hi
hey there, do you have further questions?
if i add the items in the phase of subscriptionschedule before it starts they will come into the current invoice only right?
Can you rephrase that? or explain more specifically what you're trying to do?
so what we are trying to do is lets suppose there are 5 items to be added to subscription when it starts right now we are using subscription schedule and its creating subscription and through update webhook we are adding the remaining 5, and these 5 added through webhook coming in next invoice, we are want in current invoice so if we add them through the phase of subscription schedule all 5 items, it will allow to be invoice in the first invoice only right instead of upcoming invoice
You can't add subscription (recurring) items to an existing draft invoice, but you can add one-off items before finalization
Are you trying to add recurring items to the subscription, or one-off items to the invoice?