#hpanseriya_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/1402637743892332577
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
๐ happy to help
great
Hi Toby
we introduced these breaking changes https://docs.stripe.com/changelog/basil/2025-05-28/partial-payments
to allow for partial payments on invoices
@raven vigil will answer any follow-up question you have
Hi there ๐ yup as @wicked sparrow this is an expected change. Our Basil versions include multiple breaking changes that require integration adjustments in order to implement them.
This was changed in version 2025-03-31.basil and we discuss this change along with how to handle it here:
https://docs.stripe.com/changelog/basil/2025-03-31/add-support-for-multiple-partial-payments-on-invoices
Which API we need to call when stripe webhook call to get the invoices of the specific payment intent
This section of the linked guide shows that:
https://docs.stripe.com/changelog/basil/2025-03-31/add-support-for-multiple-partial-payments-on-invoices#use-the-new-for-payments-and-invoice-connection
We are not allowing the partial payment BUT we want to still use latest version of basil. Is there any way to do it?
I'm not really sure what you're asking. Basil introduced breaking changes needed to support new features that are being added, whether you use those new features or not, you still need to adapt to the changes introduced in these newer versions if you're going to use.
Basil does include a lot of breaking changes though, if you aren't going to use the features it introduces, it may not be worth the lift to switch to it.
Is it possible to upgrade the version to 2023?
You can set your desired version when initializing our SDKs:
https://docs.stripe.com/api/versioning
Then to ensure webhook endpoints receive Events using that same version, you can create a new webhook endpoint that is pinned to the API version you're using in your SDK:
https://docs.stripe.com/webhooks#api-versioning
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
which is ok but we also want to upgrade it from stripe dashboard
The Stripe dashboard does not allow you to choose what specific API version to use, it only allows you to change the default API version of your account to the whatever our current API version is.
ok