#0xTypedef
1 messages ยท Page 1 of 1 (latest)
These are from the same person
Hello ๐
Can you share the event ID?
All of them is "billing_reason": "subscription_create"
evt_1MmEZdG9HH8weSRwbg95nGG8
all same id
Ah the deliveries are timing out. We're not getting a 200 response from your endpoint.
So we're retrying to deliver it
if you open the event view, you should be able to see the attempts at the bottom
https://dashboard.stripe.com/events/evt_1MmEZdG9HH8weSRwbg95nGG8
it seems like it actually went through because their points updated
hmm you'd want to take a look in your server log to figure out why these deliveries are timing out
Is there a way to view the error?
I have a res.status(500).send(Webhook Error: ${msg});
inside a catch in a try/catch
yeah I don't think our logs would have that info as we didn't receive a response from your webhook.
We waited for a response and then timed out.
does the webhook send request other than post?
No, just the POST
hmmm, weird okay
is there a way to stop retry?
OHH maybe because im not returning a status
when its succesful
ah yeah that could be it. We expect a 200 response
๐ glad you figured it out
Thanks!
is this possible?
No ways to stop the retries unfortunately
You may be able to delete and re-add the webhook but might want to use a slightly diff URL
okie thanks