This workflow follows the HTTP Request → Slack recipe pattern — see all workflows that pair these two integrations.
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": "TitanCrew \u2014 Daily Churn Prevention Scan",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "cronExpression",
"expression": "0 9 * * *"
}
]
}
},
"id": "daily-cron",
"name": "Daily 9:00 AM",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.1,
"position": [
240,
300
]
},
{
"parameters": {
"url": "={{ $env.AGENT_API_URL }}/meta-swarm/trigger",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Authorization",
"value": "=Bearer {{ $env.AGENT_API_SECRET }}"
}
]
},
"sendBody": true,
"specifyBody": "json",
"jsonBody": "{ \"event\": \"daily_churn_scan\", \"priority\": \"normal\" }",
"options": {
"timeout": 120000
}
},
"id": "run-churn-scan",
"name": "Run Daily Churn Scan",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
460,
300
]
},
{
"parameters": {
"conditions": {
"conditions": [
{
"leftValue": "={{ $json.result.interventionsStarted }}",
"rightValue": 0,
"operator": {
"type": "number",
"operation": "gt"
}
}
]
}
},
"id": "has-interventions",
"name": "Any Interventions?",
"type": "n8n-nodes-base.if",
"typeVersion": 2,
"position": [
680,
300
]
},
{
"parameters": {
"channel": "={{ $env.SLACK_OPS_CHANNEL }}",
"text": "=\ud83d\udee1\ufe0f Daily Churn Scan\n\u2022 Accounts scanned: {{ $json.result.accountsScanned }}\n\u2022 Interventions started: {{ $json.result.interventionsStarted }}\n\u2022 Time: {{ $now.toISO() }}",
"otherOptions": {}
},
"id": "slack-with-interventions",
"name": "Notify: Interventions Active",
"type": "n8n-nodes-base.slack",
"typeVersion": 2.1,
"position": [
900,
220
]
},
{
"parameters": {
"channel": "={{ $env.SLACK_OPS_CHANNEL }}",
"text": "=\u2705 Daily Churn Scan: All Clear\n\u2022 {{ $json.result.accountsScanned }} accounts checked \u2014 no at-risk accounts found.",
"otherOptions": {}
},
"id": "slack-all-clear",
"name": "Notify: All Clear",
"type": "n8n-nodes-base.slack",
"typeVersion": 2.1,
"position": [
900,
380
]
}
],
"connections": {
"Daily 9:00 AM": {
"main": [
[
{
"node": "Run Daily Churn Scan",
"type": "main",
"index": 0
}
]
]
},
"Run Daily Churn Scan": {
"main": [
[
{
"node": "Any Interventions?",
"type": "main",
"index": 0
}
]
]
},
"Any Interventions?": {
"main": [
[
{
"node": "Notify: Interventions Active",
"type": "main",
"index": 0
}
],
[
{
"node": "Notify: All Clear",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1",
"saveExecutionProgress": true
},
"tags": [
"titancrew",
"meta-swarm",
"churn",
"daily"
]
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
TitanCrew — Daily Churn Prevention Scan. Uses httpRequest, slack. Scheduled trigger; 5 nodes.
Source: https://github.com/rawdingcreatives-wq/thetitancrew.ai/blob/5a5f28af82a9fe2ade92ec5e40492f968aebad60/n8n-workflows/daily-churn-scan.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.
Stop the daily grind of checking multiple apps just to stay updated. This template automates the creation of recurring digests by querying a powerful AI assistant you build on the Super platform.
Politician Social Media Monitor. Uses httpRequest, slack. Scheduled trigger; 7 nodes.
Cron HTTP IF Slack. Uses httpRequest, slack. Scheduled trigger; 4 nodes.
This workflow is an automated employee time tracking and reporting system that monitors weekly work hours via TMetric, then delivers personalized summaries directly to each team member on Slack. It co
Import Productboard Notes Companies And Features Into Snowflake. Uses stickyNote, httpRequest, splitOut, snowflake. Scheduled trigger; 35 nodes.