#haris_hs

1 messages · Page 1 of 1 (latest)

onyx girderBOT
tame carbon
#

Hi
Can you share what API exactly you are using ?

frigid hamlet
#

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);
    });
tame carbon
frigid hamlet
tame carbon
#

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

onyx girderBOT
frigid hamlet
#

Ok so we can't get account numbers of connected accounts?