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.
Ostatnia aktualizacja: 24 cze 2026
Czy ta strona była pomocna?
WordPress Integration
Connect WordPress to Convor with Application Passwords, selected post types, and a manual widget script embed.
Widget JavaScript API
Complete reference for the Convor widget browser API: route synchronization, visitor prefill, verified identity, metadata, events, and programmatic chat control.