#Kiss
1 messages ยท Page 1 of 1 (latest)
Hello ๐
When you say account balance, are you referring to bank accounts ?
I tried :
const paymentIntent = await stripe.paymentIntents.create({
amount: parseInt(req.body.amount),
currency: 'usd',
customer: customerId,
payment_method_types: ['us_bank_account'],
payment_method_options: {
us_bank_account: {
financial_connections: {
permissions: ['payment_method', 'balances'],
prefetch: ['balances'],
},
},
},
setup_future_usage: 'off_session',
})
But it is not working
Yes ๐
what error are you seeing here?
error: Received unknown parameter: payment_method_options[us_bank_account][financial_connections][prefetch]
Apologies for the delay here
still looking..
Ah the reason I couldn't find much is because this feature still might be in beta
Our team on discord won't be able to discuss beta features. I'd recommend talking to our support team about this so that they can help
Find help and support for Stripe. Our support center 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.
fwiw, I don't think you can prefetch it at the PI creation.
https://stripe.com/docs/financial-connections/balances
However, since this is still in beta our support team would be able to check and confirm.
Got it, thank you for your help