#viral-coach_code
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/1331386849842692201
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi there, sorry for the delay
So just to be clear, you want to update a PaymentLink and have that update automatically change already-existing Subscriptions that were created using that PaymentLink? That's not possible
Hey there! Got it, let me rephrase
rather than payment link, I have a product set up as a subscription, prod_Rd54RX9xfzI21s
is there any way to make sure every subscription created related to this product has a limited interval of 2?
What do you mean exactly by "limited interval of 2"?
I only want to bill month 1 and month 2, and then stop billing
No, this kind of schedule is not possible to configure on either the Product level or the Price level. You'd need to either create a Subscription and then update it to cancel it on a specific date/time (down to the second) or use SubscriptionSchedules: https://docs.stripe.com/billing/subscriptions/subscription-schedules#completing-schedule
But subscription schedule is only on a per indivdual customer basis right?
After they have purchased, when then have to go back and update their subscription schedule manually?
I don't quite follow your questions. A Subscription can be managed by a SubscriptionSchedule, and that schedule can be used to define the number of times a customer is billed before the Subscription is canceled, for example
I guess I'm trying to understand if there is any programatic way to set all subscription schedules for subscriptions made through the same price/product/payment link, or if subscriptionschedule can only be set individually for each subscription that is created
like I have 5 customers make a purchase of prod_Rd54RX9xfzI21s, can I do anything to make sure all 5 subscriptions have that 2 month interval subscription schedule, or do I have to go in and do "stripe subscription_schedules create" five separate times?
No, you'll have to make 5 separate requests here
ah dang, well thank you for confirming