#Is there a way to get list of accounts
1 messages · Page 1 of 1 (latest)
Hello! There's an Enabled tab in the Dashboard that I believe will show you the list of accounts you want: https://dashboard.stripe.com/connect/accounts/overview?sort_field=created&sort_direction=desc&connected_merchant[status]=enabled
I want this list using API
You would need to list all connected accounts and filter them using logic on your end: https://stripe.com/docs/api/accounts/list
I recommend using auto-pagination if possible: https://stripe.com/docs/api/pagination/auto
There will be like 15k accounts +. There is no filter we can add when we make api call?
No. You would need to retrieve them all if you need to do this strictly via the API.
Does it make any webhook call alerting that account needs additional document when it reaches 10k threashold?