Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. var charge = stripe.charges.create({
  2. amount: 1000,
  3. currency: "usd",
  4. description: "Example charge",
  5. source: 'tok_visa',
  6. application_fee: 200,
  7. stripe_account: 'acct_xyz'
  8. }, function(err, charge) {
  9. console.log(err, charge);
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement