#skp96_api
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/1288506726416388121
š Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- skp_googlepay-disable, 1 day ago, 7 messages
That is surprising, that setup intent has cards as a payment method type. Do you have a public test page where I can see this issue myself?
From what I've read by default cards is enabled. Which is fine because I want card and have ach enabled via payment_method_types on SetupIntent but I just want customers to manually enter account info via microdeposits rather than instant verification. I do not have a public test page, just local.
I am sorry I may have misunderstood the question. Are you saying that the non-microdeposit verification is still available in your payment element? From the description, I thought the issue was that only bank account is showing up rather than bank account + card
No worries! Originally, I had both bank account and card show up on the form. After I added verfication_method: microdeposit, the form doesn't load at all . I don't see cards nor us bank account. I'm attaching screenshots. The screenshot with card + us bank acocunt is without adding verfication method set to microdeposit. The screenshot with the form not loading is with verfication method set to microdeposits.
Ah gotcha. If you open your developer console, does any error show up?
No errors I am seeing 200 across the board. Also I checked the stripe logs for POST /v1/setup_intents and I get back 200 and see that the verfication method has been set correctly to microdeposits. Here is the ID req_UuiLJyOTjCiiEk
Gotcha, I more meant the browser's developer console, this type of error would likely not appear in your dashboard's API request logs
If you aren't seeing any browser developer console errors, can you send me your code for setting up your Payment Element on your page?
I only checked the network tab š¤¦āāļø
I am seeing an error
error
:
code
:
"unsupported_parameter"
message
:
"You passed verification_method: 'microdeposits' in payment_method_options.us_bank_account. To use 'us_bank_account' with the PaymentElement, please use verification_method: 'automatic', verification_method: 'instant' or verification_method: 'skip'."
param
:
"payment_method_options"
type
:
"validation_error"
So I cannot use PaymentElements in this case
Is there another way to enable just microdeposits to collect customer payment data for future payments?
Ah there we go, apologies I completely forgot about that restriction. From our docs it looks like you would need to build your own custom UI to collect bank account info and confirm it when verification is set to microdeposites only https://docs.stripe.com/payments/ach-debit/set-up-payment?platform=web&payment-ui=direct-api#microdeposit-only-verification
Ahh we were avoiding creating a custom UI to collect data so it's easier to be in PCI compliant
PCI compliance only applies to cards, though I am unsure if there are regulations that exist around collecting bank info directly. If you reach out to our support team they may be able to confirm if collecting bank account details like this puts any compliance requirements on you
Got it! Do you have the contact for the support team by any chance?
Find help and support for Stripe. Our support site 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.
Meant to link to that!
Thank you!