Guest User

Untitled

a guest
Feb 18th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. stripe.customers.create({
  2. email: req.body.email.toLowerCase(),
  3. }).then(response => response.json())
  4. .then(json => {
  5. res.json(json);
  6. console.log(json.customer.id)
  7. });
Add Comment
Please, Sign In to add comment