#dammyola
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. 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.
- dammy-price-amountupdate, 2 hours ago, 19 messages
- dammy-sct-amount, 5 days ago, 24 messages
The default behavior is that we would keep charging on the 5th but you can change it to cycle on different days of the month. More info in this doc https://stripe.com/docs/billing/subscriptions/billing-cycle
How does the billing work if the customer pauses their subscription? For example, if their billing is on the 5th of every month, but they've paused until the 10th of the following month. When would be their next collection, or when next will they be charged?
Depends on what you mean and how you are using it. For example the thing that Stripe calls pausing a subscription is typically initiated by the platform to indicate things like being unable to provide your services https://stripe.com/docs/billing/subscriptions/pause
But basically that depends on what you pass for billing_cycle_anchor when updating yoru subscription and whether or not you create prorations for the update. https://stripe.com/docs/api/subscriptions/update#update_subscription-billing_cycle_anchor
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
We have a gym platform, when members are going on holiday, they will want to pause their membership/subscription for that period when they are away. Is there a way to pause the membership and only be charged automatically after the pause period?
I think that cancelling the subscription, creating a record on your side that it is a pause, and creating a new subscription when they get back would be the most straightforward way.
Looking at our pause behavior, it might work when keeping the same subscription, but as best as I can tell paused subscriptions stay in an active status so that may be weird to handle.
https://stripe.com/docs/billing/subscriptions/pause