To get the most out of your ad spend and track real results, LeadJourney lets you send CRM sales data (like qualified leads or closed deals) from HubSpot via Zapier Webhooks.
In this guide, you’ll learn how to:
Trigger a Zap when a contact or deal updates in HubSpot
Validate that a LeadJourney Click ID exists and is valid
Send a GET Webhook to LeadJourney using Webhooks by Zapier
✅ What You Need Before You Start
A HubSpot account with admin permissions
A Zapier account
The LeadJourney Click ID stored in HubSpot (e.g., as a custom property on the contact or deal)
Your LeadJourney Webhook endpoint:
https://api.leadjourney.io/api/v1/postback?type=Lead&click_id={CLICKID_VARIABLE}
What Kind of Sales Data Can Be Sent?
This setup allows you to inform LeadJourney when:
A lead has been qualified
A deal has been marked as Closed-Won
A specific custom lifecycle stage has been reached (You can define custom offline conversions inside your dashboard)
This data is essential for attributing results correctly and sending conversion signals back to your ad platforms.
Step-by-Step Guide
Step 1: Create a New Zap
Log into Zapier
Click "Create Zap"
Set HubSpot as your Trigger App
Choose a trigger event, e.g.:
Contact Property Changed
Deal Stage Changed
Select the appropriate object (contact or deal) and test with a sample record
Important: You’ll need to define your triggers based on your specific CRM setup.
If you want to track a "Lead", we recommend using the trigger "Deal Created".
For tracking a "QualifiedLead", it's best to use "Deal Property Changed" or "Deal Stage Changed" .
Step 2: Add a JavaScript Validation Step
To ensure we only send postbacks when a valid Click ID is available:
Add a step: Code by Zapier
Choose Run JavaScript
Paste the following code:
const clickid = inputData.clickid; const uuidRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i; if (clickid && uuidRegex.test(clickid)) { output = { valid: true, clickid: clickid }; } else { output = { valid: false, clickid: clickid }; }
Add Input Data:
Key:
clickid
Value: The field from HubSpot where the Click ID is stored (e.g.
lj_click_id
)
Step 3: Add a Filter (Optional but Recommended)
Add a Filter by Zapier step
Set:
valid
(from JavaScript step) → is true
This ensures only valid Click IDs are passed through.
Step 4: Add Webhook by Zapier (GET Request)
Add an action: Webhooks by Zapier
Choose GET as the event
In the URL field, paste the following:
https://api.leadjourney.io/api/v1/postback?type=Lead&click_id={{ClickID}}
Replace {{ClickID}}
with the output from the JavaScript step (not from HubSpot directly).
Leave the rest of the fields blank
Click Continue and run a test
If successful, you’ll receive a confirmation from LeadJourney.
Final Checklist
HubSpot trigger set (e.g. deal marked as Closed-Won)
Click ID is validated using JavaScript
Filter step only continues with valid data
Webhook GET request is properly formatted and sends data to LeadJourney
Pro Tip:
If you have different event types (e.g., qualified lead, closed deal), you can add a custom parameter like type=QualifiedLead
or type=Sale
to the URL for more granular reporting.
Example:
https://api.leadjourney.io/api/v1/postback?type=Sale&click_id={{ClickID}}