#alex-subscription-pause
1 messages · Page 1 of 1 (latest)
Hello! It depends on what you mean by "pausing"
If you're referring to this (https://stripe.com/docs/billing/subscriptions/pause) then you'd do this through Subscription updates and you can set the specific timestamp you want it to resume (https://stripe.com/docs/api/subscriptions/update#update_subscription-pause_collection)
Will this delay the shipment until the specified date?
Hey @random ice what do you call "delay the shipment" exactly?
alex-subscription-pause
So if a customer was signed up for a recurring monthly subscription, and the customer wanted to pause the shipment for this month, we would want to delay the shipment so that it is sent out for next month instead of this month.
We don't really have any notion of "shipment" in our API. So I'm struggling a bit to grasp what you are describing. Are you the developer of the code here?
Let's say a customer is on a monthly subscription for tea bags. This month, they still have a lot from last month's (April) subscription, so they request this month (May) to pause the subscription until next month (June).
Is there a way to pause the subscription until next month?
so that the customer is not sent anything this month (May).
We don't really have a "pause" behaviour in the API unfortunately. There are ways to work around this depending on what you really want. That's what pause_collection mentioned above can do by automatically voiding their May Invoice for example
So would voiding the invoice prevent anything from shipping this month?
I'm sorry, we do not do any shipping logic. Nothing like this exists in our product or APIs around Subscription and shipping. That's why I'm trying to explain this is fully on your end. Something in your own system/app/code is doing the shipping part and that something would need to handle all of this
Will this prevent subscription orders from being sent out or only prevent payment collection?
We don't have "subscription orders"
I'm really sorry, I don't really understand the vocabulary you use so it's tough to help here. Are you the developer of the system yourself?
We're a third party integrator. Usually our clients will use like a Shopify for their store and if they have subscription products then they will use like a Recharge or Ordergroove or Stripe.
then those questions would be directed to that third-party and how they integrate Stripe Subscriptions in their own system(s)
So does Stripe subscriptions only work in conjunction with places like Shopify or is it a standalone system? Here's an example endpoint in Recharge( https://developer.rechargepayments.com/2021-11/subscriptions/subscriptions_change_next_charge).