#ruthwick-pathireddy_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/1222704815659028600
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
See screenshot with pay button disabled
The card section of the UI is complaining that it isn't required but I only want the user to fill out the ACH portion
This is the snippet of Java code that I'm using to specify the payment method type and when I specify both, it does not let me finish the us bank account details
val params =
paramsBuilder!!
.setSuccessUrl(successUrl)
.setCancelUrl(cancelUrl)
.addPaymentMethodType(SessionCreateParams.PaymentMethodType.US_BANK_ACCOUNT)
.addPaymentMethodType(SessionCreateParams.PaymentMethodType.CARD)
// .addAllPaymentMethodType(listOf(SessionCreateParams.PaymentMethodType.CARD, SessionCreateParams.PaymentMethodType.US_BANK_ACCOUNT))
.putMetadata(
STRIPE_ADDITIONAL_RESPONSE_METADATA_KEY,
savedStripeAdditionalResponse.id.toString()
)
.build()
Hmm... did you fill out any of that information previously or did you go stright to US bank account?
Just went straight to the US bank account
Gotcha - can you share a checkout Session ID so I can take a look?
I've attached a video of the issue with my test account. How do I get the session id? Is it from the url?
i should be able to pull it from the url - give me a few minutes to dig in
So I think this is happening because you have the "save my info for 1-time checkout with link" checkbox enabled
How do I turn off link support programmatically through Java?
Actually I see that we are able to disable it for the connected account. Does that mean each connected account will need to disable link?
Is there a way I can do it on behalf of all my connected accounts as the default?
https://dashboard.stripe.com/settings/connect/payment_methods Hi @sudden crest you can go to this page to manage payment methods on your connected accounts
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Any idea on how long I need to wait before my connected accounts get updated?
I also need to make sure my connected accounts use my parent payment methods configuration right?
Are you using direct charges or destination charges with the on_behalf_of ?
I'm unsure what you mean by that
I am having my connected accounts directly get money from the customers. No money is going through my account
Also, I tried your updates and unfortunately still don't see the link checkout unchecked
Ok then you are using direct charges.
Can you share with me your merchant ID? you can find it from the Stripe Dashboard -> Settings ->Account Details
Also did you create the checkout session after changing the settings in Dashboard?
FYI, I'm doing this in test mode: acct_1OprMCFgVVuMRhlw
Yeah, I did it after creating it
And what's the checkout session ID?
I opend this page and the "save my info for 1-click checkout" isn't checked by default.
Hmm, really? I'll create another session right now
Can you share with me the URL?
I can't reproduce the problem. Let me ask my colleagues and see if they can see the same thing.
I closed my incognito windows and tried it again but still see the link checked.
Yeah, this is super puzzling
Any way about the problem that you reported earlier, the team is currently working on it and I'd keep you updated.
Sounds good. Thanks for the help so far
Hi @sudden crest I just received the update that the team has fixed the problem. Can you try again?
Can you select US bank account and see if you can confirm the payment successfully?
Alright, that worked!
Okay, so this is in good shape
Is there anything I should be aware of for any similar issues in the future?
Feel free to come to discord and let us know.