#arkansasbeauty_89186
1 messages · Page 1 of 1 (latest)
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.
- arkansasbeauty_89186-account-support, 14 hours ago, 4 messages
- ArkansasBeauty-branding-update, 2 days ago, 14 messages
- arkansasbeauty_89186, 6 days ago, 25 messages
Hi 👋 I'm a bit less familiar with how this looks in the dashboard, but I think you may be looking to set the settings.dashboard.display_name field on the Account:
https://stripe.com/docs/api/accounts/object#account_object-settings-dashboard-display_name
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
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',
},