#lola_cleo-events-undelivered
1 messages ยท Page 1 of 1 (latest)
evt_1KeIJJEeIjOEAdbpQXh3v2LO
What makes you think it wasn't delivered? We received a success response from your webhook handler
Ah, wait. That's the CLI
To be clear, that field has no relevance to the delivery state of the webhook event
It's actually on the Invoice object: https://stripe.com/docs/api/invoices/object#invoice_object-webhooks_delivered_at
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
hmm so what does delivery_success check for when we retrieve events?
It checks to see if the event was delivered successfully. There's no API field for that
but in this case that event was not delivered to the endpoint right? So it should come up in the when I query for events using this - Stripe::Event.list({delivery_success: false}), but it doesnt :/
Some actions in my app that should have been done after receiving the invoice.paid webhook, havent been done so I thought it might not have received - let me check again - thanks ๐