Integrations
Integration Guide
Connect external lead sources to SalesIQ for automatic lead capture. Every lead is auto-scored, de-duplicated, and assigned to your team.
How It Works
๐
External Source
99acres, Facebook, Website
โ
๐ก
Webhook POST
Sends JSON to your URL
โ
๐ง
SalesIQ Engine
Score, de-dup, assign
โ
๐
Your Dashboard
Lead appears instantly
Step 1: Get Your API Key
- Log in to SalesIQ as an admin (Company Master)
- Go to Dashboard โ Integrations
- Click "Generate API Key"
- Copy your key (format:
sqk_live_xxxxxxxxxxxx)
โ ๏ธ Keep your API key secret
Your API key gives access to create leads in your workspace. Never share it publicly or commit it to version control.
Step 2: Configure Your Source
๐ 99acres / Magicbricks / Housing.com
- Log into your property portal account
- Go to Settings โ Lead Notifications โ Webhook/API
- Set webhook URL:
https://crm.megallow.com/api/leads/capture - Add header:
x-api-key: YOUR_API_KEY - Send a test lead to verify
๐ Facebook Lead Ads
- Create a free Zapier account
- Create a new Zap: Trigger = "Facebook Lead Ads โ New Lead"
- Action = "Webhooks by Zapier โ POST"
- URL:
https://crm.megallow.com/api/leads/capture - Add header:
x-api-key: YOUR_API_KEY - Map: name, phone, email, source="Facebook"
๐ Website Contact Form
Add this to your website's form handler:
fetch('https://crm.megallow.com/api/leads/capture', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': 'YOUR_API_KEY'
},
body: JSON.stringify({
name: form.name,
phone: form.phone,
email: form.email,
source: 'Website'
})
});Supported Sources
99acresMagicbricksHousing.comFacebook AdsGoogle AdsWebsiteJustDialIndiaMARTReferralWalk-inZapierMaken8nCustom