Dashboard

Shortcuts for the Hoverland admin UI.

Quick links

Jump straight to the tools you use most.

Zapier Setup (Leads Webhook)

Use this info in Zapier → Webhooks by Zapier → “POST”.

Endpoint
https://api.hoverland.hoverlayer.com/webhooks/leads
Headers
X-Hoverland-Secret: <your secret>
Content-Type: application/json
Idempotency-Key: <unique lead id>
JSON example body
{
  "lead_id": "zapier-12345",
  "full_name": "Jane Doe",
  "email": "jane@example.com",
  "phone": "+1-555-555-5555",
  "source": "zapier",
  "notes": "Requested a quote",
  "metadata": {
    "campaign": "facebook-ads",
    "form": "landing-page"
  }
}
Tip: set Idempotency-Key to a stable unique value per lead (ex: lead id, email+timestamp, or Zapier task id).