Skip to content

Instantly share code, notes, and snippets.

@skolhustick
Created August 6, 2019 15:55
Show Gist options
  • Save skolhustick/ab4e53937c432651aa4e92a733305be3 to your computer and use it in GitHub Desktop.
Save skolhustick/ab4e53937c432651aa4e92a733305be3 to your computer and use it in GitHub Desktop.
const subscribeCustomerToPlan = async (customerId, planId) => {
const subscription = await stripe.subscriptions.create({
customer: customerId,
items: [{plan: planId}],
});
console.log(subscription);
return subscription;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment