Skip to content

Instantly share code, notes, and snippets.

@leonkyr
Created August 28, 2019 01:51
Show Gist options
  • Save leonkyr/7eae8ce4605051a8e1251bb7afa9bc72 to your computer and use it in GitHub Desktop.
Save leonkyr/7eae8ce4605051a8e1251bb7afa9bc72 to your computer and use it in GitHub Desktop.
stripe-connect-create-person
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