#morenomdz
1 messages ยท Page 1 of 1 (latest)
Hello ๐
Are you trying to look up specific requests? Or just the accounts?
I don't think we have any endpoints that can look up specific requests/logs
one sec
Basically we need to find all accounts that had this updated so we can contact them
hmm, the only way I can think of is to query account.updated event
https://stripe.com/docs/api/events/list
and then iterate through all the events to find the ones that match those conditions
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ouch that will be impossible : /
can I query based on the fields listed there? Like get all accounts where the w9 at days is in the future
The list all accounts API doesn't accept those parameters today unfortunately
https://stripe.com/docs/api/accounts/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I see, ill try to fetch all accounts and parse it locally then : /