JotForm、GPT-4o-mini、Google Workspaceを使用した従業員の入社業務の自動化
中級
これは自動化ワークフローで、14個のノードを含みます。主にIf, Set, Code, Gmail, GoogleSheetsなどのノードを使用。 JotForm、GPT-4o-mini、Google Workspaceを使用した従業員採用業務の自動化
前提条件
- •Googleアカウント + Gmail API認証情報
- •Google Sheets API認証情報
- •OpenAI API Key
カテゴリー
-
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"meta": {
"instanceId": "277842713620d9f5554de3b1518b865a152c8c4db680008bd8aec536fc18b4a8",
"templateCredsSetupCompleted": true
},
"nodes": [
{
"id": "d150c537-4eb1-4fd8-b242-a6cac7703d5b",
"name": "JotForm トリガー",
"type": "n8n-nodes-base.jotFormTrigger",
"position": [
-2240,
-192
],
"webhookId": "onboarding-jotform-001",
"parameters": {
"form": "252852702090453"
},
"credentials": {
"jotFormApi": {
"id": "W7O1b225FpOwkwDT",
"name": "JotForm account-Deepanshi"
}
},
"typeVersion": 1
},
{
"id": "f058540a-e32e-418c-907e-db977776bdde",
"name": "オンボーディングデータ抽出",
"type": "n8n-nodes-base.set",
"position": [
-2000,
-192
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "employee_name",
"name": "employee_name",
"type": "string",
"value": "={{ $json['Employee Name'] }}"
},
{
"id": "employee_email",
"name": "employee_email",
"type": "string",
"value": "={{ $json['Employee Email'] }}"
},
{
"id": "start_date",
"name": "start_date",
"type": "string",
"value": "={{ $json['Start Date'] }}"
},
{
"id": "position",
"name": "position",
"type": "string",
"value": "={{ $json.Position }}"
},
{
"id": "department",
"name": "department",
"type": "string",
"value": "={{ $json.Department }}"
},
{
"id": "manager_email",
"name": "manager_email",
"type": "string",
"value": "={{ $json['Manager Email'] }}"
},
{
"id": "location",
"name": "location",
"type": "string",
"value": "=India"
},
{
"id": "laptop_type",
"name": "laptop_type",
"type": "string",
"value": "={{ $json['Laptop Type'] }}"
},
{
"id": "experience_level",
"name": "experience_level",
"type": "string",
"value": "={{ $json['Experience Level'] }}"
},
{
"id": "onboarding_id",
"name": "onboarding_id",
"type": "string",
"value": "=ONB-{{ Date.now() }}-{{ Math.random().toString(36).substr(2, 6).toUpperCase() }}"
},
{
"id": "submission_date",
"name": "submission_date",
"type": "string",
"value": "={{ new Date().toISOString() }}"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "8d57bff7-e51e-49ea-a1ae-a586944a2be4",
"name": "AIレスポンス解析",
"type": "n8n-nodes-base.code",
"position": [
-1312,
-192
],
"parameters": {
"jsCode": "const item = $input.first().json;\n\ntry {\n // Get AI response\n const response = item.choices[0].message.content;\n \n // Clean JSON\n let cleanJson = response.replace(/```json\\n?|```\\n?/g, '').trim();\n const jsonMatch = cleanJson.match(/\\{[\\s\\S]*\\}/);\n if (jsonMatch) {\n cleanJson = jsonMatch[0];\n }\n \n const aiData = JSON.parse(cleanJson);\n \n // Get original data\n const originalData = $('Extract Onboarding Data').first().json;\n \n return [{\n json: {\n ...originalData,\n ...aiData\n }\n }];\n} catch (error) {\n // Fallback\n const originalData = $('Extract Onboarding Data').first().json;\n return [{\n json: {\n ...originalData,\n priority_level: 'standard',\n onboarding_weeks: 4,\n key_goals: ['Complete orientation', 'Meet team', 'Learn systems'],\n training_needed: ['Company overview', 'Department training'],\n tools_required: ['Email', 'Slack', 'Project management']\n }\n }];\n}"
},
"typeVersion": 2
},
{
"id": "d560b2cf-b59a-49ff-9a3b-6db046983946",
"name": "役員チェック?",
"type": "n8n-nodes-base.if",
"position": [
-1072,
-192
],
"parameters": {
"options": {},
"conditions": {
"options": {
"caseSensitive": true
},
"conditions": [
{
"id": "exec-check",
"operator": {
"type": "string",
"operation": "equals"
},
"leftValue": "={{ $json.priority_level }}",
"rightValue": "executive"
}
]
}
},
"typeVersion": 2.2
},
{
"id": "cd4ca2ee-2007-4fad-bbb5-7c128f408729",
"name": "HR通知 - 役員",
"type": "n8n-nodes-base.gmail",
"position": [
-832,
-352
],
"webhookId": "exec-alert-webhook",
"parameters": {
"sendTo": "hr-team@company.com",
"message": "=<!DOCTYPE html>\n<html>\n<body style=\"font-family:Arial;padding:20px\">\n<h2 style=\"color:#667eea\">Executive Onboarding Alert</h2>\n<p><strong>New Executive Hire:</strong></p>\n<ul>\n<li><strong>Name:</strong> {{ $json.employee_name }}</li>\n<li><strong>Position:</strong> {{ $json.position }}</li>\n<li><strong>Department:</strong> {{ $json.department }}</li>\n<li><strong>Start Date:</strong> {{ $json.start_date }}</li>\n<li><strong>Location:</strong> {{ $json.location }}</li>\n</ul>\n<p><strong>Action Required:</strong></p>\n<ol>\n<li>Expedite IT equipment setup</li>\n<li>Schedule CEO welcome call</li>\n<li>Prepare VIP welcome package</li>\n<li>Assign executive coordinator</li>\n</ol>\n<p><strong>Onboarding ID:</strong> {{ $json.onboarding_id }}</p>\n</body>\n</html>",
"options": {},
"subject": "=🚨 Executive Onboarding: {{ $json.employee_name }}"
},
"credentials": {
"gmailOAuth2": {
"id": "PIMDNhXNj8Zyiz3G",
"name": "Gmail account - Deepanshi"
}
},
"typeVersion": 2.1
},
{
"id": "09aef486-9ddf-4289-93e9-2ac147c0e100",
"name": "ウェルカムメール送信",
"type": "n8n-nodes-base.gmail",
"position": [
-608,
-192
],
"webhookId": "welcome-email-webhook",
"parameters": {
"sendTo": "=Deep@gmail.com",
"message": "=<!DOCTYPE html>\n<html>\n<body style=\"font-family:Arial;padding:20px;max-width:600px\">\n<div style=\"background:#4CAF50;color:white;padding:20px;text-align:center\">\n<h1>Welcome Aboard!</h1>\n</div>\n<div style=\"padding:20px\">\n<p>Hi {{ $json.employee_name }},</p>\n<p>We're thrilled to have you join us as <strong>{{ $json.position }}</strong> in {{ $json.department }}!</p>\n\n<h3>Your Start Date: {{ $json.start_date }}</h3>\n\n<h3>Your First {{ $json.onboarding_weeks }} Weeks - Key Goals:</h3>\n<ul>\n{{ $json.key_goals ? $json.key_goals.map(g => '<li>' + g + '</li>').join('') : '<li>Complete orientation</li>' }}\n</ul>\n\n<h3>Training You'll Receive:</h3>\n<ul>\n{{ $json.training_needed ? $json.training_needed.map(t => '<li>' + t + '</li>').join('') : '<li>Company orientation</li>' }}\n</ul>\n\n<h3>What's Being Set Up For You:</h3>\n<ul>\n<li>Laptop: {{ $json.laptop_type }}</li>\n<li>Software access to key tools</li>\n<li>Email account:{{ $json.employee_email }} </li>\n</ul>\n\n<div style=\"background:#e3f2fd;padding:15px;margin-top:20px\">\n<strong>Need Help?</strong><br>\nHR Team: hr@company.com<br>\nYour Manager: {{ $json.manager_email }}\n</div>\n\n<p>We're here to support you every step of the way!</p>\n<p>Best regards,<br><strong>The HR Team</strong></p>\n<p style=\"font-size:12px;color:#666\">Onboarding ID: {{ $json.onboarding_id }}</p>\n</div>\n</body>\n</html>",
"options": {},
"subject": "=Welcome to the Team, {{ $json.employee_name }}! 🎉"
},
"credentials": {
"gmailOAuth2": {
"id": "PIMDNhXNj8Zyiz3G",
"name": "Gmail account - Deepanshi"
}
},
"typeVersion": 2.1
},
{
"id": "bbc3941d-c9e9-4ce0-8c42-9533d7031804",
"name": "マネージャー通知",
"type": "n8n-nodes-base.gmail",
"position": [
-608,
-32
],
"webhookId": "manager-email-webhook",
"parameters": {
"sendTo": "={{ $json.manager_email }}",
"message": "=<!DOCTYPE html>\n<html>\n<body style=\"font-family:Arial;padding:20px\">\n<h2 style=\"color:#2196F3\">New Team Member Starting Soon</h2>\n<p>Hello,</p>\n<p><strong>{{ $json.employee_name }}</strong> will be joining your team as <strong>{{ $json.position }}</strong>.</p>\n\n<h3>Employee Details:</h3>\n<ul>\n<li><strong>Start Date:</strong> {{ $json.start_date }}</li>\n<li><strong>Department:</strong> {{ $json.department }}</li>\n<li><strong>Location:</strong> {{ $json.location }}</li>\n<li><strong>Experience Level:</strong> {{ $json.experience_level }}</li>\n</ul>\n\n<h3>Manager Prep Checklist:</h3>\n<div style=\"background:#f5f5f5;padding:15px\">\n<strong>Before Day 1:</strong>\n<ul>\n<li>Prepare workspace and supplies</li>\n<li>Schedule Day 1 welcome meeting</li>\n<li>Plan team introduction</li>\n<li>Assign onboarding buddy</li>\n<li>Review goals below</li>\n</ul>\n</div>\n\n<h3>Key Goals for First {{ $json.onboarding_weeks }} Weeks:</h3>\n<ul>\n{{ $json.key_goals ? $json.key_goals.map(g => '<li>' + g + '</li>').join('') : '<li>Complete orientation</li>' }}\n</ul>\n\n<h3>Training Assigned:</h3>\n<ul>\n{{ $json.training_needed ? $json.training_needed.map(t => '<li>' + t + '</li>').join('') : '<li>Department training</li>' }}\n</ul>\n\n<div style=\"background:#fff3cd;padding:15px;margin-top:20px\">\n<strong>Please Schedule:</strong><br>\n• Day 1: Welcome meeting (30 min)<br>\n• Week 1: 1-on-1 check-in<br>\n• Week 4: Progress review\n</div>\n\n<p>Questions? Contact HR at hr@company.com</p>\n<p>Best regards,<br><strong>HR Team</strong></p>\n</body>\n</html>",
"options": {},
"subject": "=New Team Member: {{ $json.employee_name }} - Action Required"
},
"credentials": {
"gmailOAuth2": {
"id": "PIMDNhXNj8Zyiz3G",
"name": "Gmail account - Deepanshi"
}
},
"typeVersion": 2.1
},
{
"id": "38b82ca7-0df4-4642-9940-82da425d5a96",
"name": "IT設定依頼",
"type": "n8n-nodes-base.gmail",
"position": [
-608,
144
],
"webhookId": "it-email-webhook",
"parameters": {
"sendTo": "it-team@company.com",
"message": "=<!DOCTYPE html>\n<html>\n<body style=\"font-family:Arial;padding:20px\">\n<h2 style=\"color:#FF9800\">IT Provisioning Request</h2>\n\n<h3>Employee Information:</h3>\n<ul>\n<li><strong>Name:</strong> {{ $json.employee_name }}</li>\n<li><strong>Position:</strong> {{ $json.position }}</li>\n<li><strong>Department:</strong> {{ $json.department }}</li>\n<li><strong>Start Date:</strong> {{ $json.start_date }}</li>\n<li><strong>Email:</strong> {{ $json.employee_email }}</li>\n<li><strong>Location:</strong> {{ $json.location }}</li>\n</ul>\n\n<h3>Hardware Required:</h3>\n<ul>\n<li>{{ $json.laptop_type }}</li>\n<li>Monitor and peripherals</li>\n<li>Mouse and keyboard</li>\n<li>Headset</li>\n</ul>\n\n<h3>Software/Tools Needed:</h3>\n<ul>\n{{ $json.tools_required ? $json.tools_required.map(t => '<li>' + t + '</li>').join('') : '<li>Email account</li><li>Standard software</li>' }}\n</ul>\n\n<h3>Setup Checklist:</h3>\n<ol>\n<li>Order hardware (deliver 1 week before start date)</li>\n<li>Create email account</li>\n<li>Set up VPN access</li>\n<li>Configure system permissions</li>\n<li>Prepare setup instructions</li>\n</ol>\n\n<div style=\"background:#e3f2fd;padding:15px;margin-top:20px\">\n<strong>Target Completion:</strong> 1 week before {{ $json.start_date }}\n</div>\n\n<p><strong>Onboarding ID:</strong> {{ $json.onboarding_id }}</p>\n</body>\n</html>",
"options": {},
"subject": "=IT Setup Request: {{ $json.employee_name }}"
},
"credentials": {
"gmailOAuth2": {
"id": "PIMDNhXNj8Zyiz3G",
"name": "Gmail account - Deepanshi"
}
},
"typeVersion": 2.1
},
{
"id": "7fb69228-24ca-44a6-99ef-87ae7173fcb1",
"name": "データベース記録",
"type": "n8n-nodes-base.googleSheets",
"position": [
-256,
-96
],
"parameters": {
"columns": {
"value": {
"id": "={{ $json.id }}",
"Address": "={{ $('JotForm Trigger').item.json.Address }}",
"Position": "={{ $('JotForm Trigger').item.json.Position }}",
"Department": "={{ $('JotForm Trigger').item.json.Department }}",
"Shirt Size": "={{ $('JotForm Trigger').item.json['Shirt Size'] }}",
"Start Date": "={{ $('JotForm Trigger').item.json['Start Date'] }}",
"Laptop Type": "={{ $('JotForm Trigger').item.json['Laptop Type'] }}",
"Phone Needed": "={{ $('JotForm Trigger').item.json['Phone Needed'] }}",
"Employee Name": "={{ $('Extract Onboarding Data').item.json.employee_name }}",
"Employee Type": "={{ $('JotForm Trigger').item.json['Employee Type'] }}",
"Manager Email": "={{ $('JotForm Trigger').item.json['Manager Email'] }}",
"Employee Email": "={{ $('Extract Onboarding Data').item.json.employee_email }}",
"Software Access": "={{ $('JotForm Trigger').item.json['Software Access'] }}",
"Experience Level": "={{ $('JotForm Trigger').item.json['Experience Level'] }}",
"Emergency Contact": "={{ $('JotForm Trigger').item.json['Emergency Contact'] }}",
"Dietary Restrictions": "={{ $('JotForm Trigger').item.json['Dietary Restrictions'] }}"
},
"schema": [
{
"id": "Employee Name",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Employee Name",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Employee Email",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Employee Email",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Address",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Address",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Start Date",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Start Date",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Position",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Position",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Department",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Department",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Manager Email",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Manager Email",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Employee Type",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Employee Type",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Laptop Type",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Laptop Type",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Software Access",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Software Access",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Phone Needed",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Phone Needed",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Experience Level",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Experience Level",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Emergency Contact",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Emergency Contact",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Shirt Size",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Shirt Size",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Dietary Restrictions",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Dietary Restrictions",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "id",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "id",
"defaultMatch": true,
"canBeUsedToMatch": true
},
{
"id": "threadId",
"type": "string",
"display": true,
"removed": true,
"required": false,
"displayName": "threadId",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "labelIds",
"type": "string",
"display": true,
"removed": true,
"required": false,
"displayName": "labelIds",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "defineBelow",
"matchingColumns": [
"id"
],
"attemptToConvertTypes": false,
"convertFieldsToString": false
},
"options": {},
"operation": "append",
"sheetName": {
"__rl": true,
"mode": "list",
"value": "gid=0",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1pwrTx5GXB7mAg5eJQ9q0I9tsgSI9keZ2W4iuTZi7wF8/edit#gid=0",
"cachedResultName": "Sheet1"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1pwrTx5GXB7mAg5eJQ9q0I9tsgSI9keZ2W4iuTZi7wF8",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1pwrTx5GXB7mAg5eJQ9q0I9tsgSI9keZ2W4iuTZi7wF8/edit?usp=drivesdk",
"cachedResultName": "Employee Onboarding"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "Kz2DdSp11rxqwlFt",
"name": "Google Sheets account - Deepanshi"
}
},
"typeVersion": 4.5
},
{
"id": "389cc7a8-e2b4-4703-883a-d09e9834fe56",
"name": "付箋1",
"type": "n8n-nodes-base.stickyNote",
"position": [
-2272,
-400
],
"parameters": {
"color": 5,
"width": 300,
"height": 220,
"content": "## 📝 JotForm Trigger\n\nCaptures new hire:\n• Name, email, position\n• Department, manager\n• Start date, location\n• IT requirements"
},
"typeVersion": 1
},
{
"id": "6b2ac8da-ad4d-4ba4-bc5e-c303b27e398a",
"name": "付箋2",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1808,
-416
],
"parameters": {
"color": 6,
"width": 300,
"height": 220,
"content": "## 🤖 AI Analysis\n\nOpenAI API call:\n• Determines priority\n• Suggests goals\n• Lists training\n• Recommends tools"
},
"typeVersion": 1
},
{
"id": "f9534283-301f-44d2-afb9-e1453d5ab1e3",
"name": "付箋3",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1024,
-480
],
"parameters": {
"color": 3,
"width": 460,
"height": 220,
"content": "## 📧 Automated Emails\n\n**Executive:** HR alert\n**All:** Welcome, Manager prep, IT request\n**Finally:** Log to database"
},
"typeVersion": 1
},
{
"id": "f88573c0-fd50-48db-a83b-0ac489d6cd52",
"name": "AIエージェント",
"type": "@n8n/n8n-nodes-langchain.agent",
"position": [
-1792,
-192
],
"parameters": {
"text": "You are an HR specialist creating personalized employee onboarding plans.\n\nAnalyze the new hire's position, department, and experience level to determine:\n- Priority level (standard, high, or executive)\n- Onboarding duration in weeks\n- Key goals for first 30-90 days\n- Required training modules\n- Essential tools and software\n\nReturn ONLY valid JSON without markdown formatting. Be specific, actionable, and focus on helping new employees succeed quickly.",
"options": {},
"promptType": "define"
},
"typeVersion": 2.2
},
{
"id": "73ccb726-8e2a-4675-85fa-45c014942c48",
"name": "OpenAI チャットモデル",
"type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
"position": [
-1792,
-16
],
"parameters": {
"model": {
"__rl": true,
"mode": "list",
"value": "gpt-4.1-mini"
},
"options": {}
},
"credentials": {
"openAiApi": {
"id": "8IkhtT3EbXygnvcr",
"name": "Klinsman OpenAI"
}
},
"typeVersion": 1.2
}
],
"pinData": {
"JotForm Trigger": [
{
"Address": {
"city": "Bengaluru",
"state": "Karnataka",
"postal": "560037",
"addr_line1": "shree homes, munnekollal",
"addr_line2": ""
},
"Position": "manager",
"Department": "IT",
"Shirt Size": "43",
"Start Date": {
"day": "25",
"year": "2025",
"month": "10"
},
"Laptop Type": "hp",
"Phone Needed": "no",
"Employee Name": {
"last": "Singhal",
"first": "Deepanshi"
},
"Employee Type": "Full Type",
"Manager Email": "Deep@gmail.com",
"Employee Email": "deepanshirig@gmail.com",
"Software Access": "no",
"Experience Level": "mid level",
"Emergency Contact": {
"full": "(070) 249-3591"
},
"Dietary Restrictions": "no"
}
]
},
"connections": {
"f88573c0-fd50-48db-a83b-0ac489d6cd52": {
"main": [
[
{
"node": "8d57bff7-e51e-49ea-a1ae-a586944a2be4",
"type": "main",
"index": 0
}
]
]
},
"d560b2cf-b59a-49ff-9a3b-6db046983946": {
"main": [
[
{
"node": "cd4ca2ee-2007-4fad-bbb5-7c128f408729",
"type": "main",
"index": 0
}
],
[
{
"node": "09aef486-9ddf-4289-93e9-2ac147c0e100",
"type": "main",
"index": 0
},
{
"node": "bbc3941d-c9e9-4ce0-8c42-9533d7031804",
"type": "main",
"index": 0
},
{
"node": "38b82ca7-0df4-4642-9940-82da425d5a96",
"type": "main",
"index": 0
}
]
]
},
"bbc3941d-c9e9-4ce0-8c42-9533d7031804": {
"main": [
[
{
"node": "7fb69228-24ca-44a6-99ef-87ae7173fcb1",
"type": "main",
"index": 0
}
]
]
},
"d150c537-4eb1-4fd8-b242-a6cac7703d5b": {
"main": [
[
{
"node": "f058540a-e32e-418c-907e-db977776bdde",
"type": "main",
"index": 0
}
]
]
},
"38b82ca7-0df4-4642-9940-82da425d5a96": {
"main": [
[
{
"node": "7fb69228-24ca-44a6-99ef-87ae7173fcb1",
"type": "main",
"index": 0
}
]
]
},
"73ccb726-8e2a-4675-85fa-45c014942c48": {
"ai_languageModel": [
[
{
"node": "f88573c0-fd50-48db-a83b-0ac489d6cd52",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"8d57bff7-e51e-49ea-a1ae-a586944a2be4": {
"main": [
[
{
"node": "d560b2cf-b59a-49ff-9a3b-6db046983946",
"type": "main",
"index": 0
}
]
]
},
"09aef486-9ddf-4289-93e9-2ac147c0e100": {
"main": [
[
{
"node": "7fb69228-24ca-44a6-99ef-87ae7173fcb1",
"type": "main",
"index": 0
}
]
]
},
"cd4ca2ee-2007-4fad-bbb5-7c128f408729": {
"main": [
[
{
"node": "09aef486-9ddf-4289-93e9-2ac147c0e100",
"type": "main",
"index": 0
}
]
]
},
"f058540a-e32e-418c-907e-db977776bdde": {
"main": [
[
{
"node": "f88573c0-fd50-48db-a83b-0ac489d6cd52",
"type": "main",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
GPT-4を使用してJotFormを活用した退職インタビューによる従業員の離職プロセスの自動化
GPT-4を使用してJotFormの入退社インタビューを活用した従業員離職業務の自動化
If
Set
Code
+
If
Set
Code
20 ノードJitesh Dugar
Jotform、GPT-4 を使用した貸出前審査の自動化と Gmail による通知
Jotform、GPT-4、アнализローン承認前通知をGmailで自動化
If
Set
Code
+
If
Set
Code
21 ノードJitesh Dugar
GPT-4o-mini、JotForm、Gmailを使って不動産管理リクエストを自動化
GPT-4o-mini、JotForm、Gmailを使用して不動産保守リクエストを自動化
If
Set
Code
+
If
Set
Code
21 ノードJitesh Dugar
車両点検とメンテナンスワークフロー自動化
OpenAI および JotForm を使用した車両点検およびメンテナンス ワーキングフローの自動化
If
Set
Code
+
If
Set
Code
20 ノードJitesh Dugar
GPT-4、JotForm、そしてGoogleスプレッドシートを使った自動企業研修リクエスト
GPT-4、JotForm、Google シートを用いた自動企業研修リクエスト
If
Set
Code
+
If
Set
Code
21 ノードJitesh Dugar
GPT-4、Jotform、Google スプシを基盤としたAI従業員賞賛システムの構築
GPT-4、Jotform、Google スプレッドシートを基にした AI 従業員認रूムシステムを構築
If
Set
Code
+
If
Set
Code
24 ノードJitesh Dugar
ワークフロー情報
難易度
中級
ノード数14
カテゴリー-
ノードタイプ9
作成者
Jitesh Dugar
@jiteshdugarAI Automation Specialist - OpenAI, CRM & Automation Expert with a solid understanding of various tools that include Zapier, Make, Zoho CRM, Hubspot, Google Sheets, Airtable, Pipedrive, Google Analytics, and more.
外部リンク
n8n.ioで表示 →
このワークフローを共有