Zapier & n8n Integrations

While LinkBridge does not expose customer data to external services, you can use automation platforms like Zapier andn8n to send custom events into LinkBridge. This lets you track business processes, flows, and scenarios that happen outside your website — all within your unified analytics.

Zapier Workflows → LinkBridge

With Zapier, you can trigger events from thousands of apps and send them into LinkBridge as custom_... events for analytics.

  1. Create a Zap with any trigger (e.g., new order in Shopify, form submission in Typeform).
  2. Add a Zapier Webhook or API Request step to call LinkBridge’s API endpoint.
  3. Format the payload as a custom_... event with identifiers and metadata.
  4. Track those actions inside LinkBridge dashboards for segmentation and analysis.
POST <YOUR_API_ENDPOINT>
Headers: {
  "Authorization": "Bearer YOUR_SECRET_KEY",
  "Content-Type": "application/json"
}

Body:
{
  "eventType": "custom_typeform_submission",
  "visitorId": "<from cookie if available>",
  "sessionId": "<from cookie if available>",
  "websiteId": "68ab108c4a215929683ad3b9",
  "data": {
    "formId": "abc123",
    "email": "user@example.com"
  }
}

n8n Workflows → LinkBridge

n8n provides an open-source way to send automated events into LinkBridge. Use n8n’s HTTP Request node to call the LinkBridge API whenever a workflow runs.

  1. Set up a workflow in n8n with any trigger (database update, webhook, etc.).
  2. Add an HTTP Request node targeting LinkBridge’s API.
  3. Send either custom_... or win_... events depending on your scenario.
  4. Analyze these events later to understand cross-system user behavior.
Example: Workflow in n8n for CRM integration
Trigger: New contact created in CRM
Action: HTTP POST → LinkBridge API
Payload:
{
  "eventType": "custom_crm_contact_created",
  "websiteId": "68ab108c4a215929683ad3b9",
  "data": {
    "contactId": "7890",
    "source": "sales_team"
  }
}

Copyright © 2025 - All rights reserved