AlertBayTrumpeter-website/app/api/create-portal-session/route.ts

29 lines
905 B
TypeScript

import { type NextRequest, NextResponse } from "next/server"
import Stripe from "stripe"
const stripe = new Stripe(process.env.STRIPE_SECRET_KEY!, {
apiVersion: "2024-06-20",
})
export async function POST(request: NextRequest) {
try {
const { session_id } = await request.json()
const checkoutSession = await stripe.checkout.sessions.retrieve(session_id)
if (!checkoutSession.customer) {
return NextResponse.json({ error: "No customer found" }, { status: 400 })
}
const portalSession = await stripe.billingPortal.sessions.create({
customer: checkoutSession.customer as string,
return_url: `${request.nextUrl.origin}`,
})
return NextResponse.json({ url: portalSession.url })
} catch (error: any) {
console.error("Error creating portal session:", error)
return NextResponse.json({ error: { message: error.message } }, { status: 500 })
}
}