Google Sheets에서 Google Calendar 이벤트 자동 생성
초급
이것은Other, Support분야의자동화 워크플로우로, 5개의 노드를 포함합니다.주로 Code, GoogleCalendar, GoogleSheetsTrigger 등의 노드를 사용하며. Google Sheets 데이터 기반 자동 Google Calendar 이벤트 생성
사전 요구사항
- •Google Sheets API 인증 정보
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "AvCMhDoSUAYXsrQX",
"meta": {
"instanceId": "14e4c77104722ab186539dfea5182e419aecc83d85963fe13f6de862c875ebfa"
},
"name": "Automate Event Creation in Google Calendar from Google Sheets",
"tags": [],
"nodes": [
{
"id": "b973046b-ff52-464e-8d34-fe57c5b1df7d",
"name": "메모",
"type": "n8n-nodes-base.stickyNote",
"position": [
-240,
0
],
"parameters": {
"color": 6,
"width": 1200,
"height": 280,
"content": "# Automate Event Creation in Google Calendar from Google Sheets\n"
},
"typeVersion": 1
},
{
"id": "e845b624-6c0a-4d31-aace-cc050f8613dc",
"name": "메모1",
"type": "n8n-nodes-base.stickyNote",
"position": [
-240,
300
],
"parameters": {
"color": 6,
"width": 1200,
"height": 280,
"content": "## Description \nIn this workflow, we streamline the process of creating events in Google Calendar using event data stored in a Google Sheet through n8n automation. The workflow begins by retrieving the latest event entry from Google Sheets, ensuring that only the most recent event details are processed. Once the event data is fetched, a Function node is used to format the event date so that it aligns with Google Calendar's required format. This step ensures consistency and prevents any date-related errors.\n\nAfter formatting, the workflow sends the structured event details to Google Calendar, where the event is created with essential information such as the event title (summary), description, event date, and location. Additionally, the workflow allows customization by setting the event's status as either \"Busy\" or \"Available,\" helping attendees manage their schedules effectively. Furthermore, a background color can be assigned to the event to enhance visibility and categorization in the calendar.\n\nBy automating this process, the workflow eliminates the need for manual event creation, ensuring seamless synchronization between Google Sheets and Google Calendar. This approach improves efficiency, accuracy, and productivity, making event management effortless."
},
"typeVersion": 1
},
{
"id": "60f2c8b8-a953-4fc1-8751-01d8b7924cb2",
"name": "Event Date Formatter",
"type": "n8n-nodes-base.code",
"position": [
320,
100
],
"parameters": {
"jsCode": "// Get the last item from the input data\nconst lastEvent = items[items.length - 1].json;\n\n// Extract relevant fields\nconst eventName = lastEvent[\"Event Name\"];\nconst eventDescription = lastEvent[\"Event Description\"];\nconst currentYear = new Date().getFullYear(); \n// Get the current year\nconst location = lastEvent[\"Location\"];\n\n// Ensure the date includes the year\nconst formatDateWithYear = (dateStr) => {\n return dateStr.includes(currentYear) ? dateStr : `${dateStr} ${currentYear}`;\n};\n\n// Format the start date\nconst startDateString = formatDateWithYear(lastEvent[\"Event Start Date\"]); // Example: \"11 March 2024\"\n\n// Convert to JavaScript Date object\nconst startDate = new Date(startDateString);\n\n// Convert to ISO format (YYYY-MM-DD)\nconst formattedStartDate = startDate.toISOString().split(\"T\")[0]; // Extract only the date\n\n// Return the last event's formatted data\nreturn [{\n json: {\n eventName,\n eventDescription,\n startDate: formattedStartDate,\n location: location,\n }\n}];\n"
},
"typeVersion": 2
},
{
"id": "e27e0d10-71bb-4d01-ba92-5fb8c3195422",
"name": "New Event Entry Listener",
"type": "n8n-nodes-base.googleSheetsTrigger",
"position": [
-120,
100
],
"parameters": {
"event": "rowAdded",
"options": {
"valueRender": "FORMULA"
},
"pollTimes": {
"item": [
{
"mode": "everyMinute"
},
{}
]
},
"sheetName": {
"__rl": true,
"mode": "list",
"value": "gid=0",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1dKjIGmcnQgSEMVuWAAFVDaj_MCBFKBX8hCOk5OH2dK4/edit#gid=0",
"cachedResultName": "Sheet1"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1dKjIGmcnQgSEMVuWAAFVDaj_MCBFKBX8hCOk5OH2dK4",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1dKjIGmcnQgSEMVuWAAFVDaj_MCBFKBX8hCOk5OH2dK4/edit?usp=drivesdk",
"cachedResultName": "N8n Event List"
}
},
"typeVersion": 1
},
{
"id": "04864602-bf6a-4def-9bc3-c5ab4b5c8336",
"name": "Google 캘린더 Event Creator",
"type": "n8n-nodes-base.googleCalendar",
"position": [
700,
100
],
"parameters": {
"end": "={{ $json.startDate }}",
"start": "={{ $json.startDate }}",
"calendar": {
"__rl": true,
"mode": "list",
"value": "",
"cachedResultName": ""
},
"additionalFields": {
"color": "3",
"allday": "yes",
"summary": "={{ $json.eventName }}",
"location": "={{ $json.location }}",
"showMeAs": "transparent",
"description": "={{ $json.eventDescription }}",
"guestsCanInviteOthers": true
}
},
"typeVersion": 1.3
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "98bd043e-8dce-4eca-a22f-95ff61f07a1f",
"connections": {
"60f2c8b8-a953-4fc1-8751-01d8b7924cb2": {
"main": [
[
{
"node": "Google Calendar Event Creator",
"type": "main",
"index": 0
}
]
]
},
"e27e0d10-71bb-4d01-ba92-5fb8c3195422": {
"main": [
[
{
"node": "60f2c8b8-a953-4fc1-8751-01d8b7924cb2",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
초급 - 기타, 지원
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
Google 캘린더에서 오늘의 인터뷰 일정을 각 면접관에게 이메일로 발송
Google 캘린더에서 오늘의 인터뷰 일정을 각 면접관의 Gmail로 자동 전송
Code
Gmail
Google Calendar
+
Code
Gmail
Google Calendar
6 노드WeblineIndia
인사
시각화 참조 라이브러리에서 n8n 노드를 탐색
可视化 참조 라이브러리에서 n8n 노드를 탐색
If
Ftp
Set
+
If
Ftp
Set
113 노드I versus AI
기타
새로 수신된 이메일을 Google 스프레드시트에 새 행으로 추가
将新收로의电子이메일作为新行추가로Google Sheets电子表格中
Gmail Trigger
Google Sheets
Gmail Trigger
Google Sheets
4 노드WeblineIndia
기타
Google 연락처의 매일 생일 알림을 Slack으로 전송
Google 연락처에서 일일 생일 알림을 가져와 Slack으로 발송
If
Slack
Filter
+
If
Slack
Filter
7 노드WeblineIndia
기타
筛选된 Gmail 알림을 Telegram 채팅으로 전달
필터된 Gmail 알림을 Telegram 채팅으로 전달
If
Telegram
Gmail Trigger
+
If
Telegram
Gmail Trigger
5 노드WeblineIndia
지원
자동화된 일일 날씨 데이터 수집 및 저장
매일 날씨 데이터를 가져오고 Airtable에 저장합니다.
Airtable
Http Request
Schedule Trigger
+
Airtable
Http Request
Schedule Trigger
5 노드WeblineIndia
기타
워크플로우 정보
난이도
초급
노드 수5
카테고리2
노드 유형4
저자
WeblineIndia
@weblineindiaA Leading Software Engineering, Consulting & Outsourcing Services Company in USA & India serving Clients Globally since 1999.
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유