#ravinder_api
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/1232939756870963241
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Will it create a subscription in the future of each phase?
Yes! It will create a subscription accordingly to the timestamp set
which webhook should I use to get the subscription ID?
You can listen tocustomer.subscription.createdevent for the newly created subscription
In Webhook does Stripe provide a parameter that references the subscription schedule ID?
How will I know that subscription I create by subscription schedules?
You will find Subscription Schedule ID from schedule field in the Subscription object: https://docs.stripe.com/api/subscriptions/object#subscription_object-schedule
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Will it create a subscription in the future of each phase?
Yes! It will create a subscription accordingly to the timestamp set
That means a subscription can be connected to multiple subscriptions. For a customer new subscription will be created from the subscription schedule when existing subscription is either canceled or completed as per the phase config. Did I understand correctly?
Only one Subscription will be created from a Subscription Schedule. If a Subscription Schedule has multiple phases, the changes on each phase will be updated on the initial subscription created
that make sense
one more question,
If i want to pause subscription or cancel it early do i have to make change to subscription or subscription schdule?