Zapier Integration
Connect InfoLens to 7,000+ apps with Zapier. Automate document ingestion, trigger workflows from conversations, and build powerful no-code automations.
Como funciona con Zapier
Four steps to automate your AI workflows with Zapier.
When: New file in Google Drive
Triggers when a new file is added
Then: Ingest in InfoLens
Upload and process the document
Lo que obtienes
Automate everything -- no code, no infrastructure, no limits.
7,000+ App Connections
Connect InfoLens to Google Drive, Dropbox, Notion, Airtable, Salesforce, HubSpot, and thousands more.
Document Auto-Ingestion
Automatically ingest documents when they appear in Google Drive, Dropbox, or any cloud storage.
Conversation Webhooks
Active flujos de trabajo de Zapier cuando ocurren eventos canónicos en InfoLens: conversation.created, lead.created o escalation.triggered.
Multi-Step Zaps
Build complex workflows: receive a form, search InfoLens, generate a response, and send it via email -- all automated.
Pre-Built Templates
Start quickly with pre-built Zap templates for common use cases like document sync, lead routing, and notification flows.
Configuracion rapida
For advanced users: use a Code step to call the InfoLens API directly.
// InfoLens Zapier Code Step
const response = await fetch(
'https://api.infolens.ai/v1/retrieval/search',
{
method: 'POST',
headers: {
'Authorization': 'Bearer pk_live_...',
'Content-Type': 'application/json'
},
body: JSON.stringify({
query: inputData.question,
limit: 5
})
}
);
const data = await response.json();
output = [{ answer: data.results[0].text }];