Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save farhan-syed/c5ef40eb157015dc099951ed026591f5 to your computer and use it in GitHub Desktop.
Save farhan-syed/c5ef40eb157015dc099951ed026591f5 to your computer and use it in GitHub Desktop.
stripe.customers.create({
description: ('Stripe Account For ' + req.params.customer_email),
email: req.params.customer_email,
source: req.params.token
}, function(error, customer){
if (error) {
console.log(error);
res.error(error.message);
}
else{
console.log(customer);
res.success(customer);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment