#liodegar-webhooks
1 messages · Page 1 of 1 (latest)
Hi @unique vector! If the events are less than 15 days old, you can resend then manually from the dashboard webhook page (there's a "resend" button next to each event).
You can also use the Stripe CLI to resend events less than 30 days old https://stripe.com/docs/cli/events/resend
The problem is that these events were not received by the webhook because we have just started listening to them. I can see them in the Events logs, but not able to resend them
I see, in that case you could list all events that happened on your account for the last 30 days with this: https://stripe.com/docs/api/events/list and then process them on your end.
You mean, by manually calling the endpoint with the given payload?
I recommend retrieving the invoice.payment_succeeded events with https://stripe.com/docs/api/events/list
And then directly process these events on your end as if they came from a Stripe webhook.
ok, thanks