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

  1. Log in to SalesIQ as an admin (Company Master)
  2. Go to Dashboard โ†’ Integrations
  3. Click "Generate API Key"
  4. 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

  1. Log into your property portal account
  2. Go to Settings โ†’ Lead Notifications โ†’ Webhook/API
  3. Set webhook URL: https://crm.megallow.com/api/leads/capture
  4. Add header: x-api-key: YOUR_API_KEY
  5. Send a test lead to verify

๐Ÿ“˜ Facebook Lead Ads

  1. Create a free Zapier account
  2. Create a new Zap: Trigger = "Facebook Lead Ads โ†’ New Lead"
  3. Action = "Webhooks by Zapier โ†’ POST"
  4. URL: https://crm.megallow.com/api/leads/capture
  5. Add header: x-api-key: YOUR_API_KEY
  6. 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