Block 1 - 📒 Workflow Overview
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
Subscription Renewal Reminder – Email & ClickUp Automate the tracking of customer subscription expiry dates, create renewal tasks in ClickUp, and dispatch friendly email reminders before the due da...
n8n-nodes-base.stickynote, n8n-nodes-base.webhook, n8n-nodes-base.set, n8n-nodes-base.code, n8n-nodes-base.splitinbatches, n8n-nodes-base.wait, n8n-nodes-base.emailsend, n8n-nodes-base.if
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by vinci-king-01.
Original n8n.io sourceAutomate the tracking of customer subscription expiry dates, create renewal tasks in ClickUp, and dispatch friendly email reminders before the due date. The workflow listens for incoming subscription data, schedules reminder sequences, and updates ClickUp so your support or sales team never misses a renewal opportunity.
> Community Template Disclaimer > This workflow is provided by the n8n community for educational and demonstration purposes. Review, test, and adapt it to your own requirements before using in production.
| Item | Recommendation | Notes |
|---|---|---|
| ClickUp Folder/Space | Subscriptions |
Tasks will be created here |
| Email “From” Address | [email protected] |
Ensure DMARC/SPF alignment |
| Webhook Security | Signature header or basic authentication (opt.) | Protects against unauthorized calls |
Automate the tracking of customer subscription expiry dates, create renewal tasks in ClickUp, and dispatch friendly email reminders before the due date. The workflow listens for incoming subscription data, schedules reminder sequences, and updates ClickUp so your support or sales team never misses a renewal opportunity.
Setup Time: 15–25 minutes
.json file.POST.
b. Copy the Test URL and integrate it with your billing platform or form. Settings → Apps → API).
b. In n8n, Credentials → “ClickUp API”, paste the token. Subscriptions with optional custom fields: Plan, Renewal Date, Status. Your Subscription is Renewing Soon). {{$json["reminderDate"]}} (already pre-mapped). Adjust offsets if needed. // inside the Set node
const renewalDate = new Date($json.renewalDate);
item.firstReminder = new Date(renewalDate.getTime() - 30*24*3600*1000); // 30 days before
item.secondReminder = new Date(renewalDate.getTime() - 7*24*3600*1000); // 7 days before
return item;
// Code node before Email Send
const plan = $json.plan.toLowerCase();
if (plan === 'premium') {
item.subject = '⏰ Premium Plan Renewal';
item.body = 'Thanks for being a Premium member...';
} else {
item.subject = 'Your Subscription is Expiring';
item.body = 'Hi there! Your plan will renew soon...';
}
return item;
The workflow outputs structured JSON data:
{
"customerEmail": "[email protected]",
"plan": "Pro Monthly",
"renewalDate": "2024-12-31",
"reminderSent": true,
"clickUpTaskId": "9012abcd",
"status": "Pending Renewal"
}
Pro Tips:
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 subscription renewal reminders with Email and ClickUp |
|---|---|
| Complexity | advanced |
| Nodes | 18 |
| Categories | CRM |
| Author | vinci-king-01 |
| Published | 08 Feb 2026 |
Use the JSON export at /data/workflows/13259/13259.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.
Subscription Renewal Reminder – Email & ClickUp Automate the tracking of customer subscription expiry dates, create renewal tasks in ClickUp, and dispatch friendly email reminders before the due da...
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.