#haris_hs
1 messages · Page 1 of 1 (latest)
Hi
Can you share what API exactly you are using ?
Sure
stripe.financialConnections.sessions.create({
account_holder: {
type: 'customer',
customer: request.body.customerId,
},
permissions: ['balances', 'ownership', 'payment_method', 'transactions'],
prefetch: ['balances', 'ownership', 'payment_method', 'transactions']
})
.then((data) => {
response.send(data);
})
.catch((err) => {
console.log(err);
});
There is no field exposed with account routing number:
https://stripe.com/docs/api/financial_connections/accounts/object
yes but that doesn't mean you (as a Stripe Account) may have access to that information
just the user can set that information and it's then stored internally in Stripe
Ok so we can't get account numbers of connected accounts?