
{ "webhooks": [ { "headers": { "module_parameters": [ { "name": "Lead_Email", "value": "${!Leads.Email}" }, { "name": "Annual_Revenue", "value": "${!Leads.Annual_Revenue}" }, { "name": "Profit_Score", "value": "${!Leads.Profit_Score}" } ], "custom_parameters": [ { "name": "source", "value": "zylker-crm" }, { "name": "version", "value": "v1" } ] }, "created_time": "2025-11-30T07:18:50-08:00", "lock_status": { "locked": false }, "editable": true, "module": { "api_name": "Leads", "id": "5725767000000002175" }, "related_module": null, "url_parameters": null, "deletable": true, "description": "Send leads with Profit Score > 80 to validation system.", "source": "crm", "body": { "format": null, "type": "none" }, "created_by": { "name": "Patricia Boyle", "id": "5725767000000411001" }, "feature_type": "workflow", "http_method": "POST", "modified_time": "2025-11-30T07:18:50-08:00", "associated": false, "name": "Push High Score Leads", "modified_by": { "name": "Patricia Boyle", "id": "5725767000000411001" }, "id": "5725767000008778002", "date_time_format": null, "authentication": { "connection_name": null, "type": "general" } } ] } |
{ "webhooks": [ { "headers": { "module_parameters": [ { "name": "Lead_Email", "value": "${!Leads.Email}" }, { "name": "Profit_Score", "value": "${!Leads.Profit_Score}" }, { "name": "Lead_Industry", // adding a new field "value": "${!Leads.Industry}" } ], "custom_parameters": [ { "name": "source", "value": "zylker-crm" }, { "name": "version", "value": "v1" } ] }, "url": "https://webhook.site/abcd1234-5678-90ef-ghij-123456789axx", // changing external application's URL "http_method": "POST" } ] } |
{ "webhooks": [ { "code": "SUCCESS", "details": { "id": "5725767000008778002" }, "message": "Webhook is deleted", "status": "success" } ] } |
{ "workflow_rules": [ { . . . "execute_when": { "details": { "trigger_module": { "api_name": "Leads", "id": "5725767000000002175" } }, "type": "create_or_edit" }, "module": { "api_name": "Leads", "id": "5725767000000002175" }, "name": "High Profit Leads", "conditions": [ { "instant_actions": { "actions": [ { "name": "Push High Score Leads", "id": "5725767000008775001", //associating the created Webhooks with the Workflow "type": "webhooks" } ] }, "scheduled_actions": null, "criteria_details": { . . . "criteria": { "comparator": "greater_equal", "field": { "api_name": "Profit_Score", "id": "5725767000008570336" }, "type": "value", "value": "80" } } } ], . . . } ] } |

{ "data": [ { "Owner": { "name": "Tim", "id": "5725767000000411001", "email": "tim@zoho.com" }, "Annual_Revenue": 2000000, "Full_Name": "Patricia Boyle", "Layout": { "name": "Standard", "id": "5725767000000091055" }, "Company": "Info Technology", "Email": "infotech@mail.com", "Industry": "Large Enterprise", "First_Name": "Patricia", "Profit_Score": 90, "Profit_Category": "High Profit", "Last_Name": "Boyle" } ] } |

Workflow Rules and Actions APIs on Kaizen series:
Workflow Rules:
Kaizen #213 - Workflow APIs - Part 1
Kaizen #214 - Workflow APIs - Part 2
Kaizen #215 - Workflow APIs - Part 3 - Create and Update Workflow Rules
Actions APIs:
Kaizen #216 - Actions APIs : Email Notifications