#sachin-checkout-noncards
1 messages · Page 1 of 1 (latest)
sachin-checkout-noncards
Hey @drowsy bough , Checkout does support collecting bank account details
I want to save back account information. In stripe provided UI because in every country there is different attributes for account information. Like in India we have IFC code but other countries doesn't have.
How to do that.
Currently I am doing
Sorry, let's take a step back for a sec. If your account is based in India, then you can't accept bank account details/payments today
I mean your code here is literally forcing only card on line 66
remove that line entirely and it will enable all the options we support in that country. It really depends on each country
Yes
https://site-admin.stripe.com/docs/payments/payment-methods/integration-options#country-currency-support this tells you what payment method types are supported per country
it seems sepa_debit works in SG for example
Is there anything components
so you can pass some of those payment method types on line 66
yes because you use Checkout, that's the whole point
But is there any SDK aur something so I can save information of account on my page.
Like I want prebuilt UI from stripe based on currency.
Is there anything like this ?
Sorry, I'm not really following what the problem is. This is literally what Checkout offers. And you are already using Checkout. And Checkout supports accepting payments in many currencies, with many payment methods, depending on the country of your Stripe account.
You asked about bank account details, so I showed you that for example SEPA Debit, for EU customers is supported for SG Stripe accounts so if you fix your line 66 to not just pass card but pass more values like ideal and sepa_debit then it will offer those too, which is exactly what you asked from the start.
Did you try this?
Thanks it just worked fine.
Sorry for my bad English. Now, I want to save bank information from code. How to do that.
No web ui nothing just want to save information of user's bank account.
but it's again the same exact question that I already answered
payment_method_types: ['card', 'sepa_debit']
try that
Is there any way to save in India or I just cannot do this.