#madmark00178_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/1215410425441550438
📝 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.
- madmark00178_unexpected, 20 hours ago, 32 messages
- madmark00178_unexpected, 1 day ago, 8 messages
I think you might be looking for this: https://docs.stripe.com/api/events/list#list_events-delivery_success
use the Events List API with delivery_success=false and an appropriate created[gte] timestamp filter
https://docs.stripe.com/api/events/list#list_events-created-gt
Thanks I’ll check it out!
It looks like if an event eventually delivered successfully it won’t be listed is it possible to view events even if they only failed once
You'd need to remove the delivery filter then and iterate for the expected events (using type to filter, perhaps) and examine the pending_webhooks for incomplete delivery: https://docs.stripe.com/api/events/object#event_object-pending_webhooks
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.