#robin-deans_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/1361532205272141896
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
hello! There's no "copy" feature if that's what you're asking, you'll need to do it from scratch again
I've never done it, it was set up by someone who left the company - I'm happy to do it manually, but I'm having trouble finding the details of the configuration as far as what events were selected for each webhook
I believe we have several different webhooks configured
They need to be exactly the same
Can you share your account id so that I can take a look? You can find your account id by logging in to https://dashboard.stripe.com/settings/account. It'll have the prefix acct_
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
acct_198ihJC8BbUGBa9j
this is the one with them all set up
they're all linked to Workato recipes which we then connect to Workday Prism
hmmm, i think it'll be easier for you to do this via the API, you can retrieve a list of endpoints using https://docs.stripe.com/api/webhook_endpoints/list, and then create the endpoint with https://docs.stripe.com/api/webhook_endpoints/create on your new account
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I'd like to do it exactly the way we did it before as I'm not a developer
and we're using an IPAAS software that works with the webhooks
but if that is the best way I will pass this on to our integration team.
Is there a way to export what we were calling so we can easily recreate?
Or that's what you're saying above?
That's what I was saying above. I think you have no choice but to use the API really. To clarify why, your application is currently using Java which is a strongly typed language - the API version set for webhooks must match the version used in the SDK. Ensuring these versions match is crucial for the successful deserialization of the event object.
you will need to create the webhook via the API if you want to explicitly define a version : https://docs.stripe.com/api/webhook_endpoints/create#create_webhook_endpoint-api_version. Itโs not possible to do so via the Dashboard.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
got it. I think. I'll work with the integration team on the api's which is beyond my skill set.
but maybe i'm mistaken and your application isn't processing the webhooks using Stripe's Java SDK, and instead is routing this to another application where the API version doesn't matter
I think the latter is true
best to check with your developers
unfortunately a lot of this knowledge was lost recently
well, i mean, it'll probably pop out as an error ๐ when you try to process your webhook and it doesn't work. The SDK typically throws an error saying the API version is different
my question is what is in the webhook
you can either get that via the API, or if you want to do it via the Dashboard, click into the webhook endpoint e.g. https://dashboard.stripe.com/webhooks/we_1NG43nC8BbUGBa9jOGOHS3FX
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
so when I go to select events, which events do I select, to make it the same events as the Nextdoor US1 webhook
you can hover over the listening for and you'll see this
I don't see the listening for
oh listening to?
Aha! I think we're onto something.
thank you so so much!
ah yeah, listening to, sorry about that