Created
August 28, 2019 01:48
-
-
Save leonkyr/9af76f25e09358dc9721f405b3157cef to your computer and use it in GitHub Desktop.
stripe-create-custom-account
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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