#connor_api
1 messages ¡ Page 1 of 1 (latest)
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.
- connor_api, 22 hours ago, 5 messages
đ 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/1237837248494436502
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Not as far as I know, no
When a customer of ours is disabled, we would like to prevent further transactions to that virtual account and make sure that the funds are returned
Is deleting the customer the only solution? Or would that not even solve the problem?
You can just detach the Payment Method, which renders it useless: https://docs.stripe.com/api/payment_methods/detach
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Is BankTransfer a detachable payment method? I didn't think it had a pm_ reference
Ah, I see. Just a sec
Can you post the docs for specifically what you're talking about if not Bank Transfers?
Sorry if I misunderstood your question, but I'm talking specifically about Bank Transfers
As far as I know, they get spun up from a Stripe Customer getting joined to a connected account through a Payment Intent
Hey there
Stepping in as two-shoes needs to step away
Once a Customer has an associated Customer Balance (the result of offering Bank Transfers) then no you can't really "disable" this.
However, you can determine which PaymentMethods you show as options for a PaymentIntent
So you could just not have customer_balance (Bank Transfers) be an option if you don't want to offer it for that checkout flow.
For sure, and we wouldn't expose that option once a customer has been disabled for "Wire transfer" on our end.
However, that still leaves the question of what happens if a customer decides to send money to the virtual account number after they had been "disabled" for "Wire transfer" on our side. From what it sounds like, there isn't a way to block further transactions to that virtual account number and it would be up to the vendor on the recieving end to refund the customer.
Is that correct?
Yep that's correct.