Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save farhan-syed/50e4ef496c4bee9d3f586ecba4fcc3d4 to your computer and use it in GitHub Desktop.
Save farhan-syed/50e4ef496c4bee9d3f586ecba4fcc3d4 to your computer and use it in GitHub Desktop.
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