#niceone_api
1 messages ยท Page 1 of 1 (latest)
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.
- niceone_api, 1 day ago, 18 messages
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1255444487849902151
๐ Have more to share? Add details, code, screenshots, videos, etc. below.
so basically currently our system works with 2024-04-10 version, but we cannot update api version in dashboard to 2024-04-10, as couple days ago new version was introduced (2024-06-20); is there any way of updating to 2024-04-10 on stripe dashboard?
or we have to in hurry update our system tot use java library that corresponds to api 204-06-20?
Why you want to update your Stripe version in Dashboard ?
Since Java is strongly typed, the version is fixed in the library.
And for webhook endpoints, you can specify a specific version when registering an endpoint
๐ taking over for my colleague. Let me know if there's any follow-up Qs I can answer!
the thing is that we used old api 2021-XXXXX now we updated our code to work with api 2024-04-10
so we would need to update version of api in dashboard to be alligned with java version
but we cannot do this, there is only a optiion ot updated to the newest one which is 2024-06-20
when we were working on the changes on our side the latest one was 2024-04-10
so we would need to update version of api in dashboard to be alligned with java version
Yes I understand this, but why you want to align it? you can use other API version other than your Stripe Dashboard version.
Ok in all cases, you can reach out to Stripe Support and ask to downgrade/upgrae to a specific Stripe API version other than the latest one: https://support.stripe.com/contact
how we can use oher version?
when we receive event we call EventDataObjectDeserializer dataObjectDeserializer = event.getDataObjectDeserializer(); and this does not work we version is different
when we receive event we call EventDataObjectDeserializer dataObjectDeserializer = event.getDataObjectDeserializer(); and this does not work we version is different
You need to create the webhook endpoint with the API version pinned with the Java SDK you are using:
https://docs.stripe.com/api/webhook_endpoints/create#create_webhook_endpoint-api_version
ok thank I will try
let me know if you need any more help