#HERZ - Connect to Stripe
1 messages ยท Page 1 of 1 (latest)
Hi! ๐
This is my configuration
const stripe = new Stripe(STRIPE_SECRET_KEY, {
apiVersion: '2020-08-27'
})
// Creation of a new Stripe's Customer
const createCustomer = async (email: string): Promise<Stripe.Response<Stripe.Customer>> => {
const customer = await stripe.customers.create({
email,
description: email
})
return customer
}```