#taviksha-akar_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/1290932881153196103
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- taviksha-akar_api, 4 days ago, 7 messages
- taviksha-akar_api, 5 days ago, 6 messages
- taviksha-akar_api, 5 days ago, 12 messages
- taviksha-akar_api, 6 days ago, 14 messages
Could you share the use case why you wouldn't like to stop the first invoice from created? Subscription schedule will always create the first invoice once the subscription starts
Actually we need to migrate subscriptions to stripe panel which are already active. So we are passing current date in the first phase and setting end date as the next billing date.
So the payments are already been taken before the next billing date period. So we don't want to take the first invoice to be created as we have already taken payment.
In this case, I'd recommend using Subscription with backdating and billing cycle anchor feature with proration_behavior: 'none': https://docs.stripe.com/billing/subscriptions/backdating?dashboard-or-api=api#backdating-billing-cycle
This will allow you to create a subscription that bills in the next billing date without creating an invoice
But I need to create some phases also for future billings
Could you share how a request (req_xxx) of your subscription schedule creation, so that I can take a look how your integration works currently?
https://dashboard.stripe.com/test/subscription_schedules/sub_sched_1Q5MpaDXbBgsniVWd7YBnVZi
this the the subscription, here we have passed the next billing date in first phase start date
But instead we want to pass the actual date of subscription in subscription starts and next billing according to the migration orders next billing date.
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
And don't want to create invoice till next billing date
https://dashboard.stripe.com/test/subscriptions/sub_1Q5Mu3DXbBgsniVWCM8xNTaE
this is where we pass the start date with the actual date(date is in past) but it is showing next billing date wrong which I have not passed in end_date and taken invoice payment of oct2 - nov2 why?
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Take https://dashboard.stripe.com/test/subscription_schedules/sub_sched_1Q5Mu3DXbBgsniVWmaBBvOWo as an example, what is your expected start date and when should the customer be billed?