Skip to content

Instantly share code, notes, and snippets.

View mihaiandrei97's full-sized avatar

Mihai-Adrian Andrei mihaiandrei97

View GitHub Profile
@mihaiandrei97
mihaiandrei97 / checkout.ts
Created January 11, 2025 07:39
Create checkout with dynamic product
return stripe.checkout.sessions.create({
mode: 'subscription',
customer: stripeCustomerId,
payment_method_types: ['card'],
line_items: [
{
price_data: {
currency: 'usd',
unit_amount: productPrice,
product_data: {