#yurtdweller_api

1 messages ยท Page 1 of 1 (latest)

gaunt isleBOT
#

๐Ÿ‘‹ 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/1431264639177461781

๐Ÿ“ Have more to share? Add more details, code, screenshots, videos, etc. below.

Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

outer dew
#

This is what I mean:

export const stripe = new Stripe(secretKey, {
apiVersion: '2025-03-31.basil' as any,
typescript: true,
});

thick hound
#

๐Ÿ‘‹ Hi there!

outer dew
#

Hi arran!

thick hound
#

There shouldn't be any problems with sending out requests using a newer Stripe API versions

#

Your existing webhooks will still receive events that match their configured API version (2022-11-15)

outer dew
#

I also receive webhooks to this new application and process them for accessing the data in the events using the Stripe library. Is there anything discrepancies for what is being sent to the app in webhooks if the dashboard shows 2022-11-15 ?

#

So this new application also receives webhooks and also sends new requests to stripe

gaunt isleBOT
outer dew
#

Hi ๐Ÿ‘‹

arctic fog
#

Hi there, taking over for @thick hound as they had to step away

#

This part of the documentation describes what happens in this situation
https://docs.stripe.com/webhooks#api-versioning

For example, if your account is set to an older API version, such as 2015-02-16, and you change the API version for a specific request with versioning, the Event object generated and sent to your destination is still based on the 2015-02-16 API version

outer dew
#

Thanks!

arctic fog
#

So as @thick hound mentioned, your existing webhooks will still receive events, but if the shape of the objects change between API versions it can sometimes cause a mismatch that you need to be aware of