Skip to content

Instantly share code, notes, and snippets.

@leonkyr
Created August 28, 2019 02:04
Show Gist options
  • Save leonkyr/bdcc42798c911794f19786cb8ec30864 to your computer and use it in GitHub Desktop.
Save leonkyr/bdcc42798c911794f19786cb8ec30864 to your computer and use it in GitHub Desktop.
stripe-connect-update-settings
stripe.accounts.update(accountId, {
settings: {
payouts: {
schedule: {
interval: "manual",
},
statement_descriptor: "Payout descriptor",
},
},
}).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