#austin_api

1 messages ยท Page 1 of 1 (latest)

trail condorBOT
#

๐Ÿ‘‹ 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/1476224923306557521

๐Ÿ“ Have more to share? Add more details, code, screenshots, videos, etc. below.

hallow belfry
#

Hello! Taking a look ๐Ÿ™‚

#

Sorry for the delay, I was juggling a few threads.

#

To clarify, you do not want us_bank_account to be shown as a payment method option in your checkout flow?

winter moat
#

Hey Jazz! I do want US Bank Account to show, I just want to remove the "Enter bank details manually" option. I.e. only keep instant bank verification option

hallow belfry
#

I see, thanks for clarifying! I'm looking at options for this...

trail condorBOT
winter moat
#

Correct me if im wrong, but isnt this saying the property must be set on the PaymentIntent/Subscription, not directly on the Stripe Element? Hence, I would still have my issue?
Or can I have the property directly on the Stripe element?

thick frigate
#

That first link shows you where to set it client-side (in javascript for the stripe element)

#

Also I'm taking over for Jazz as they had to step away

#

Actually that first link is React specific

#

You set it when initializing elements

winter moat
#

Thanks for the help Codename_Duchess and Jazz! I set the stripe element with the verification method and its hiding the microdeposit bank option now.

elements = stripe.elements({
mode: 'subscription',
amount: (@Model.StripeInfo.AmountInDollars*100),
currency: 'usd',
paymentMethodOptions: {
us_bank_account: {
verification_method: 'instant'
}
}
});

thick frigate
#

Awesome!