#felipe-cano-connect
1 messages · Page 1 of 1 (latest)
do you have an example request for the account link you're directing the user to?
afaict, account links only support collecting verification information, not the bank account
How can I save my users bank information?
Is there any other stripe link to save the bank information without using the dashboard
I have to save the Iban of my users to send them money
But I don't want to save it in my db
you'd need to collect this information through your own form (though you don't need to save the info in your db), and pass it to stripe via the accounts api https://stripe.com/docs/connect/payouts-bank-accounts
express accounts are an alternative that may be worth looking into if you don't want to manage the user onboarding / bank account management UI at all
So, If I change the type of account of my users from custom to express I will be able to get the information using account links. is that rigt?
including bank information
no, you'd just redirect them to the express dashboard, and stripe does all of the onboarding
account links are for custom only - they're like a very limited form of a dashboard
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
you'd set that field to the IBAN
and provide the appropriate country + currency
the other fields are not needed for IBAN accounts
Ok