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.
With Zapier, you can trigger events from thousands of apps and send them into LinkBridge as custom_...
events for analytics.
custom_...
event with identifiers and metadata.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 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.
custom_...
or win_...
events depending on your scenario.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" } }
💡 Use Case:
Track offline or third-party processes (CRM activity, form submissions, payment system events) directly inside LinkBridge. This way, your dashboards reflect the complete journey across both your site and external workflows — without exposing sensitive user data outside your control.
Copyright © 2025 - All rights reserved