This project demonstrates a Low-Code Automation Workflow designed to bridge the gap between Marketing Operations (CRM) and IT Service Management (ServiceNow).
High-value clients often report critical issues via marketing forms (HubSpot/Pipedrive) rather than the official Support Portal. These emails often get lost in the Sales inbox, leading to delayed response times and SLA breaches.
I architected an automated workflow using n8n that listens for incoming high-priority leads and instantly creates a tracked Incident in ServiceNow.
- ServiceNow REST Table API: For creating Incident records (
incidenttable). - n8n (Workflow Automation): To orchestrate the logic.
- JSON/Webhooks: To parse the incoming data payload.
- Webhook Trigger: Receives payload from CRM form submission.
- Condition Logic: Checks if
priority == 'high'. - API Action:
- POST to
https://instance.service-now.com/api/now/table/incident - Maps
email->caller_id - Maps
message->short_description - Sets
urgency->1(Critical)
- POST to
- Slack Notification: Alerts the Account Manager instantly.
Import the workflow.json file directly into your n8n instance to see the node configuration.