#vatron_code
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1295814137246646324
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello! You can check the country availability for a payment method on that payment method's details page. See here under the country tab for ACH, for example: https://docs.stripe.com/payments/ach-direct-debit#ach-direct-debit
When it comes to Connect, the answer depends on more specific details than you provided. Are you using direct or destination charges? Are you using on_behalf_of or not?
I am just passing in payment_method_types = ['us_bank_account']
to stripe payment element
Let's back up a bit. It sounds like you have some kind of issue or problem, can you tell me more about what that is and what your ultimate goal is?
My use case is very simple -> i am using stripe payment element to collect payments for my connected accounts.
Now the amount is in usd, i want to check if the connected stripe account is eligible to accept payments in us ach then show us_bank_account in stripe payment element
@proper helm
not able to check right now can u confirm for both once ?
No. The answer depends on your answer to that question, and then if you're using destination charges another followup question about on_behalf_of.
Why are you unable to check?
i basically create a payment intent and then use verify api call later for payment
i am not able to find this param in my code
If you're using direct charges or destination with on_behalf_of then yes, you should check the country of the connected account. If you're using destination without on_behalf_of then only the country of your platform account matters.
ohh got it and that country of connected account should always be US right to have us_bank_account payment method type ?
Or possibly the UK, but usually it's US, yes.
got it can u just confirm once, thats all on my doubt
Confirm once? What do you mean?
ACH Direct Debit is available for accounts located in US and UK both.. See: https://docs.stripe.com/payments/ach-direct-debit#ach-direct-debit
https://docs.stripe.com/payments/ach-direct-debit#connect
got it this helps , thanks @wide tapir , also i see in this doc that customer location should be US so basically if the customer is from another country lets say Germany , US bank account won't work for them ?
Yeah, ideally german people will have a non-US bank account
Thanks Hanzo this helps alot