Created
August 28, 2019 02:04
-
-
Save leonkyr/bdcc42798c911794f19786cb8ec30864 to your computer and use it in GitHub Desktop.
stripe-connect-update-settings
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.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