Genetare token of Bank account using createTokenWithBankAccount method without routingnumber parameter
See original GitHub issueTo create a token with Bank account we have createTokenWithBankAccount method. It has routingNumber as an optional parameter as describe in a document and I use that library to use in Singapore. How to create token without giving routing number ??
let params = {
// mandatory
accountNumber: '000123456',
countryCode: 'sg',
currency: 'sgd',
accountHolderName: 'Test user'
};
await stripe.createTokenWithBankAccount(params)
.then((data) => {
this.addToken(data.tokenId, data.bankAccount.last4);
}).catch((error) => {
this.setState({
isLoaderVisible: false
});
showSnackBar(error.message);
});
});
Issue Analytics
- State:
- Created 6 years ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
Create a bank account token - Stripe API reference
This token can be used with any API method in place of a bank account . ... For US bank accounts, this is...
Read more >Create token for bank account information Stripe - ios
I did talk with a representative from Stripe. ... createToken(withBankAccount: bankAccount) { (token, error) in if let error = error ...
Read more >.createTokenWithBankAccount(params) -> Promise · tipsi-stripe
Creates token based on external (bank) params. params — An object with the following keys: Key, Type, Description. accountNumber (Required), String ...
Read more >stripe_create_account_token: Create a Bank Account Token
Create a bank account token to schedule a transfer to a recipient. ... A data frame with the new bank account token info...
Read more >Send Money - Add a funding source | Dwolla API Documentation
Bank Addition and Verification methods #. Within Dwolla, the sending party must always verify their bank account in order to be eligible to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
In stripe/stripe’s document to create bank account token routing number is given as an optional, but we can’t leave it as optional.
To solve that issue I research some bank related sites and find one solution. The Routing number is a 7 digit number which is a combination of Bank code and Branch code.
Bank code is 4 digit number and Branch code is 3 digit number. By combine that two respected number we can make routing number.
Parameter to pass in createTokenWithBankAccount method
I design Payment screen as under
Awesome!