#DeputyCheese

1 messages ยท Page 1 of 1 (latest)

gray oarBOT
silent raptor
#

I'm unsure if keep_as_draft, void or mark_uncollectible is the correct value for pause_collection here

tidal turtle
#

Hello ๐Ÿ‘‹
If you want to pause it after current billing period then I believe you can use a subscription schedule for that. You'd likely want to build a phase that pauses the collection.

I believe you'd want to use mark_uncollectible behavior as you don't want to collect the payment later

silent raptor
#

Thanks for your help

#

We are not using subscription schedules

#

But can't we just use pause_collection->behavior->mark_uncollectible for pausing

#

And pass an empty pause_collection to activate it again?

tidal turtle
#

you can but you said you wanted to pause it after the current interval expires right?
You can only "schedule" stuff in advance using subscription schedules.

silent raptor
# tidal turtle you can but you said you wanted to pause it after the current interval expires r...

Yes, but I'm not sure what exactly you mean by that. When I change the pause_collection to mark_uncollectible, the subscription won't get renewed and I won't get an invoice.paid event for it after the current interval has ended, right?
Fyi: we keep all the subscription status on our side and use stripe only for the payment, not for invoicing etc. so no user will use anything from stripe directly.

tidal turtle
#

Yes, but I'm not sure what exactly you mean by that. When I change the pause_collection to mark_uncollectible, the subscription won't get renewed and I won't get an invoice.paid event for it after the current interval has ended, right?
Yes that's correct

Fyi: we keep all the subscription status on our side and use stripe only for the payment, not for invoicing etc. so no user will use anything from stripe directly.
Yeah that's the context that I was missing ๐Ÿ™‚ In this case you don't need to use schedules then

silent raptor
#

Ah great, thank you very much

#

Last question: how can I add a discount to a subscription renewal but only for the next payment? I.e. the user has a monthly subscription plan and we want to give him a 10โ‚ฌ discount for his december payment, but it should fall back to the previous price on January + the following months? Is there a way to pass a (custom/invidiual) discount in โ‚ฌ to the subscription without creating it in the stripe dashboard?

tidal turtle
#

The other option would be to create a negative one-time invoice item

tidal turtle
#

yup there's that but you'd need to create a coupon per custom discount I think

Is there a way to pass a (custom/invidiual) discount in โ‚ฌ to the subscription without creating it in the stripe dashboard?

silent raptor
#

Okay thank you!