Reputation: 105
I m developping a rails app, using stripe connect for my users. In my test app using stripe test connect (Express mode), I don't manage to enter the right routing account and the right bank account for France. Everytime I have the following error: 'Invalid routing number' And the second think is that I don't have the choice to select a credit card instead of a bank account number. Has someone a solution to test my Stripe connect with a working number or an other solution? The stripe documentation is not helping with that numbers... Thks, Samy
Upvotes: 3
Views: 13981
Reputation: 323
Routing Number required for US only. Here is sample for creating account.
"routing_number":"111000000",
"account_number":"SE3550000000054910000003"
Upvotes: -1
Reputation: 4804
When testing Stripe Connect payout integrations, you can enter the following US account info (any real bank account / routing number is rejected in test mode):
110000000
000123456789
Upvotes: 9
Reputation: 119
For testing, to add a bank account to the test account, you would actually need to use a real routing number with a test account number. Stripe provides test bank information, though this is more geared for testing bank-based payment methods and not adding bank information to an account for payouts and will give the 'Incorrect routing number' error. Also, @korben is correct in that French accounts currently do not support debit card payouts, they must be done to a bank account.
Upvotes: 0