#0xl34n_subscription-pause
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/1238146861307789435
đ 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.
- 0xl34n_api, 2 days ago, 22 messages
Hi, that depends on what you want. You can read more about it here: https://support.stripe.com/questions/how-to-pause-payment-collection-or-cancel-subscriptions. You can keep the invoices as drafts, if you want to offer services but want to delay payment collection.
Oka, how can i pause the subscription and how can i resume that subscription if the user need it?
We have some example code here: https://docs.stripe.com/billing/subscriptions/pause-payment
You can use our Update Subscirption API and pass the following attributes:
{
pause_collection: {
behavior: 'keep_as_draft',
},
}
Can you try this?