Skip to content

Instantly share code, notes, and snippets.

@leonkyr
Created August 28, 2019 01:48
Show Gist options
  • Save leonkyr/9af76f25e09358dc9721f405b3157cef to your computer and use it in GitHub Desktop.
Save leonkyr/9af76f25e09358dc9721f405b3157cef to your computer and use it in GitHub Desktop.
stripe-create-custom-account
stripe.accounts.create({
country: 'AU',
type: 'custom',
business_type: 'company',
// requested_capabilities: ['card_payments', 'transfers'],
}).then(function (account) {
console.log(JSON.stringify(account, null, 2));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment