#arjunb-payout-help
1 messages · Page 1 of 1 (latest)
hello
can you clarify what you mean? what's bulk? What are you really trying to do/ask?
so we have payout status
for each stripe connected account
like enabled , restricted
etc
so i have to do for more than user ,, like say 10 at a time
is it possible
damn
you mean payouts_enabled on the Account API right? or you mean manually in the Dashboard?
sure but what exactly are you trying to do? Write code to do this, or manually do this in the Dashboard?
payouts restricted
I'm sorry, can you just pause and explain in one complete sentence what you are trying to do?
https://stripe.com/docs/api/accounts/list is how you list your connected accounts and for each one you can look at their charges_enabled or payouts_enabled
you have to paginate, see https://stripe.com/docs/api/pagination for more details if you want more than 10 accounts
yes
not sure what that could mean
i think you are not understanding the question
Suppose i want to find out 123,124,125 are three accounts
whats their payout status
how do i do that?
i want response like 123-enabled
and 124-restricted
125-restricted
etc..
account ids are acct_123
so for each one you use https://stripe.com/docs/api/accounts/retrieve and you check their payouts_enabled
you do them one by one
or you use https://stripe.com/docs/api/accounts/list and you cache the information in your database
the data of what?
123,124,125
I'm sorry Arjun but this is really unclear with really short sentences not saying much. Can I ask you to provide more context, if possible one entire response together showing what you are doing and what is blocking you
this is the context
Suppose i want to find out 123,124,125 are three accounts
whats their payout status
how do i do that?
i want response like 123-enabled
and 124-restricted
125-restricted
I already responded exactly to that question though
You call the Retrieve Account API: https://stripe.com/docs/api/accounts/retrieve for each account separately
I understand what you want. But it's impossible. So you have to work with what is possible. You either check each account. Or you instead ingest all accounts (via the earlier method I already explained with pagination) and you cache all of this in your database
I don't know of a specific video no. And I did give you the exact docs link for both options
ok ty
I'm happy to help further if you have a specific/clear question about what is blocking you exactly
yes. feedback for your team is come up with such a req/resp
including filters
this is nuts!
good