Block 1 - 📝 Workflow Overview
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
Daily Report Generator with Mattermost and HubSpot This workflow automatically compiles key metrics from HubSpot (and optional internal data sources) into a concise daily summary and posts it to a ...
n8n-nodes-base.stickynote, n8n-nodes-base.webhook, n8n-nodes-base.set, n8n-nodes-base.httprequest, n8n-nodes-base.if, n8n-nodes-base.merge, n8n-nodes-base.code, n8n-nodes-base.hubspot
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by vinci-king-01.
Original n8n.io sourceThis workflow automatically compiles key metrics from HubSpot (and optional internal data sources) into a concise daily summary and posts it to a designated Mattermost channel. It helps sales and marketing teams stay informed without manually pulling reports or navigating multiple dashboards.
| Component | Requirement | Example/Notes |
|---|---|---|
| Mattermost | Create an Incoming Webhook or generate a PAT | System Console → Integrations |
| HubSpot | Create a Private App → Scopes: crm.objects.deals.read |
Settings → Integrations → Private Apps |
| Scheduler | External cron job or n8n’s internal trigger* | curl https://n8n.yourdomain.com/webhook/daily_report |
*The provided template uses a Webhook node so you can trigger it via any scheduler (e.g., crontab, Zapier, GitHub Actions). Replace with the Cron node if preferred.
This workflow automatically compiles key metrics from HubSpot (and optional internal data sources) into a concise daily summary and posts it to a designated Mattermost channel. It helps sales and marketing teams stay informed without manually pulling reports or navigating multiple dashboards.
Setup Time: 15-20 minutes
// HubSpot Node → Additional Fields
{
"filterGroups": [{
"filters": [{
"propertyName": "createdate",
"operator": "BETWEEN",
"highValue": Date.now(),
"value": Date.now() - 24 * 60 * 60 * 1000 // last 24h
}]
}]
}
// Code Node (return statement)
return [{
json: {
text: `:bar_chart: **Daily CRM Report**\n\n• New Deals: ${newDeals}\n• New Contacts: ${newContacts}\n• Win Rate: ${winRate}%`
}
}];
The workflow outputs structured JSON data:
{
"status": "success",
"date": "2024-05-23",
"hubspot": {
"new_deals": 12,
"new_contacts": 34,
"win_rate": 27.1
},
"internal": {
"tickets_opened": 8,
"tickets_closed": 6
},
"mattermostPostId": "abc123xyz"
}
post:write or the webhook URL is valid.Pro Tips:
{{$env.HUBSPOT_TOKEN}}) to avoid hard-coding secrets.This is a community workflow template provided “as-is.” It is not officially supported by n8n GmbH. Always review and test in a development environment before deploying to production.
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Send daily CRM summary reports to Mattermost from HubSpot |
|---|---|
| Complexity | advanced |
| Nodes | 22 |
| Categories | CRM |
| Author | vinci-king-01 |
| Published | 17 Jan 2026 |
Use the JSON export at /data/workflows/12781/12781.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Daily Report Generator with Mattermost and HubSpot This workflow automatically compiles key metrics from HubSpot (and optional internal data sources) into a concise daily summary and posts it to a ...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your CRM use case.