#MarkoBoras
1 messages · Page 1 of 1 (latest)
do you need maybe event id to check it
Hello! You can check the pending_webhooks property on an Event to see if it hasn't been delivered successfully yet: https://stripe.com/docs/api/events/object#event_object-pending_webhooks
You can also open the Event in the Dashboard to see specifics regarding each Webhook Endpoint and pending retries.
You should add logic to your system to handle duplicate Events; that's something that happens from time to time.
Go into the Dashboard and put the Event ID in the search at the top.
You would need to write code to do that. The specific implementation depends on your environment and business needs.
ok I went in dashboard and I am on event page
where can i see
evt_1NECv3LOgsxKeN5yChkDTrzq
Do you have some documentation for duplicate events handling
We have some documentation here: https://stripe.com/docs/webhooks/best-practices#duplicate-events
The screenshot shows two delivery failures and two successful deliveries for this Event. Looks like one of the successful deliveries was a result of you manually resending the Event, which is indicated by the little circle/arrow icon next to the second one.
Manually retrying delivery won't stop already-queued automatic retries, which is why you got this Event twice.
will it trigger again?
This Event shouldn't send again, no. The manual retry you initiated and the automatic retry both succeeded, so this Event is considered delivered by our system now.
Ok thanks