Block 1 - Daily Employee Sync
- Type / Role
- n8n-nodes-base.scheduleTrigger - scheduleTrigger
- Config choices
- Version 1.1
This workflow is provided as-is. Please review and test before using in production.
Employee Directory Sync – Microsoft Teams & Coda ️ COMMUNITY TEMPLATE DISCLAIMER: This is a community contributed template that uses ScrapeGraphAI (a community node). Please ensure you have the Sc...
n8n-nodes-base.scheduletrigger, n8n-nodes-base.httprequest, n8n-nodes-base.if, n8n-nodes-base.microsoftteams, n8n-nodes-base.code, n8n-nodes-base.splitinbatches, n8n-nodes-base.set, n8n-nodes-base.coda
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by vinci-king-01.
Original n8n.io source⚠️ COMMUNITY TEMPLATE DISCLAIMER: This is a community-contributed template that uses ScrapeGraphAI (a community node). Please ensure you have the ScrapeGraphAI community node installed in your n8n instance before using this template.
This workflow keeps your employee directory perfectly synchronized across your HRIS (or any REST-compatible HR database), Microsoft Teams, Coda docs, and Slack channels. It automatically polls the HR system on a schedule, detects additions or updates, and propagates those changes to downstream tools so everyone always has the latest employee information.
| HRIS Field | Coda Column | Teams/Slack Field |
|---|---|---|
firstName |
First Name |
First Name |
lastName |
Last Name |
Last Name |
email |
Email |
|
title |
Job Title |
Job Title |
department |
Department |
Department |
(Adjust the mapping in the Set and Code nodes as needed.)
This workflow keeps your employee directory perfectly synchronized across your HRIS (or any REST-compatible HR database), Microsoft Teams, Coda docs, and Slack channels. It automatically polls the HR system on a schedule, detects additions or updates, and propagates those changes to downstream tools so everyone always has the latest employee information.
Setup Time: 10-15 minutes
https://api.yourhr.com/v1/employees).// Inside Schedule Trigger
{
"mode": "everyDay",
"hour": 6,
"minute": 0
}
// Inside Set node
items[0].json.phone = item.phoneNumber ?? '';
items[0].json.location = item.officeLocation ?? '';
return items;
The workflow outputs structured JSON data:
{
"employee": {
"id": "123",
"firstName": "Jane",
"lastName": "Doe",
"email": "[email protected]",
"title": "Senior Engineer",
"department": "R&D",
"status": "New Hire",
"syncedAt": "2024-05-08T10:15:23.000Z"
},
"destination": {
"codaRowId": "row_abc123",
"teamsMessageId": "msg_987654",
"slackTs": "1715158523.000200"
}
}
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 | Sync your HRIS employee directory with Microsoft Teams, Coda, and Slack |
|---|---|
| Complexity | advanced |
| Nodes | 19 |
| Categories | HR |
| Author | vinci-king-01 |
| Published | 08 Jan 2026 |
Use the JSON export at /data/workflows/12586/12586.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.
Employee Directory Sync – Microsoft Teams & Coda ️ COMMUNITY TEMPLATE DISCLAIMER: This is a community contributed template that uses ScrapeGraphAI (a community node). Please ensure you have the Sc...
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 HR use case.