#Tomato-IBAN-ReactNative
1 messages ยท Page 1 of 1 (latest)
Hi ๐ I'm not certain off the top of my head, so please bear with me while I investigate this scenario and get back to you.
ok, thank u!
hey there just catching up here from @vale pilot
@tired barn the example app includes screen for both SEPA payment and saving SEPA details for later:
https://github.com/stripe/stripe-react-native/blob/master/example/src/screens/SepaPaymentScreen.tsx
https://github.com/stripe/stripe-react-native/blob/master/example/src/screens/SepaSetupFuturePaymentScreen.tsx
We definitely support setting up a payment method like this ๐
I need to step away so Iโm going to archive this thread. If you need help with anything else please ask in #dev-help or contact Stripe Support: https://support.stripe.com/contact
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
๐ @tired barn opened the thread!
I don't need pay by iban. I need create external bank account with IBAN. From react-native library
@solar crystal
@minor turtle
Sorry about the wait - I'm finishing up some other questions but can get to you in just a few minutes!
thank you for being patient
You just want to create a plain old External Bank Account (https://stripe.com/docs/api/external_account_bank_accounts/object) right?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
@solar crystal Yes
I need generate token for it in react-native stripe lib
How could i do it?
There currently is no way to create a bank account token client-side with the react native SDK. You'd have to make your own form and then make the request to create it server-side
@solar crystal So does it mean that i must accept stripe verification for creating token on server-side?
Can you clarify what you mean by that?
As i know - i need some stripe security verification for using https://stripe.com/docs/api/tokens/create_card this api on backend
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
@solar crystal
Ah, are you referring to the fact that you need to go through some extra steps because you're using raw pans when you. make that call from your server?
yea
Gotcha - so the reason for that is because card information needs PCI compliance. Bank accounts are not subject to PCI compliance, so it's fine to make that call from the backend
Oh, earlier they wrote to me here that this is not the case