Payment Gateway Integration

One of LinkBridge’s key advantages is that it is gateway agnostic. This means you can track revenue events from any payment processor or custom checkout flow. Whether you use Stripe, PayPal, LemonSqueezy, Shopify, or a completely custom payment API, LinkBridge can capture and analyze your sales data.

How It Works

  1. Configure your backend to listen for payment successevents from your gateway (e.g. webhook, callback, or transaction confirmation).
  2. Send a win_... event to the LinkBridge API with the required fields (saleAmount, saleId, saleCurrency).
  3. LinkBridge aggregates and normalizes this data, so all gateways report consistently in your dashboard.

Example Payload

POST <YOUR_API_ENDPOINT>
Headers: {
  "Authorization": "Bearer YOUR_SECRET_KEY",
  "Content-Type": "application/json"
}

Request Body:
{
  "eventType": "win_sale", 
  "websiteId": "68ab108c4a215929683ad3b9",
  "data": {
    "saleAmount": 120,
    "saleId": "tx_987654",
    "saleCurrency": "USD"
  }
}

Supported Gateways

  • Stripe
  • PayPal
  • LemonSqueezy
  • Shopify
  • Paddle
  • Custom APIs (via backend events)

Copyright © 2025 - All rights reserved