AtlasBrokers pushes real-time event notifications to any HTTPS endpoint. Use webhooks to sync external systems, trigger Zapier workflows, build Make.com scenarios, or create custom automations without polling.
Every webhook delivery sends a JSON envelope with consistent top-level fields:
{
"event": "deal.won",
"timestamp": "2026-03-02T14:23:11.000Z",
"workspaceId": "ws_abc123",
"data": {
"id": "deal_mno321",
"title": "Home Insurance Policy — Mitchell",
"value": 2400,
"currency": "CAD",
"closedAt": "2026-03-05T09:00:00.000Z"
}
}| Field | Type | Description |
|---|---|---|
event | string | The event type (e.g. deal.won, lead.created) |
timestamp | ISO 8601 | UTC timestamp when the event was fired |
workspaceId | string | The workspace ID that generated the event |
data | object | Event-specific payload (see Event Catalog for schema) |
When you set a webhook secret, AtlasBrokers signs every delivery with HMAC-SHA256. The signature is sent in the X-Webhook-Secret header. Verify it on your server to confirm authenticity.
Node.js / TypeScript
import crypto from 'crypto';
function verifyWebhook(
rawBody: string, // raw request body string (before JSON.parse)
secret: string, // your webhook secret from AtlasBrokers settings
header: string, // value of X-Webhook-Secret header
): boolean {
const expected = crypto
.createHmac('sha256', secret)
.update(rawBody)
.digest('hex');
return crypto.timingSafeEqual(
Buffer.from(expected, 'hex'),
Buffer.from(header, 'hex'),
);
}Python
import hmac, hashlib
def verify_webhook(raw_body: bytes, secret: str, header: str) -> bool:
expected = hmac.new(
secret.encode('utf-8'),
raw_body,
hashlib.sha256,
).hexdigest()
return hmac.compare_digest(expected, header)Click any event to see its sample payload. All 15 events are available as webhook triggers.
Connect AtlasBrokers to 5,000+ apps via Webhooks by Zapier. No custom Zapier app required.
Recommended events for Zapier: lead.created, deal.won, invoice.paid
Use Make.com (formerly Integromat) to build visual automation scenarios with AtlasBrokers webhook data.
Popular Make.com use cases: CRM sync, Slack notifications on deal.won, Google Sheets logging of leads, SMS alerts on claim.filed.
timestamp field.