Skip to main content
Webhooks

Webhook Notifications

Receive real-time notifications when events occur in your CRM.

Available Events

EventDescriptionCategory
contact.createdNew contact addedContacts
contact.updatedContact information changedContacts
deal.createdNew deal createdDeals
deal.stage_changedDeal moved to new stageDeals
deal.wonDeal marked as wonDeals
deal.lostDeal marked as lostDeals
activity.completedTask or activity completedActivities

Webhook Payload

Example: deal.stage_changed
{
  "id": "evt_crm_1234567890",
  "type": "deal.stage_changed",
  "timestamp": "2024-12-04T10:30:00Z",
  "data": {
    "deal_id": "deal_abc123",
    "deal_name": "Enterprise Contract",
    "previous_stage": "Proposal",
    "new_stage": "Negotiation",
    "value": 125000,
    "owner_id": "user_xyz789"
  }
}

Next Steps