#xaositect
1 messages · Page 1 of 1 (latest)
We discovered a defect in our application code where we were not emailing vendors regarding failed payouts over a period of time and I'm trying to get a handle on... how many such events we need to clean up.
Gotcha. Well you can list Events of a certain type from the past 30 days using https://stripe.com/docs/api/events/list#list_events-type
So you likely want to loop over your Connected Accounts and list payout.failed
Hmmm... okay, thank you.