#henry_90735
1 messages · Page 1 of 1 (latest)
Hi there, what's the event ID?
Hi, the event id is as such: evt_1OAorgDCgU75ZiBUNaJ9MZjg
Ok, this event happened more than 15 days ago, so you can find the webhook delivery records in dashboard anymore.
https://dashboard.stripe.com/events/evt_3OHKsfDCgU75ZiBU0NxwJVuG this is one of the recent events, and it has been successfully delivered to your local webhook
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Hi, sorry I am not quite following what you mean. This event that i resend is indeed an event that happened more than 15 days ago (10/11/23 to be exact). What i am trying to accomplish is to set a breakpoint in my local environment code and forward the hosted endpoint in my live environment to the local listener. The event i am resending doesn't seem to be forwarding to the localhost. Can you help me check if this event in particular is sending to the localhost
The event that you are showing isn't the painpoint I am talking about
Is there a way I can check that the event is actually forwarded to the said local listener?
You can view the webhook attempts for event occurred within 15 days. I'd suggest you to generate another event and check your currently running localhost endpoint.
I need to work on this particular event as its the problem at hand. I just resend the event and see that the webhook has indeed attemped to send and got a 200 response. However I am not seeing it forward the request to my local listener. How can I check that the request is indeed forwarded to the local host from stripe end? i am indeed running my localhost endpoint as I am able to run the above scenario in test environment
Hi did you just try to trigger a event evt_1OHLQKDCgU75ZiBUnXifMjW5
If you did then I am actually able to debug it
To clarify, you want to resend an event to a localhost endpoint?
Yes, I want to resend an live event to a localhost endpoint
not test event but live event
Why? localhost endpoint is for development purpose only.
In fact, you should run local endpoint in test mode during development.
And what's the problem at hand that you want to solve?
Hi, I would like to share with you my problem at stake so you have more context to better understand my issue. Basically what my endpoint is doing is it is listening to a payout.paid object and inserting the payout transaction and all its correlated charge transactions into another table. What we noticed is there are instances where not all the charge transactions are inserted into my table. I am not facing this issue in test environment which brings me to the point where I am trying to debug it in live environment to check what is going on. I need to check the list of balance transaction is indeed the number of balance transaction tagged to this payout. The limit isn't over 100 so i am not too sure whats going on hence me diving to live env and forwarding to the local code