HubSpot Integration
Forward leads captured by your InfoLens agent into HubSpot. Native HubSpot OAuth integration is coming soon -- today the bridge runs through webhooks and Zapier.
Comment ca marche avec HubSpot
Three steps to forward InfoLens leads into HubSpot today.
Ce que vous obtenez
Forward InfoLens leads into HubSpot via webhook + Zapier today. Native integration coming soon.
lead.created Webhook
When the agent captures a lead, InfoLens fires a signed webhook your HubSpot bridge can listen to.
Works with Zapier
Use the InfoLens Zapier app's lead trigger and the official HubSpot Zap actions to create contacts without writing code.
Conversation Polling
Or poll the /v1/agents/leads endpoint from Zapier or your own backend to pull new leads on a schedule.
Native OAuth Coming Soon
A first-party HubSpot OAuth app with field mapping and two-way contact sync is on the roadmap.
Configuration rapide
Receive the InfoLens lead.created webhook and forward to HubSpot.
// Bridge InfoLens leads into HubSpot
// 1) Subscribe to lead.created in InfoLens (HMAC-signed)
// 2) Forward to HubSpot contacts API from Zapier or your backend
//
// Native HubSpot OAuth integration is coming soon.
{
"properties": [
{ "property": "email", "value": "{{lead.email}}" },
{ "property": "firstname", "value": "{{lead.name}}" },
{ "property": "hs_lead_status", "value": "NEW" }
]
}