Answers for "stripe create customer"

0

stripe create customer

/*
  Create customer account
*/
const customer = await stripe.customers.create({
  email: user.email, // optional
  name: `${user.first_name} ${user.last_name}`, // optional
  metadata: {
    user_id: 'foo' // Or anything else
  }
})
Posted by: Guest on January-30-2022

Code answers related to "stripe create customer"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language