#L0rdandBooz
1 messages · Page 1 of 1 (latest)
The external account is supposed to be an external bank account right?
Yep or Debit Card
Ok my question then is I'm verifying ownership of a bank account via stripe setupIntent -> collectBankAccountForSetup. However, the external account requirement still exists. Why is that?
Shouldn't verifying ownership and attaching it to the connect account take care of this requirement or am I misunderstanding things?
Are you trying to use Financial Connections here for Connect Payouts?
Or are you just trying to add an External Account normally?
I'm trying to make it so our customers can ach in and out with treasury. Is the external account negligible then? I was under the impression it's what was needed to do these money transfers but it seems as though that may not be the case.
It's an issuing platform if that helps you understand things better.
Gotcha, let me double check
No problem thank you.
Okay
Are you setting attach_to_self=true?
yes.
attach_to_self: true,
flow_directions: ['inbound', 'outbound'],
payment_method_types: ['us_bank_account'],
payment_method_options: {us_bank_account: {verification_method: "automatic"}}
},{
stripeAccount: dbUser.connectAccountID,
});```
Here's my code snippet in case you're interested.
Okay I think I was wrong. I'm checking with a colleague but I do think these Treasury flows are designed to be handled separately from normal payins/payouts for your Connected Account. So you would indeed want to collect an external account via Connect Onboarding (or your own onboarding flow) for the Connected Account. Let me confirm though
Is there a need for me to collect the external account at that point if I want them depositing / withdrawing via an ach?
If so how do I collect it via Connect Onboarding because I never saw an option for that.
Okay so yeah I think this is just a rough edge right now
I'll file some feedback since it does seem like a duplication
But for now
You can collect the external account via Connect Onboarding by flipping the toggle in your account at: https://dashboard.stripe.com/test/settings/connect/custom
Awesome thank you so much bismarck!