Skip to content

Instantly share code, notes, and snippets.

@skolhustick
Last active August 6, 2019 15:50
Show Gist options
  • Save skolhustick/cb882ebab7bf37433b487c468808ffe6 to your computer and use it in GitHub Desktop.
Save skolhustick/cb882ebab7bf37433b487c468808ffe6 to your computer and use it in GitHub Desktop.
const createProduct = async () => {
const PRODUCT_NAME = "Monthly Subscription";
const PRODUCT_TYPE = 'service'
const product = await stripe.products.create({
name: PRODUCT_NAME,
type: PRODUCT_TYPE,
});
console.log(product);
return product.id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment