#hans_unexpected

1 messages ¡ Page 1 of 1 (latest)

spiral daggerBOT
#

👋 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/1397653343974981724

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

fathom herald
#

Hello, bank transfers aren't supported in setup mode unfortunately. A bank transfer consists of Stripe displaying account details for your customer to transfer money to, so there is no required information to be collected from their side before initiating the actual payment.
https://docs.stripe.com/payments/bank-transfers

#

Can you tell me more about what you are trying to do here?

cerulean tree
#

We'd like to set up a way for customers to pay us; we have a customer record for them which is created with billing information from this setup intent.

For certain trusted customers, we want to allow them to schedule when they want to pay us with this customer_balance method

#

Is there a way to attach a customer_balance payment to an existing customer?

fathom herald
#

What Stripe surface are you using to take payments? (Elements, Checkout, Invoices, Subscriptions)
You should be able to just create a think that tries to actually take the payment and include the customer ID and customer_balance as a payment method type and the customer can make payment through that

cerulean tree
#

checkout session to create a subscription with card

fathom herald
#

Gotcha, so you should be able to just create a subscription Checkout session with customer_balance as a payment method type and the user can get the correct details from there.

#

I spoke too soon, just tested and got an error when trying to do that. Looking further in to this and will get back to you

cerulean tree
#

i've tested adding a button where we could initiate a bank transfer

#

our flow that we do have is that we invoice with Orb and they invoke Stripe's existing payment methods to actually bill the customer

#

But, we can't set up this type of payment as a payment intent for Orb to initialize us getting paid.

#

I'm wondering if we can generate this portal as part of Orb issuing an Invoice?

fathom herald
cerulean tree
#

all our invoicing is done on Orb

fathom herald
#

Ah, so you aren't writing your own Stripe API code here? In that case Orb's support will have a better idea on what your options are here

#

On this server we know what our API can do, but what is possible with Orb depends on what specifically they've coded with us.

cerulean tree
#

I proved to ourselves that we could add a button to collect this type of payment, but I don't know how it would interface with Orb

#

Is there a way to test this customer_balance payment?

fathom herald