SamyCha
SamyCha

Reputation: 105

[STRIPE CONNECT]: Test routing and account number invalid

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

Answers (3)

Harendra Singh
Harendra Singh

Reputation: 323

Routing Number required for US only. Here is sample for creating account.

"routing_number":"111000000",
"account_number":"SE3550000000054910000003"

  

Upvotes: -1

Topher Hunt
Topher Hunt

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):

  • Routing number: 110000000
  • Account number: 000123456789

Upvotes: 9

BA-25
BA-25

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

Related Questions