Airtable - 반복 작업 자동화
중급
이것은Building Blocks분야의자동화 워크플로우로, 14개의 노드를 포함합니다.주로 Set, Code, Slack, Airtable, HttpRequest 등의 노드를 사용하며. Airtable - 자동화重复任务
사전 요구사항
- •Slack Bot Token 또는 Webhook URL
- •Airtable API Key
- •대상 API의 인증 정보가 필요할 수 있음
카테고리
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"meta": {
"instanceId": "257476b1ef58bf3cb6a46e65fac7ee34a53a5e1a8492d5c6e4da5f87c9b82833",
"templateId": "2070"
},
"nodes": [
{
"id": "99daceb3-fb96-4324-ac87-4ffef333dc81",
"name": "자동화 작업 가져오기",
"type": "n8n-nodes-base.airtable",
"position": [
1040,
660
],
"parameters": {
"id": "={{ $('Entered View \"First Task - Create Task\"').item.json[\"id\"] }}",
"base": {
"__rl": true,
"mode": "id",
"value": "={{ $item(\"0\").$node[\"Airtable Base ID's\"].json[\"base_id\"] }}"
},
"table": {
"__rl": true,
"mode": "id",
"value": "={{ $item(\"0\").$node[\"Airtable Base ID's\"].json[\"table_automate_id\"] }}"
},
"options": {},
"operation": "get"
},
"typeVersion": 2
},
{
"id": "4a29d735-5039-4935-9803-66df6a67e590",
"name": "작업 생성",
"type": "n8n-nodes-base.httpRequest",
"position": [
2140,
660
],
"parameters": {
"url": "=https://api.airtable.com/v0/{{ $item(\"0\").$node[\"Airtable Base ID's\"].json[\"base_id\"] }}/{{ $item(\"0\").$node[\"Airtable Base ID's\"].json[\"table_task_id\"] }}",
"method": "POST",
"options": {},
"jsonBody": "={\n \"records\": [\n {\n \"fields\": {\n \"Status\": \"Todo\",\n \"Task Name\": \"{{ $item(\"0\").$node[\"Get Task Template\"].json[\"Template Name\"] }}\",\n \"Task Description\": \"{{ $('Get Task Template').item.json[\"Description\"].replace(/\\r?\\n/g, \"\\\\n\") }}\",\n \"Kickoff Date\": \"{{ $('Calculate Dates').item.json[\"Kickoff Date\"] }}\",\n \"Soft Due Date\": \"{{ $('Calculate Dates').item.json[\"Soft Due Date\"] }}\",\n \"Hard Due Date\": \"{{ $('Calculate Dates').item.json[\"Hard Due Date\"] }}\",\n \"Assignee\": [\n \"{{ $('Get Assignee').item.json[\"id\"] }}\"\n ],\n \"Template\": [\n \"{{ $('Get Task Template').item.json[\"id\"] }}\"\n ],\n \"Client\": [\n \"{{ $('Get Client').item.json[\"id\"] }}\"\n ]\n }\n }\n ]\n}",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"authentication": "predefinedCredentialType",
"headerParameters": {
"parameters": [
{
"name": "Content-Type",
"value": "application/json"
}
]
},
"nodeCredentialType": "airtableTokenApi"
},
"typeVersion": 4.1
},
{
"id": "4d5e25f4-395f-4c47-8181-7dc7191b3b88",
"name": "작업 템플릿 가져오기",
"type": "n8n-nodes-base.airtable",
"position": [
1240,
660
],
"parameters": {
"id": "={{ $item(\"0\").$node[\"Get Automated Task\"].json[\"Template\"][\"0\"] }}",
"base": {
"__rl": true,
"mode": "id",
"value": "={{ $item(\"0\").$node[\"Airtable Base ID's\"].json[\"base_id\"] }}"
},
"table": {
"__rl": true,
"mode": "id",
"value": "={{ $item(\"0\").$node[\"Airtable Base ID's\"].json[\"table_template_id\"] }}"
},
"options": {},
"operation": "get"
},
"typeVersion": 2
},
{
"id": "fe7a3c49-738b-46d2-9276-2398dff3a449",
"name": "담당자 가져오기",
"type": "n8n-nodes-base.airtable",
"position": [
1460,
660
],
"parameters": {
"id": "={{ $item(\"0\").$node[\"Get Automated Task\"].json[\"Assigned Team Member\"][\"0\"] }}",
"base": {
"__rl": true,
"mode": "id",
"value": "={{ $item(\"0\").$node[\"Airtable Base ID's\"].json[\"base_id\"] }}"
},
"table": {
"__rl": true,
"mode": "id",
"value": "={{ $item(\"0\").$node[\"Airtable Base ID's\"].json[\"table_team_id\"] }}"
},
"options": {},
"operation": "get"
},
"typeVersion": 2
},
{
"id": "2b2e96a9-dd25-4d5f-a4db-aafd29fff907",
"name": "클라이언트 가져오기",
"type": "n8n-nodes-base.airtable",
"position": [
1660,
660
],
"parameters": {
"id": "={{ $item(\"0\").$node[\"Get Automated Task\"].json[\"Client\"][\"0\"] }}",
"base": {
"__rl": true,
"mode": "id",
"value": "={{ $item(\"0\").$node[\"Airtable Base ID's\"].json[\"base_id\"] }}"
},
"table": {
"__rl": true,
"mode": "id",
"value": "={{ $item(\"0\").$node[\"Airtable Base ID's\"].json[\"table_clients_id\"] }}"
},
"options": {},
"operation": "get"
},
"typeVersion": 2
},
{
"id": "504b3d7a-339c-42b7-b2ef-4a180ccc0f78",
"name": "날짜 계산",
"type": "n8n-nodes-base.code",
"position": [
1880,
660
],
"parameters": {
"jsCode": "// Retrieve values from the previous node\nconst firstTaskCreated = $item(\"0\").$node[\"Get Automated Task\"].json[\"First Task Created\"];\nconst startDate = $item(\"0\").$node[\"Get Automated Task\"].json[\"Start Date\"];\nconst lastTaskCreated = $item(\"0\").$node[\"Get Automated Task\"].json[\"Last Task Created\"];\nconst timeValue = $item(\"0\").$node[\"Get Automated Task\"].json[\"Time Value\"];\nconst daysForSoftDueDate = $item(\"0\").$node[\"Get Automated Task\"].json[\"Days for Soft Due Date\"];\n\n// Helper function to add days to a date\nfunction addDays(date, days) {\n let result = new Date(date);\n result.setDate(result.getDate() + days);\n return result;\n}\n\n// Helper function to format date in MM/DD/YYYY\nfunction formatDate(date) {\n return (date.getMonth() + 1) + '/' + date.getDate() + '/' + date.getFullYear();\n}\n\n// Calculate Kickoff Date\nlet kickoffDate;\nif (firstTaskCreated === \"false\") {\n kickoffDate = new Date(startDate);\n} else {\n kickoffDate = addDays(new Date(lastTaskCreated), timeValue);\n}\n\n// Calculate Soft Due Date\nconst softDueDate = addDays(kickoffDate, timeValue - daysForSoftDueDate);\n\n// Calculate Hard Due Date\nconst hardDueDate = addDays(kickoffDate, timeValue);\n\n// Get today's date\nconst today = new Date();\n\n// Calculate Next Task Creation Date (Hard Due Date minus 1 day)\nconst nextTaskCreationDate = addDays(hardDueDate, -1);\n\n// Prepare the output\nreturn [{\n json: {\n \"Kickoff Date\": formatDate(kickoffDate),\n \"Soft Due Date\": formatDate(softDueDate),\n \"Hard Due Date\": formatDate(hardDueDate),\n \"Today\": formatDate(today),\n \"Next Task Creation Date\": formatDate(nextTaskCreationDate)\n }\n}];\n"
},
"typeVersion": 2
},
{
"id": "ba33b165-57cf-4e9a-8f86-52b248333a04",
"name": "자동화 레코드 업데이트",
"type": "n8n-nodes-base.httpRequest",
"position": [
2420,
660
],
"parameters": {
"url": "=https://api.airtable.com/v0/{{ $item(\"0\").$node[\"Airtable Base ID's\"].json[\"base_id\"] }}/{{ $item(\"0\").$node[\"Airtable Base ID's\"].json[\"table_automate_id\"] }}",
"method": "PATCH",
"options": {},
"jsonBody": "={\n \"records\": [\n {\n \"id\": \"{{ $item(\"0\").$node[\"Get Automated Task\"].json[\"id\"] }}\",\n \"fields\": {\n \"First Task Created\": \"true\",\n \"Last Task Created\": \"{{ $('Calculate Dates').item.json[\"Today\"] }}\",\n \"Next Task Creation Date\": \"{{ $('Calculate Dates').item.json[\"Next Task Creation Date\"] }}\"\n }\n }\n ]\n}",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"authentication": "predefinedCredentialType",
"headerParameters": {
"parameters": [
{
"name": "Content-Type",
"value": "application/json"
}
]
},
"nodeCredentialType": "airtableTokenApi"
},
"typeVersion": 4.1
},
{
"id": "c2893a32-1b48-4974-8216-7fee6e6dd576",
"name": "담당자 알림",
"type": "n8n-nodes-base.slack",
"disabled": true,
"position": [
2680,
660
],
"parameters": {
"select": "channel",
"channelId": {
"__rl": true,
"mode": "list",
"value": ""
},
"otherOptions": {}
},
"typeVersion": 2.1
},
{
"id": "734d5319-2f55-4f21-b4d3-dae9e9adbf19",
"name": "스티키 노트",
"type": "n8n-nodes-base.stickyNote",
"position": [
380,
240
],
"parameters": {
"width": 577.8258549588782,
"height": 149.31896574204097,
"content": "## Resources\nThe Airtable template can be found here - https://www.airtable.com/universe/expDZ9rbZ9ZwZuTmX/recurring-tasks-automation"
},
"typeVersion": 1
},
{
"id": "fed9b237-3ff4-4c70-8e55-081b02f36d61",
"name": "스티키 노트1",
"type": "n8n-nodes-base.stickyNote",
"position": [
1860,
520
],
"parameters": {
"width": 519.2937872252622,
"height": 478.35585536865557,
"content": "### These nodes should be adapted to your custom Airtable Base. These nodes and the field names correspond to the template fields, but will not work if your tables field names, field type are different"
},
"typeVersion": 1
},
{
"id": "038f9b3d-60ca-4196-8a48-009d8a696a33",
"name": "진입 뷰 \"첫 작업 - 작업 생성\"",
"type": "n8n-nodes-base.airtableTrigger",
"position": [
500,
660
],
"parameters": {
"baseId": {
"__rl": true,
"mode": "id",
"value": "appPL3AkBc0iw5Z3x"
},
"tableId": {
"__rl": true,
"mode": "id",
"value": "tblp4KpAUGY9RqbMj"
},
"pollTimes": {
"item": [
{
"mode": "everyMinute"
}
]
},
"triggerField": "updated_at",
"authentication": "airtableTokenApi",
"additionalFields": {
"viewId": "viwsays8X5yn5Xl7g"
}
},
"typeVersion": 1
},
{
"id": "140e4d5d-7d2a-4e3a-bf3b-de993c8a65a1",
"name": "스티키 노트2",
"type": "n8n-nodes-base.stickyNote",
"position": [
960,
240
],
"parameters": {
"width": 408.1448240473296,
"height": 146.75862096834132,
"content": "## Walkthrough and Overview\n\n### https://www.youtube.com/watch?v=if3wr0tY-gk"
},
"typeVersion": 1
},
{
"id": "263c7619-763d-476f-8fe4-d79edfa874bc",
"name": "스티키 노트3",
"type": "n8n-nodes-base.stickyNote",
"position": [
0,
520
],
"parameters": {
"width": 400.220686283071,
"height": 575.7793015940845,
"content": "## Setup Checklist\n\n1. Go to the Airtable Template and copy the latest version of the base\n2. Go to the `Automate` table and open the view `First Task - Create Task`. From here, copy the BaseId, TableId and ViewId into the trigger. Make that the field \"updated_at\" is visible in the \"First Task - Create Task\" View\n3. Input your Airtable Id's in the second node \"Airtable Base ID's\"\n\n### The setup is now complete, now for testing:\n\n1. Go to the Airtable Interface Page called \"Automate a Template ⚙️\" and create an entry utilizing the dummy data.\n2. **Important** If you want to test the automation live, the Start Date should be set to TODAY. Please ensure your n8n automation is live."
},
"typeVersion": 1
},
{
"id": "709f91d9-6028-41c3-91a1-2335b31e94b2",
"name": "Airtable 기본 ID",
"type": "n8n-nodes-base.set",
"position": [
720,
660
],
"parameters": {
"fields": {
"values": [
{
"name": "base_id",
"stringValue": "appVtUCDmP7LnG8bV"
},
{
"name": "table_task_id",
"stringValue": "tblbkEKwqEAuY6kBW"
},
{
"name": "table_template_id",
"stringValue": "tbl7f8iV3qLUvirPX"
},
{
"name": "table_clients_id",
"stringValue": "tbljzJBlyrHwzEXXK"
},
{
"name": "table_team_id",
"stringValue": "tblKlBfYzCWVzY0Mh"
},
{
"name": "table_automate_id",
"stringValue": "tblvMBrTFj5CI1kUH"
}
]
},
"include": "none",
"options": {}
},
"typeVersion": 3.2
}
],
"pinData": {},
"connections": {
"2b2e96a9-dd25-4d5f-a4db-aafd29fff907": {
"main": [
[
{
"node": "504b3d7a-339c-42b7-b2ef-4a180ccc0f78",
"type": "main",
"index": 0
}
]
]
},
"4a29d735-5039-4935-9803-66df6a67e590": {
"main": [
[
{
"node": "ba33b165-57cf-4e9a-8f86-52b248333a04",
"type": "main",
"index": 0
}
]
]
},
"fe7a3c49-738b-46d2-9276-2398dff3a449": {
"main": [
[
{
"node": "2b2e96a9-dd25-4d5f-a4db-aafd29fff907",
"type": "main",
"index": 0
}
]
]
},
"504b3d7a-339c-42b7-b2ef-4a180ccc0f78": {
"main": [
[
{
"node": "4a29d735-5039-4935-9803-66df6a67e590",
"type": "main",
"index": 0
}
]
]
},
"4d5e25f4-395f-4c47-8181-7dc7191b3b88": {
"main": [
[
{
"node": "fe7a3c49-738b-46d2-9276-2398dff3a449",
"type": "main",
"index": 0
}
]
]
},
"709f91d9-6028-41c3-91a1-2335b31e94b2": {
"main": [
[
{
"node": "99daceb3-fb96-4324-ac87-4ffef333dc81",
"type": "main",
"index": 0
}
]
]
},
"99daceb3-fb96-4324-ac87-4ffef333dc81": {
"main": [
[
{
"node": "4d5e25f4-395f-4c47-8181-7dc7191b3b88",
"type": "main",
"index": 0
}
]
]
},
"ba33b165-57cf-4e9a-8f86-52b248333a04": {
"main": [
[
{
"node": "c2893a32-1b48-4974-8216-7fee6e6dd576",
"type": "main",
"index": 0
}
]
]
},
"038f9b3d-60ca-4196-8a48-009d8a696a33": {
"main": [
[
{
"node": "709f91d9-6028-41c3-91a1-2335b31e94b2",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 빌딩 블록
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
WordPress 콘텐츠 생성기 v3
WordPress 내용 생성기 v3
If
Set
Code
+
If
Set
Code
102 노드Alex Kim
인공지능
🤖 고급 슬랙본트(n8n)
🤖 고급 슬랙본트(n8n)
If
Set
Code
+
If
Set
Code
34 노드Mutasem
엔지니어링
OpenAI, Ahrefs 및 다중 플랫폼 통합을 사용한 자동화된 콘텐츠 마케팅 인텔리전스
OpenAI, Ahrefs 및 다중 플랫폼 연동을 사용한 자동화된 콘텐츠 마케팅 인텔리전스
If
Set
Code
+
If
Set
Code
21 노드Nikan Noorafkan
시장 조사
SEO 키워드 모니터링
Apify와 ZeroBounce를 통합한 자동화 YouTube 채널 리드 생성 및 이메일 도달
If
Code
Merge
+
If
Code
Merge
13 노드Yaron Been
인공지능
AI를 사용하여 LinkedIn 기여 내용 생성하고 Slack에서 사용자에게 알림
AI를 통해 LinkedIn 기여 및 Slack에서 사용자 알림
Set
Code
Html
+
Set
Code
Html
33 노드Darryn
인공지능
텍스트, 음성, 이미지 및 PDF를 지원하는 AI 기반 WhatsApp 챗봇(RAG)
텍스트, 음성, 이미지 및 PDF 지원 AI 기반 WhatsApp 챗봇(RAG)
Set
Code
Switch
+
Set
Code
Switch
35 노드NovaNode
엔지니어링