Sales CRM webhooks

In this page you find the currently supported Sales webhook events and their respective payload.

Deals webhook events

Deals webhook events

Task completed

Attribute nameDatatypeDescription
completion_dateStringTask completion date
due_dateStringDue date of task
nameStringName of the task
taskTypeStringType of task
taskTypeIdStringTask type ID
task_idStringTask ID
{
  "completion_date": "2025-06-10T07:09:01.696Z",
  "due_date": "2025-06-10T07:09:01.696Z",
  "name": "Reportingtask",
  "taskType": "Reporting",
  "taskTypeId": "5f000878-0070-4b1c-8931-2c8004cf00da",
  "task_id": "844xx18c-f4ec-480e-xxde-9df8xxa3xxde"
}

Task created

Attribute nameDatatypeDescription
assign_toStringIndicates who the task is assigned to
due_dateStringDue date of the task
nameStringName of the task
priorityBoolIndicates if task is priority or not; True for priority task
taskTypeStringTask type
taskTypeIdStringTask type ID
{
  "assign_to": "Assignee",
  "due_date": "2025-06-10T07:09:01.696Z",
  "name": "Reportingtask",
  "priority": true,
  "taskType": "5f000878-0070-4b1c-8931-2c8004cf00da",
  "taskTypeId": "844xx18c-f4ec-480e-xxde-9df8xxa3xxde"
}

Deal stage updated

Attribute nameDatatypeDescription
amountNumericAmount associated with deal
deal_idStringDeal ID
deal_nameStringDeal name
lost_reasonStringReason for loss of deal
pipeline_idStringPipeline ID
pipeline_nameStringPipeline name
stage_idStringStage ID
stage_nameStringStage name
{
  "amount": 750,
  "deal_id": "0d000913-009f-4d86-00f9-002580002511",
  "deal_name": "Deal123",
  "lost_reason": "Budget constraint",
  "pipeline_id": "bxxd35ef-c0f0-41e8-xx8a-7f820004bd57",
  "pipeline_name": "Pipeline123",
  "stage_id": "49xx7da7-axxd-4b72-xx6a-93b1dxxxcc25",
  "stage_name": "Negotiation"
}

Deal created

Attribute nameDatatypeDescription
amountNumericAmount associated with deal
deal_idStringDeal ID
deal_nameStringDeal name
lost_reasonStringReason for loss of deal
pipeline_idStringPipeline ID
pipeline_nameStringPipeline name
stage_idStringStage ID
stage_nameStringStage name
{
  "amount": 750,
  "deal_id": "0d000913-009f-4d86-00f9-002580002511",
  "deal_name": "Deal123",
  "lost_reason": "Budget constraint",
  "pipeline_id": "bxxd35ef-c0f0-41e8-xx8a-7f820004bd57",
  "pipeline_name": "Pipeline123",
  "stage_id": "49xx7da7-axxd-4b72-xx6a-93b1dxxxcc25",
  "stage_name": "Negotiation"
}