#arkansasbeauty_89186

1 messages · Page 1 of 1 (latest)

sterile creekBOT
#

Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

deft swan
gusty sigil
#

I have it defined like this: const account = await stripe.accounts.create({
type: 'custom',
country: 'US',
email,
business_profile: {
mcc: '5947',
url: 'https://www.somesite.com',
name: 'Some name',

  },
  business_type: 'individual',
  individual: {
    email,
    first_name: fullName.split(' ')[0],
    last_name: fullName.split(' ')[1] || '',
    dob: {
      day: parseInt(day, 10),
      month: parseInt(month, 10),
      year: parseInt(year, 10),
    },
    ssn_last_4: ssn.slice(-4),
    phone: formattedPhone,
    address: {
      line1,
      city,
      postal_code,
      state,
      country
    }
  },
  capabilities: {
    card_payments: { requested: true },
    transfers: { requested: true },
  },
});

But that hard coded name doesnt appear here:

#

This bit here is where it should be set: business_profile: {
mcc: '5947',
url: 'https://www.somesite.com/',
name: 'Some name',

  },
deft swan
#

Hm, I'm not even seeing that field in my dashboard view

#

Ah, found one with it, let me see where I set that.