#taviksha-akar_api

1 messages ¡ Page 1 of 1 (latest)

obtuse ospreyBOT
#

👋 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.

deft yew
#

hello! Can you explain what do you mean by auto collection off? Do you mean auto_advance=false?

round lagoon
#

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

deft yew
#

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

round lagoon
#

Yes I want to stop the automatically collection of invoice.

#

hello there?

deft yew
#

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

Learn how to pause payment collection on subscriptions.

round lagoon
#

What is collection_method to send_invoice? Is it will create due invoice ??

deft yew
#

collection_method="send_invoice" will email a link to a hosted invoice page for the user to pay

round lagoon
#

Actually I want to create a subscription without taking its payment using card.

deft yew
#

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?