Skip to content

Instantly share code, notes, and snippets.

@skolhustick
Created August 6, 2019 15:54
Show Gist options
  • Save skolhustick/deb6a94e51196aa65c969c68ef56cd65 to your computer and use it in GitHub Desktop.
Save skolhustick/deb6a94e51196aa65c969c68ef56cd65 to your computer and use it in GitHub Desktop.
const createCustomer = async () => {
const CUSTOMER_EMAIl = "[email protected]";
const CUSTOMER_SOURCE = 'tok_mastercard';
const customer = await stripe.customers.create({
email: CUSTOMER_EMAIl,
source: CUSTOMER_SOURCE,
});
console.log(customer);
return customer.id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment