Created
July 1, 2016 22:46
-
-
Save farhan-syed/50e4ef496c4bee9d3f586ecba4fcc3d4 to your computer and use it in GitHub Desktop.
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.charges.create({ | |
amount: req.params.price, | |
currency: "usd", | |
customer: req.params.stripe_customer_cccount, | |
description: 'Charge for ' + req.params.charge_description, | |
application_fee: application_fee | |
}, {stripe_account: {req.params.seller_stripe_account}}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment