#mathieu_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/1318238451715280950
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi ๐ taking a look at what you shared, but can you elaborate on what you mean by "planify"?
I'm confused because the request that led to the Event you shared wasn't made form the dashboard, it was made from your Go codebase. So I'll need more context on what you mean you say "planify". If you have an example request of the change the dashboard is making that would be helpful.
Hello, it's this one https://dashboard.stripe.com/test/events/evt_1QWgC8Deg55eSBYjq4J9qBet
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Seems like that's a request to update a Subscription Schedule.
When I update a subscription with API https://docs.stripe.com/api/subscriptions/update how can I schedule the update ?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
You create a Subscription Schedule for the Subscription, and then update the Subscription Schedule to schedule a change for the Subscription it's driving:
https://docs.stripe.com/billing/subscriptions/subscription-schedules
https://docs.stripe.com/billing/subscriptions/subscription-schedules/use-cases#existing-subscription
Thank you