#accua
1 messages · Page 1 of 1 (latest)
Are you asking how to create multiple exsternal accounts for one connected account?
I’m asking if it’s recommended modeling.. I understand it can be done, however I’m not sure if it’s the way that stripe intends them to be used. It would make sense that a user would manage KYC data through a stripe account, and bank accounts would be a separate thing but I haven’t seen anywhere in the docs yet that make it clear for managing multiple external bank accounts in the same currency for a single user
what connected account type are you using? If you're using custom connected accounts, it's normal to manage multiple external bank accounts in the same currency.
Yeah they’re custom.
We’d need to create transfers based on specific groups of other models. So group A will all point to bank account A, and group B will all point to bank account B
Trying to figure out the best way to set that modeling up in stripe and seeing that it’s possible to do.. but there might be some complexity in managing the “default_for_currency”
you would implement that logic in your own application
Well yeah of course
from Stripe's end, you would define the bank account (or card) object to transfer to here https://stripe.com/docs/api/payouts/create#create_payout-destination
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’m just making sure it’s modeled correctly using stripe objects
And I’m not misunderstanding how it should be modeled
Sounds like the suggestion is one stripe account can and should have multiple external accounts if the alternative is multiple stripe accounts for multiple bank accounts
And it doesn’t matter what the default for currency is, that’s just a fallback?.. but you can specify the transfer account using the api you linked above.
yes, one Stripe account can have multiple external accounts.
yes, it doesn't matter what the default for currency is since you can specify the transfer account using the API I linked
Thank you 🙏🏼