Skip to main content
POST
/
api
/
webhooks
/
db

Endpoint

POST /api/webhooks/db

Overview

Receives and processes Polar webhooks for DB service subscriptions. Updates user entitlements based on subscription events.

Security

Webhook secret: DB_POLAR_SECRET environment variable

Implementation

export const POST = Webhooks({
  webhookSecret: process.env.DB_POLAR_SECRET!,
  onPayload: async (payload) => {
    await handlePolarWebhook(payload, 'DB')
  },
})

Supported Events

See Webhooks Overview for complete list of supported events.

Service-Specific Behavior

When processing DB webhooks:
  • Updates UserServiceEntitlement with service: 'DB'
  • Links Polar customer and subscription IDs
  • Updates tier and premium status
  • Sends Discord notifications (if configured)

Configuration

Set DB_POLAR_SECRET in environment variables to match Polar webhook secret.