#schavan_code
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/1394581239331160065
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hi there, could you elaborate more on the "healthcheck" you mention? What specific information about Stripe API are you looking for?
we do have https://status.stripe.com/ if it helps
I need something that can be run and executed from jenkins, like in automated manner
hi! I'm taking over this thread.
you could make a GET request (like retriving a customer). if you get a successful response, you know the API is working.
I have an endpoint of stripe does the ping and respond, but it needs sk key for authorization. Can you check if we can call this endpoint without key
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 always need an API key. but why is that an issue?
also the link you shared is specific to Event Destination, so I don't think that's what you are looking for.
what is event destination and what is the other way to perform healthcheck using automated system.
We usually perform healthcheck to perform to check any API is UP and running.
what is event destination
a way to send webhook events to AWS.
what is the other way to perform healthcheck using automated system.
I already answered that question above:you could make a GET request (like retriving a customer). if you get a successful response, you know the API is working.
Ok, but for your suggested approach we need to enter clients credentials to execute cutomer API.
we are running health check using automated jenkins jobs.
wait, there's this endpoint that doesn't need an API key: https://api.stripe.com/healthcheck
right now this link is showing "Up", what will be shown if stripe will be "Down"
not sure, sorry, this endpoint is not publicly documented.
Ok, If this API is showing "api.stripe.com at your service! What can I do for you today? (Up)" , we will consider it as all api's are Up and Running. If anything other than Up we will consider it as something wrokng with stripe API's .
makes sense