{
  "meta": {
    "templateCredsSetupCompleted": true
  },
  "nodes": [
    {
      "id": "5dc54994-6a96-4da6-9122-892c51c612a7",
      "name": "Start: Daily at 09:00",
      "type": "n8n-nodes-base.cron",
      "position": [
        304,
        112
      ],
      "parameters": {
        "triggerTimes": {
          "item": [
            {
              "hour": 9
            }
          ]
        }
      },
      "typeVersion": 1
    },
    {
      "id": "3a4fd506-a282-4bd6-bcae-53b19ef9c8ad",
      "name": "Mailchimp: Get Subscribers",
      "type": "n8n-nodes-base.mailchimp",
      "position": [
        528,
        112
      ],
      "parameters": {
        "options": {},
        "operation": "getAll"
      },
      "typeVersion": 1
    },
    {
      "id": "0a75096a-b785-4bd2-a2de-b3742bc60f95",
      "name": "Sticky Note",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -320,
        -144
      ],
      "parameters": {
        "width": 544,
        "height": 640,
        "content": "# Daily Slack Summary of Mailchimp Subscribers\n\n## What this workflow does\nThis workflow sends a **daily Slack report** of your Mailchimp subscriber count.  \nIt helps marketing and growth teams stay up to date without opening Mailchimp.\n\n## How it works\n1. **Cron Trigger** runs once per day (default: 9:00 AM).  \n2. **Mailchimp node** fetches the total number of subscribers in a list.  \n3. **Slack node** posts a message with the subscriber count into your chosen Slack channel.\n\n## Setup\n- **Mailchimp:** Connect your Mailchimp account and replace `{{MAILCHIMP_LIST_ID}}` with the ID of your audience list.  \n- **Slack:** Connect your Slack account and replace `{{SLACK_CHANNEL}}` with the target channel (e.g. `#marketing`).  \n- Adjust the Cron schedule if you prefer another time."
      },
      "typeVersion": 1
    },
    {
      "id": "a7e417e8-9d41-4b6f-a364-4677012b83f6",
      "name": "Daily Mailchimp Report Message",
      "type": "n8n-nodes-base.slack",
      "position": [
        784,
        112
      ],
      "parameters": {
        "text": "=\ud83d\udcca Daily Mailchimp Report:|Total Subscribers: {{$json[\"_total\"]}}",
        "otherOptions": {}
      },
      "credentials": {
        "slackApi": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 2.3
    }
  ],
  "connections": {
    "Start: Daily at 09:00": {
      "main": [
        [
          {
            "node": "Mailchimp: Get Subscribers",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Mailchimp: Get Subscribers": {
      "main": [
        [
          {
            "node": "Daily Mailchimp Report Message",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}