Created
August 28, 2019 01:48
-
-
Save leonkyr/cb017a4af03c157c89e6b18829febf9b 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