Connect Convor to thousands of apps using Zapier REST hooks. When events happen in Convor (new conversations, messages, assignments), Zapier can automatically t
Connect Convor to thousands of apps using Zapier REST hooks. When events happen in Convor (new conversations, messages, assignments), Zapier can automatically trigger actions in your CRM, email, project management, or any other connected service.
Convor uses Zapier's REST Hooks pattern (subscription-based webhooks). You register a subscription from your Zapier dashboard, and Convor sends HTTP POST requests to Zapier's callback URL whenever a matching event occurs. Each payload is HMAC-signed so Zapier can verify authenticity.
The following events are available as Zapier triggers:
| Event | Description |
|---|---|
| conversation.created | A new conversation is started by a visitor |
| conversation.resolved | A conversation is marked as resolved |
| message.created | A new message is sent in a conversation |
| conversation.assigned | A conversation is assigned to an operator |
| csat.submitted | A visitor submits a CSAT satisfaction rating |
To connect Convor to Zapier, follow these steps:
Each event is delivered as a JSON POST with the following structure:
{
"event": "conversation.created",
"timestamp": "2025-01-15T10:30:00.000Z",
"data": {
"conversationId": "uuid-...",
"visitorId": "uuid-...",
"status": "open",
"channel": "widget"
}
}All webhook payloads are signed with HMAC-SHA256. The signature is included in the X-Convor-Signature header in the format sha256=<hex-digest>. The event type is in the X-Convor-Event header. Use these headers in Zapier to verify payload authenticity.
{
"X-Convor-Signature": "sha256=a1b2c3d4...",
"X-Convor-Event": "conversation.created",
"Content-Type": "application/json"
}Tip
Subscription target URLs must use HTTPS and cannot point to localhost or private IP addresses. You can create up to 10 subscriptions per organization.
Last updated: Jun 24, 2026
Was this page helpful?
Google Analytics Integration
The Google Analytics 4 integration lets Convor send chat interaction events directly to your GA4 property via the Measurement Protocol API. Track conversations,
Facebook Messenger Integration
Connect a Facebook Page to Convor through Meta authorization and handle Messenger conversations from the shared inbox.