8
n8n 한국어amn8n.com

검증된 추천 보상 알림

고급

이것은Social Media분야의자동화 워크플로우로, 19개의 노드를 포함합니다.주로 If, Set, Gmail, Webhook, GoogleSheets 등의 노드를 사용하며. 이메일 검증 및 시각적 쿠폰을 통한 자동화된 추천 보상 시스템

사전 요구사항
  • Google 계정 및 Gmail API 인증 정보
  • HTTP Webhook 엔드포인트(n8n이 자동으로 생성)
  • Google Sheets API 인증 정보

카테고리

워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
  "id": "",
  "meta": {
    "instanceId": "",
    "templateCredsSetupCompleted": false
  },
  "name": "Verified Referral Reward Notification",
  "tags": [],
  "nodes": [
    {
      "id": "fe5b07ff-5797-4250-a69e-49860089cdca",
      "name": "Sticky Note - 자격 증명 설정",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1552,
        80
      ],
      "parameters": {
        "color": 2,
        "width": 520,
        "height": 432,
        "content": "## 🔐 SETUP CREDENTIALS REQUIRED\n\n\n1️⃣ **VerifiEmail API Key**\n   - Sign up at: https://verifi.email\n   - Get your API key from dashboard\n\n2️⃣ **HTMLCSStoImage API**\n   - Sign up at: https://htmlcsstoimg.com\n   - Get User ID and API Key\n\n3️⃣ **Gmail Account**\n   - Enable 2FA on your Gmail\n\n4️⃣ **Google Sheets**\n   - Create sheet: 'Referral_Reward_Tracker'\n   - Headers: Timestamp | Referrer Name | Referrer Email | Status | Coupon Code | Coupon Image URL | Campaign\n\n✅ Test each credential before activating!"
      },
      "typeVersion": 1
    },
    {
      "id": "716c5cc8-d3fe-41e2-ac10-7c65c509b234",
      "name": "Webhook 트리거",
      "type": "n8n-nodes-base.webhook",
      "position": [
        -880,
        368
      ],
      "webhookId": "",
      "parameters": {
        "path": "referral-reward",
        "options": {},
        "httpMethod": "POST",
        "responseMode": "responseNode"
      },
      "typeVersion": 1
    },
    {
      "id": "302609be-73be-4d33-bd9d-b9fba0077c64",
      "name": "Sticky Note - Webhook",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1008,
        48
      ],
      "parameters": {
        "color": 3,
        "width": 380,
        "height": 460,
        "content": "## 🎯 WEBHOOK TRIGGER\n\n**Purpose:** Receives referral form submissions from Jotform\n\n**Expected Data:**\n```json\n{\n  \"referrer_name\": \"John Doe\",\n  \"referrer_email\": \"john@example.com\",\n  \"referred_friend\": \"jane@example.com\",\n  \"campaign\": \"Holiday Referral 2025\"\n}\n```\n"
      },
      "typeVersion": 1
    },
    {
      "id": "7b2fa8ce-5ed9-4e78-8373-2aa62845fffb",
      "name": "Sticky Note - 이메일 검증",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -608,
        192
      ],
      "parameters": {
        "color": 4,
        "width": 204,
        "height": 332,
        "content": "## ✅ EMAIL VERIFICATION\n\n**Purpose:** Validate referrer email to prevent abuse and fake submissions\n"
      },
      "typeVersion": 1
    },
    {
      "id": "776e1c97-2b01-42c9-ae75-463823f90646",
      "name": "IF 이메일 유효?",
      "type": "n8n-nodes-base.if",
      "position": [
        -320,
        368
      ],
      "parameters": {
        "conditions": {
          "boolean": [
            {
              "value1": "={{ $json.valid }}",
              "value2": "={{ true }}"
            }
          ]
        }
      },
      "typeVersion": 1
    },
    {
      "id": "55e8d038-8915-42c1-8ec8-4b90869b2cfc",
      "name": "Sticky Note - 조건 분기",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -384,
        144
      ],
      "parameters": {
        "color": 5,
        "width": 316,
        "height": 372,
        "content": "## ⚖️ CONDITIONAL LOGIC\n\n**Condition:**\n- IF `status` equals `valid`\n  → TRUE: Generate reward coupon\n  → FALSE: Send rejection email\n\n**Branches:**\n✅ TRUE → Coupon generation flow\n❌ FALSE → Invalid email notification"
      },
      "typeVersion": 1
    },
    {
      "id": "40585967-a862-4c5b-a212-f20b80be4c80",
      "name": "쿠폰 템플릿 설정",
      "type": "n8n-nodes-base.set",
      "position": [
        80,
        256
      ],
      "parameters": {
        "fields": {
          "values": [
            {
              "name": "referrer_name",
              "stringValue": "={{ $('Webhook Trigger').item.json.body.referrer_name }}"
            },
            {
              "name": "referrer_email",
              "stringValue": "={{ $('Webhook Trigger').item.json.body.referrer_email }}"
            },
            {
              "name": "campaign",
              "stringValue": "={{ $('Webhook Trigger').item.json.body.campaign }}"
            },
            {
              "name": "coupon_code",
              "stringValue": "=REF-{{ $('Webhook Trigger').item.json.body.referrer_name.toUpperCase().slice(0,4) }}{{ Math.floor(Math.random()*9999) }}"
            }
          ]
        },
        "options": {}
      },
      "typeVersion": 3.2
    },
    {
      "id": "fb96cbf0-d51c-426e-b1b8-9d5155a59a32",
      "name": "Sticky Note - 쿠폰 템플릿",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -48,
        -64
      ],
      "parameters": {
        "color": 6,
        "width": 380,
        "height": 460,
        "content": "## 🎨 COUPON TEMPLATE CREATION\n\n**Purpose:** Generate personalized HTML coupon card with dynamic data\n\n**Fields Created:**\n1. `html_content` - Complete HTML/CSS coupon card\n2. `referrer_name` - From webhook data\n3. `referrer_email` - From webhook data\n4. `campaign` - Campaign identifier\n5. `coupon_code` - Unique code format: REF-JOHN1234\n\n\n"
      },
      "typeVersion": 1
    },
    {
      "id": "9f826d92-a7ad-4254-9413-574d0e4587f9",
      "name": "Sticky Note - HTML을 이미지로 변환",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        352,
        64
      ],
      "parameters": {
        "color": 6,
        "width": 204,
        "height": 332,
        "content": "## 🖼️ HTML TO IMAGE CONVERSION\n\n**Purpose:** Convert HTML coupon card into a high-quality PNG image\n\n"
      },
      "typeVersion": 1
    },
    {
      "id": "1148e573-98e7-41ae-9295-7cf0113a357c",
      "name": "보상 이메일 전송 (Gmail)",
      "type": "n8n-nodes-base.gmail",
      "position": [
        656,
        256
      ],
      "webhookId": "",
      "parameters": {
        "sendTo": "={{ $('Set Coupon Template').item.json.referrer_email }}",
        "message": "=<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto; padding: 20px;\">\n  <h2 style=\"color: #667eea;\">Hi {{ $('Set Coupon Template').item.json.referrer_name }},</h2>\n  \n  <p style=\"font-size: 16px; line-height: 1.6;\">Thank you for successfully referring a friend! 🎉</p>\n  \n  <p style=\"font-size: 16px; line-height: 1.6;\">Here's your exclusive reward coupon:</p>\n  \n  <div style=\"text-align: center; margin: 30px 0;\">\n    <img src=\"{{ $json.image_url }}\" alt=\"Reward Coupon\" style=\"max-width: 100%; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.1);\" />\n  </div>\n  \n  <p style=\"font-size: 16px;\"><strong>Your Coupon Code:</strong> <code style=\"background: #f3f4f6; padding: 5px 10px; border-radius: 5px; font-size: 18px;\">{{ $('Set Coupon Template').item.json.coupon_code }}</code></p>\n  \n  <p style=\"color: #6b7280; font-size: 14px; line-height: 1.6;\">This coupon is valid for 30 days and can be used on your next purchase.</p>\n  \n  <p style=\"margin-top: 30px; font-size: 16px;\">We appreciate your support! 💙</p>\n  \n  <p style=\"font-size: 16px;\">– The Team</p>\n  \n  <hr style=\"border: none; border-top: 1px solid #e5e7eb; margin: 30px 0;\" />\n  \n  <p style=\"font-size: 12px; color: #9ca3af; text-align: center;\">Campaign: {{ $('Set Coupon Template').item.json.campaign }}</p>\n</div>",
        "options": {},
        "subject": "🎁 Your Referral Reward Coupon is Here!"
      },
      "credentials": {
        "gmailOAuth2": {
          "id": "YOUR_GMAIL_OAUTH2_ID",
          "name": "Gmail OAuth2"
        }
      },
      "typeVersion": 2.1
    },
    {
      "id": "95d7218e-cbb2-4c33-a31b-f7140b764e82",
      "name": "Sticky Note - 보상 이메일",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        576,
        -16
      ],
      "parameters": {
        "color": 7,
        "width": 332,
        "height": 444,
        "content": "## 📧 SEND REWARD EMAIL\n\n**Purpose:** Deliver personalized reward email with coupon image to referrer\n\n Coupon is Here!\"\n- **Body:** HTML formatted with:\n  • Personalized greeting\n  • Embedded coupon image from HCTI\n  • Text version of coupon code\n  • Validity information (30 days)\n  • Campaign details\n"
      },
      "typeVersion": 1
    },
    {
      "id": "eb052f76-0c33-418a-a6a2-c9a1835e46ab",
      "name": "Google 시트에 로그 기록 (성공)",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        1008,
        256
      ],
      "parameters": {
        "columns": {
          "value": {
            "Status": "Reward Sent",
            "Campaign": "={{ $('Set Coupon Template').item.json.campaign }}",
            "Timestamp": "={{ $now.toISO() }}",
            "Coupon Code": "={{ $('Set Coupon Template').item.json.coupon_code }}",
            "Referrer Name": "={{ $('Set Coupon Template').item.json.referrer_name }}",
            "Referrer Email": "={{ $('Set Coupon Template').item.json.referrer_email }}",
            "Coupon Image URL": "={{ $('HTML/CSS to Image').item.json.image_url }}"
          },
          "schema": [
            {
              "id": "Timestamp",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "Timestamp",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Referrer Name",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "Referrer Name",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Referrer Email",
              "type": "string",
              "display": true,
              "removed": false,
              "required": false,
              "displayName": "Referrer Email",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Status",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "Status",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Coupon Code",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "Coupon Code",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Coupon Image URL",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "Coupon Image URL",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Campaign",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "Campaign",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            }
          ],
          "mappingMode": "defineBelow",
          "matchingColumns": [
            "Referrer Email"
          ],
          "attemptToConvertTypes": false,
          "convertFieldsToString": false
        },
        "options": {},
        "operation": "appendOrUpdate",
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": "YOUR_GOOGLE_SHEETS_SHEET_ID",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/YOUR_GOOGLE_SHEETS_ID/edit#gid/YOUR_GOOGLE_SHEETS_SHEET_ID",
          "cachedResultName": "Sheet1"
        },
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": "YOUR_GOOGLE_SHEETS_ID",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/YOUR_GOOGLE_SHEETS_ID/edit?usp=drivesdk",
          "cachedResultName": "Referral_Reward_Tracker"
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "YOUR_GOOGLE_SHEETS_OAUTH2_ID",
          "name": "Google Sheets OAuth2"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "f019b026-0714-4523-bd95-0bde43ade8d7",
      "name": "Sticky Note - 성공 로그",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        928,
        -32
      ],
      "parameters": {
        "color": 4,
        "width": 380,
        "height": 464,
        "content": "## 📊 LOG TO GOOGLE SHEETS (SUCCESS)\n\n**Purpose:** Track all successful referral rewards for analytics and reporting\n\n**Sheet Name:** Referral_Reward_Tracker\n**Operation:** Append Row\n\n**Sheet Headers Required:**\n`Timestamp | Referrer Name | Referrer Email | Status | Coupon Code | Coupon Image URL | Campaign`\n\n"
      },
      "typeVersion": 1
    },
    {
      "id": "9e8164af-fe19-4170-91ce-fdab6228d09c",
      "name": "잘못된 이메일 알림 전송",
      "type": "n8n-nodes-base.gmail",
      "position": [
        80,
        464
      ],
      "webhookId": "",
      "parameters": {
        "sendTo": "=adminexample@gmail.com",
        "message": "=<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto; padding: 20px;\">\n  <h2 style=\"color: #dc2626;\">Hi {{ $('Webhook Trigger').item.json.body.referrer_name }},</h2>\n  \n  <p style=\"font-size: 16px; line-height: 1.6;\">We received your referral submission, but unfortunately the email address could not be verified.</p>\n  \n  <p style=\"font-size: 16px; line-height: 1.6;\">This could be due to:</p>\n  <ul style=\"line-height: 1.8;\">\n    <li>Email address typo</li>\n    <li>Disposable/temporary email service</li>\n    <li>Invalid email format</li>\n  </ul>\n  \n  <p style=\"font-size: 16px; line-height: 1.6;\">Please double-check the email address and submit again.</p>\n  \n  <p style=\"font-size: 16px; line-height: 1.6;\">If you believe this is an error, please contact our support team.</p>\n  \n  <p style=\"margin-top: 30px; font-size: 16px;\">Thank you for your understanding!</p>\n  \n  <p style=\"font-size: 16px;\">– The Team</p>\n</div>",
        "options": {},
        "subject": "Referral Submission - Email Verification Failed"
      },
      "credentials": {
        "gmailOAuth2": {
          "id": "YOUR_GMAIL_OAUTH2_ID",
          "name": "Gmail OAuth2"
        }
      },
      "typeVersion": 2.1
    },
    {
      "id": "a3492dc2-37c2-41ae-be4e-b92c5990d66d",
      "name": "Sticky Note - 잘못된 이메일 알림",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -16,
        448
      ],
      "parameters": {
        "width": 316,
        "height": 496,
        "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n## ❌ INVALID EMAIL NOTIFICATION\n\n**Purpose:** Inform user their email failed verification\n\n**Email Content:**\n- Polite explanation of verification failure\n- Possible reasons:\n  • Email typo\n  • Disposable email service\n  • Invalid format\n- Instructions to resubmit\n- Support contact option"
      },
      "typeVersion": 1
    },
    {
      "id": "3435d390-9873-4c19-87a1-c6a5dbb92cbd",
      "name": "Google 시트에 로그 기록 (실패)",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        400,
        464
      ],
      "parameters": {
        "columns": {
          "value": {
            "Status": "Email Verification Failed",
            "Campaign": "={{ $('Webhook Trigger').item.json.body.campaign }}",
            "Timestamp": "={{ $now.toISO() }}",
            "Referrer Name": "={{ $('Webhook Trigger').item.json.body.referrer_name }}",
            "Referrer Email": "={{ $('Webhook Trigger').item.json.body.referrer_email }}"
          },
          "schema": [
            {
              "id": "Timestamp",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "Timestamp",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Referrer Name",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "Referrer Name",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Referrer Email",
              "type": "string",
              "display": true,
              "removed": false,
              "required": false,
              "displayName": "Referrer Email",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Status",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "Status",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Coupon Code",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "Coupon Code",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Coupon Image URL",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "Coupon Image URL",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Campaign",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "Campaign",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            }
          ],
          "mappingMode": "defineBelow",
          "matchingColumns": [
            "Referrer Email"
          ],
          "attemptToConvertTypes": false,
          "convertFieldsToString": false
        },
        "options": {},
        "operation": "appendOrUpdate",
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": "YOUR_GOOGLE_SHEETS_SHEET_ID",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/YOUR_GOOGLE_SHEETS_ID/edit#gid/YOUR_GOOGLE_SHEETS_SHEET_ID",
          "cachedResultName": "Sheet1"
        },
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": "YOUR_GOOGLE_SHEETS_ID",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/YOUR_GOOGLE_SHEETS_ID/edit?usp=drivesdk",
          "cachedResultName": "Referral_Reward_Tracker"
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "YOUR_GOOGLE_SHEETS_OAUTH2_ID",
          "name": "Google Sheets OAuth2"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "2c134161-6eb6-4ff0-8fe1-98f92f04f9f4",
      "name": "Sticky Note - 실패 로그",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        320,
        448
      ],
      "parameters": {
        "width": 396,
        "height": 576,
        "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n## 📊 LOG TO GOOGLE SHEETS (FAILED)\n\n**Purpose:** Track failed verification attempts for analysis\n\n**Analytics Value:**\n- Identify patterns in failed submissions\n- Track conversion rate (valid vs invalid)\n- Campaign quality assessment\n- Fraud detection patterns\n\n**Business Insights:**\n- % of valid submissions\n- Most common failure reasons\n- Campaign effectiveness\n- User behavior patterns"
      },
      "typeVersion": 1
    },
    {
      "id": "dfcf248e-bc0c-47f6-b652-cb399892c3a3",
      "name": "Verifi Email",
      "type": "n8n-nodes-verifiemail.verifiEmail",
      "position": [
        -560,
        368
      ],
      "parameters": {
        "email": "={{ $json.body.referrer_email }}"
      },
      "credentials": {
        "verifiEmailApi": {
          "id": "YOUR_VERIFI_EMAIL_API_ID",
          "name": "VerifiEmail API"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "2dc38b0a-115d-4c60-9cbb-177c305b571b",
      "name": "HTML/CSS to Image",
      "type": "n8n-nodes-htmlcsstoimage.htmlCssToImage",
      "position": [
        400,
        256
      ],
      "parameters": {
        "html_content": "=<!DOCTYPE html>\n<html>\n<head>\n<style>\n  body {\n    font-family: 'Inter', Arial, sans-serif;\n    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);\n    margin: 0;\n    padding: 40px;\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    min-height: 100vh;\n  }\n  .coupon-card {\n    background: white;\n    border-radius: 20px;\n    padding: 40px;\n    box-shadow: 0 20px 60px rgba(0,0,0,0.3);\n    text-align: center;\n    max-width: 500px;\n  }\n  h1 {\n    color: #667eea;\n    font-size: 32px;\n    margin-bottom: 10px;\n  }\n  .reward-amount {\n    font-size: 48px;\n    color: #16a34a;\n    font-weight: bold;\n    margin: 20px 0;\n  }\n  .coupon-code {\n    background: #f3f4f6;\n    padding: 15px 25px;\n    border-radius: 10px;\n    font-size: 24px;\n    font-weight: bold;\n    color: #1f2937;\n    letter-spacing: 2px;\n    margin: 20px 0;\n    border: 2px dashed #667eea;\n  }\n  .campaign-name {\n    color: #6b7280;\n    font-size: 14px;\n    margin-top: 20px;\n  }\n</style>\n</head>\n<body>\n  <div class=\"coupon-card\">\n    <h1>🎁 Referral Reward</h1>\n    <p style=\"font-size: 18px;\">Hey <strong>{{ $('Webhook Trigger').item.json.body.referrer_name }}</strong>,</p>\n    <p>Thanks for referring your friend!</p>\n    <div class=\"reward-amount\">10% OFF</div>\n    <p>Your Exclusive Coupon Code:</p>\n    <div class=\"coupon-code\">\n      {{ $json.coupon_code }}\n    </div>\n    <p style=\"margin-top: 20px;\">Valid for 30 days</p>\n    <p class=\"campaign-name\">Campaign: {{ $('Webhook Trigger').item.json.body.campaign }}</p>\n  </div>\n</body>\n</html>"
      },
      "credentials": {
        "htmlcsstoimgApi": {
          "id": "YOUR_HTMLCSSTOIMG_API_Key",
          "name": "Htmlcsstoimg API"
        }
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "",
  "connections": {
    "dfcf248e-bc0c-47f6-b652-cb399892c3a3": {
      "main": [
        [
          {
            "node": "776e1c97-2b01-42c9-ae75-463823f90646",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "776e1c97-2b01-42c9-ae75-463823f90646": {
      "main": [
        [
          {
            "node": "40585967-a862-4c5b-a212-f20b80be4c80",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "9e8164af-fe19-4170-91ce-fdab6228d09c",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "716c5cc8-d3fe-41e2-ac10-7c65c509b234": {
      "main": [
        [
          {
            "node": "dfcf248e-bc0c-47f6-b652-cb399892c3a3",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "2dc38b0a-115d-4c60-9cbb-177c305b571b": {
      "main": [
        [
          {
            "node": "1148e573-98e7-41ae-9295-7cf0113a357c",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "40585967-a862-4c5b-a212-f20b80be4c80": {
      "main": [
        [
          {
            "node": "2dc38b0a-115d-4c60-9cbb-177c305b571b",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "9e8164af-fe19-4170-91ce-fdab6228d09c": {
      "main": [
        [
          {
            "node": "3435d390-9873-4c19-87a1-c6a5dbb92cbd",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "1148e573-98e7-41ae-9295-7cf0113a357c": {
      "main": [
        [
          {
            "node": "eb052f76-0c33-418a-a6a2-c9a1835e46ab",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
자주 묻는 질문

이 워크플로우를 어떻게 사용하나요?

위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.

이 워크플로우는 어떤 시나리오에 적합한가요?

고급 - 소셜 미디어

유료인가요?

이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.

워크플로우 정보
난이도
고급
노드 수19
카테고리1
노드 유형8
난이도 설명

고급 사용자를 위한 16+개 노드의 복잡한 워크플로우

저자
Jitesh Dugar

Jitesh Dugar

@jiteshdugar

AI 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에서 보기

이 워크플로우 공유

카테고리

카테고리: 34