#maxim-k_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/1328424449103368263
đ 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.
- maxim-k_payment-element-usbank, 3 days ago, 46 messages
- maxim-k_api, 4 days ago, 34 messages
- maxim-k_api, 4 days ago, 62 messages
Good afternoon.
The setup intent that created this payment method never completed
The last action for that setup intent is this request; https://dashboard.stripe.com/test/logs/req_T7OFNdkAXPvXDY
So this payment method is not valid for setting as the default PM
"next_action": {
"type":
"verify_with_microdeposits",
Is there any way to skip veryfing?
I'm trying to replace legacy logic with old Source API. It was allow to make source (bank account) as default right after saving.
You can specify only instant verification but, in that case, accounts that don't support instant verification would fail.
got it
If i will call stripe.verifyMicrodepositsForSetup(clientSecret,data?) as a next step after confirmUsBankAccountSetup() will it open modal dialog window?
We describe the flow here: https://docs.stripe.com/payments/ach-direct-debit/set-up-payment?platform=web&payment-ui=direct-api#web-verify-with-microdeposits
If you supplied a billing email, Stripe notifies your customer via this email when the deposits are expected to arrive. The email includes a link to a Stripe-hosted verification page where they can confirm the amounts of the deposits and complete verification.
"verification_method": "instant", is something like it worked with Sources()?
Also "verification_method": "instant" example you provided is for checkout
I cannot speak to what functionality worked with Sources.
It was deprecated before I joined Stripe
Is the any workaround for confirmUSBankAccount?
When i call stripe.confirmUsBankAccountSetup(
Setting.Settings.setup_intent.client_secret,
{
payment_method: {
us_bank_account: {
routing_number: Setting.Settings.ba_routing_number,
account_number: Setting.Settings.ba_account_number,
account_holder_type: Setting.Settings.ba_holder_type,
},
billing_details: {
name: Setting.Settings.billing_name,
email: Setting.Settings.billing_email,
},
},
}
It created "non verified" bank account, that can't be used
How i can skip verification on this step?
I recommend you review the docs I sent. You can adjust which type of integration examples are displayed using the tabs at the top of the page
Not sure i found what i need. I choose https://docs.stripe.com/js/setup_intents/confirm_us_bank_account_setup
Choose this type of intergration.
I don't see any settings in documentation that allows me to skip verification
You cannot skip verification entirely