Created
August 28, 2019 01:51
-
-
Save leonkyr/7eae8ce4605051a8e1251bb7afa9bc72 to your computer and use it in GitHub Desktop.
stripe-connect-create-person
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.createPerson(accountId, { | |
| first_name: "Leo", | |
| last_name: "Tradie 2", | |
| email: "[email protected]", | |
| relationship: { | |
| account_opener: true, | |
| director: true, | |
| owner: true, | |
| title: "Director", | |
| }, | |
| }).then((person) => { | |
| console.log(JSON.stringify(person, null, 2)); | |
| } | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment