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": "Follow-Up Reminder Queue",
"notes": "Sample n8n export that asks the API for overdue follow-up reminders and hands the list to a messaging step.",
"nodes": [
{
"id": "schedule-trigger",
"name": "Daily Schedule",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [
320,
300
],
"parameters": {
"mode": "everyDay",
"hour": 9,
"minute": 0
}
},
{
"id": "post-reminders",
"name": "POST Reminder Request",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
620,
300
],
"parameters": {
"method": "POST",
"url": "={{$env.JOBOPS_API_BASE_URL}}/api/n8n/follow-up-reminders",
"authentication": "none",
"sendHeaders": true,
"headerParametersUi": {
"parameter": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "X-N8N-Webhook-Secret",
"value": "={{$env.N8N_WEBHOOK_SECRET}}"
}
]
},
"sendBody": true,
"specifyBody": "json",
"jsonBody": "={{ JSON.stringify({ as_of: new Date().toISOString() }) }}"
}
}
],
"connections": {
"Daily Schedule": {
"main": [
[
{
"node": "POST Reminder Request",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
},
"active": false
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Follow-Up Reminder Queue. Uses httpRequest. Scheduled trigger; 2 nodes.
Source: https://github.com/Taleef7/jobops-copilot/blob/main/workflows/n8n/exports/follow-up-reminders.workflow.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.
ELYVN Deploy Verifier. Uses httpRequest. Scheduled trigger; 6 nodes.
03 · Auditoria Diária — Carlos. Uses httpRequest. Scheduled trigger; 6 nodes.
Fechamento Mensal - Automação. Uses httpRequest, emailSend. Scheduled trigger; 6 nodes.