#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/1283684999471828993
đ 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, 6 days ago, 38 messages
- taviksha-akar_api, 6 days ago, 12 messages
hello! Can you explain what do you mean by auto collection off? Do you mean auto_advance=false?
Auto collection off means I want to create a scheduled subscription without taking its payment and create its invoice with due amount and later on When i add card to the subscription then those invoices get paid
Can you explain your use case here? Typically, you would want to already have the payment method and then when the invoice is generated, Stripe would automatically attempt to charge the default payment method
if you want to stop the automatic collection of the invoices for a period of time, then it sounds to me like https://docs.stripe.com/billing/subscriptions/pause-payment is what you're looking for. If you're using subscription schedules, then you would need to wait for the subscription to be created, then update the subscription to pause it. The subscription will be active. I'm not entirely certain if this is the exact behaviour you're looking for so you should test it to be sure
What is collection_method to send_invoice? Is it will create due invoice ??
collection_method="send_invoice" will email a link to a hosted invoice page for the user to pay
Actually I want to create a subscription without taking its payment using card.
so like what you mentioned
I want to create a scheduled subscription without taking its payment and create its invoice with due amount and later on When i add card to the subscription then those invoices get paid
I replied saying
if you want to stop the automatic collection of the invoices for a period of time, then it sounds to me like https://docs.stripe.com/billing/subscriptions/pause-payment is what you're looking for. If you're using subscription schedules, then you would need to wait for the subscription to be created, then update the subscription to pause it. The subscription will be active. I'm not entirely certain if this is the exact behaviour you're looking for so you should test it to be sure
Have you tried what I suggested?