#toki_webhooks
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/1220104620337270827
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
So beyond 3 days, they won't be re-tried?
Correct
You could manually resend them yourself
But they won't be retried automatically
Gotcha, so are there any recommendations to retry?
Since I believe there may be like >100 data within 5 days that are missing
Should I use Stripe Postman API to find all failed statuses and retry them? Or is there somewhere in the dashboard to retry all failed webhooks
To find out which ones failed you want to list your Events using https://docs.stripe.com/api/events/list and look at the pending_webhooks property: https://docs.stripe.com/api/events/object#event_object-pending_webhooks
Then to resend them you would use the CLI: https://docs.stripe.com/cli/events/resend
pending_webhooks is a number? What does that represent sorry, would it be the amount of webhooks for that one event that is waiting to be recalled?
It is the amount of endpoints that the Event was attempted to be sent to that were not successful.
Ok gotcha, makes sense
So if you only have one endpoint set up, then it would be 1 if it failed to be delivered and 0 if successful.
So, if the pending_webhooks is 2?
Then there are two different Webhook endpoints that did not receive the Event successfully
ah ok gotcha
yes, makes sense
alright, so i'll have to call the API to list all events, and to also resend them through the CLI
Yes
thank you
Sure