#Emenike - Connect

1 messages · Page 1 of 1 (latest)

idle cave
cloud snow
#

whenever I try to instantiate a new account and pass in the extenral account in stripe.accounts.create I get an error stating: Instant Payouts are not enabled for this account. The card I was putting in was a debit card.

idle cave
#

Hello! What's your question about that error?

cloud snow
#

am I not allowed to do payouts to debit cards

#

const account = await stripe.accounts.create(
{
type: 'standard',
email: 'Emenikeemail1@gmail.com',
country: 'US',
business_type: 'individual',
business_profile: {
url:'https://instagram.com/socialhelixinc?utm_medium=copy_link',

      },
      individual: {
        id_number: '000000000',
        ssn_last_4: '0000',
        first_name: 'Jenny',
        last_name: 'Rosen',
        dob: {
          day: 1,
          month: 1,
          year: 1901,
        },
        email: 'Emenikeemail1@gmail.com',
        phone: '6172869610',

        address: {
          city: 'Boston',
          line1: 'address_full_match',
          line2: 'any',
          state: 'Massachusetts',
          country: 'US',
          postal_code: '02136',
        },
      },


      external_account:{
          /*
            object: "bank_account",
            account_holder_name: "Jenny Rosen",
            account_holder_type: "individual",
            country: "US",
            currency: "usd",
            routing_number: "110000000",
            account_number: "000999999991"
            */

            object:'card',
            number: 4000056655665556,
            exp_month: 02,
            exp_year:2025,
            currency: 'usd'
            
      },
#

this yields an error: Instant Payouts are not enabled for this account.

#

I didnt specify anywhere I wanted to do instant payouts for this account

idle cave
#

I don't believe you can specify a debit card for a Standard connected account like that unless it's for Instant Payouts.

#

You can only do something like that with Express and Custom accounts.

cloud snow
#

I do not want to do instant payouts but I still want to charge a debit card in the future for payments

#

So standard accounts can not have debit cards associated with it ?

idle cave
#

The payout destination for Standard accounts isn't something you, as the platform, typically manage. The Standard account holder themselves manages that in the Stripe Dashboard.

cloud snow
#

I can add a bank account to the stripe connected account tho

#

But not a debit card