The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "Webhook to Slack Notification",
"active": false,
"nodes": [
{
"id": "1",
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
100,
200
],
"parameters": {
"httpMethod": "POST",
"path": "notification",
"authentication": "none"
}
},
{
"id": "2",
"name": "Set Data",
"type": "n8n-nodes-base.set",
"typeVersion": 1,
"position": [
300,
200
],
"parameters": {
"values": {
"string": [
{
"name": "processed_at",
"value": "{{ $now }}"
},
{
"name": "status",
"value": "received"
}
]
}
}
},
{
"id": "3",
"name": "Slack",
"type": "n8n-nodes-base.slack",
"typeVersion": 1,
"position": [
500,
200
],
"parameters": {
"operation": "postMessage",
"channel": "#notifications",
"text": "\u041f\u043e\u043b\u0443\u0447\u0435\u043d webhook: {{ $json.data }}"
}
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Set Data",
"type": "main",
"index": 0
}
]
]
},
"Set Data": {
"main": [
[
{
"node": "Slack",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {},
"staticData": {}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Webhook to Slack Notification. Uses slack. Webhook trigger; 3 nodes.
Source: https://github.com/1987-Dmytro/n8n-agent/blob/abfad10d3611433336a5ca87c8cbd74ea47ec100/examples/mock_workflow_1.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Multi-Agent Pipeline Orchestrator. Uses httpRequest, executeCommand, slack, readWriteFile. Webhook trigger; 11 nodes.
[Tool] HITL Gate - ACTION NAME. Uses slack, httpRequest. Webhook trigger; 8 nodes.
Summarize Slack Conversation. Uses slack, respondToWebhook, lmChatOpenAi, chainLlm. Webhook trigger; 6 nodes.
Tool: Summarize Slack Conversation. Uses slack, lmChatOpenAi, chainLlm. Webhook trigger; 6 nodes.