고객 생성
초급
이것은Sales분야의자동화 워크플로우로, 5개의 노드를 포함합니다.주로 Graphql, GoogleSheets, ManualTrigger 등의 노드를 사용하며. Google 스프레드시트에서 Shopify 고객을 만들기
사전 요구사항
- •Google Sheets API 인증 정보
카테고리
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "Ub9navVkcvzlgJJZ",
"meta": {
"instanceId": "eeebdb47cbe0bf5bc137514a863458fd2f9ab992b2ebeb2c6062100cdade81e7",
"templateCredsSetupCompleted": true
},
"name": "CreateCustomers",
"tags": [
{
"id": "vMF1giVsFs9aUam0",
"name": "shopify",
"createdAt": "2025-06-11T02:39:27.034Z",
"updatedAt": "2025-06-11T02:39:27.034Z"
},
{
"id": "VV6xlvjylfTgqbEQ",
"name": "gsheet",
"createdAt": "2025-06-11T02:39:33.368Z",
"updatedAt": "2025-06-11T02:39:33.368Z"
},
{
"id": "cWC39BXOsHlOhwEC",
"name": "google-sheet",
"createdAt": "2025-06-11T02:39:38.743Z",
"updatedAt": "2025-06-11T02:39:38.743Z"
}
],
"nodes": [
{
"id": "477e1ae3-92d1-4bc4-a232-177f30c12bd5",
"name": "워크플로 시작",
"type": "n8n-nodes-base.manualTrigger",
"position": [
-500,
-60
],
"parameters": {},
"typeVersion": 1
},
{
"id": "2be0e108-296c-4eaa-ad58-883923416470",
"name": "Google 시트, 고객 데이터 가져오기",
"type": "n8n-nodes-base.googleSheets",
"position": [
-140,
-60
],
"parameters": {
"options": {},
"sheetName": {
"__rl": true,
"mode": "list",
"value": 2054184606,
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1IxiuRiu6XKBkEa1NIUebBWn73jIKUrgE9Sqj4XtQgBk/edit#gid=2054184606",
"cachedResultName": "Customers"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1IxiuRiu6XKBkEa1NIUebBWn73jIKUrgE9Sqj4XtQgBk",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1IxiuRiu6XKBkEa1NIUebBWn73jIKUrgE9Sqj4XtQgBk/edit?usp=drivesdk",
"cachedResultName": "Shopify Test Store Data"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "GQE41DhnGDDJ8Hfq",
"name": "Google Sheets account"
}
},
"typeVersion": 4.6
},
{
"id": "2aae5550-f480-49b0-9e69-b299756963ce",
"name": "Shopify, 고객 생성",
"type": "n8n-nodes-base.graphql",
"position": [
280,
-60
],
"parameters": {
"query": "=mutation customerCreate($input: CustomerInput!) {\n customerCreate(input: $input) {\n userErrors {\n field\n message\n }\n customer {\n id\n email\n phone\n taxExempt\n firstName\n lastName\n amountSpent {\n amount\n currencyCode\n }\n smsMarketingConsent {\n marketingState\n marketingOptInLevel\n consentUpdatedAt\n }\n }\n }\n}",
"endpoint": "https://store99563.myshopify.com/admin/api/2025-04/graphql.json",
"variables": "={\n \"input\": {\n \"email\": \"{{ $json.email }}\",\n \"phone\": \"{{ $json.mobile_phone }}\",\n \"firstName\": \"{{ $json.first_name }}\",\n \"lastName\": \"{{ $json.last_name }}\",\n \"smsMarketingConsent\": {\n \"marketingState\": \"SUBSCRIBED\",\n \"marketingOptInLevel\": \"SINGLE_OPT_IN\"\n }\n }\n}",
"authentication": "headerAuth"
},
"credentials": {
"httpHeaderAuth": {
"id": "mHtpN3u5aCWsxWih",
"name": "Shopify GraphQL Header Auth account"
}
},
"typeVersion": 1.1
},
{
"id": "76d165e1-6beb-475c-bd94-ed0f30ef0d06",
"name": "스티커 노트",
"type": "n8n-nodes-base.stickyNote",
"position": [
-300,
140
],
"parameters": {
"width": 400,
"height": 320,
"content": "## Google Sheet Format\n\nColumns can be in any order. N8N will treat the first row in the sheet as a column name, so use the column names below in row 1 of your sheet. The google sheet uses the following columns : \n- first_name : Any string\n- last_name : Any string\n- email : Valid email \n- mobile_phone : International mobile phone format with no spaces eg. +61414708406 (Shopify will reject anything else).\n"
},
"typeVersion": 1
},
{
"id": "01df3900-33ae-4f8b-b63a-d48ee012c2ea",
"name": "스티커 노트1",
"type": "n8n-nodes-base.stickyNote",
"position": [
160,
140
],
"parameters": {
"width": 400,
"height": 680,
"content": "## Shopify Admin API (GraphQL)\n\nShopify's Admin API uses 'Header Auth' with a **key** of X-Shopify-Access-Token and a **value** of your shopify access token which starts with shpat_ .\n\n### How to generate a Shopify Access Token \nTo generate a Shopify Access Token create an app, grant the app the necessary scopes, then generate a token. \n\n#### From inside a store do the following :\n1. click Settings (nav link) \n2. click Apps and sales channels (nav link) \n3. click Develop Apps (button)\n4. click Create App (button)\n5. give the app a name\n6. click configure Admin API Scopes (button)\n7. at a minimum grant read_customers and write_customers scope. Grant additional scopes if you plan on accessing other parts of the API.\n8. click save\n\n#### To generate the token \n1. click install app (button)\n2. click install on the dialog that pops up (button)\n3. click 'reveal token once' (button)\n4. copy the token into a password vault or somewhere secure.\n"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "13bf8d4d-bd24-4b1d-be18-70e131443179",
"connections": {
"477e1ae3-92d1-4bc4-a232-177f30c12bd5": {
"main": [
[
{
"node": "2be0e108-296c-4eaa-ad58-883923416470",
"type": "main",
"index": 0
}
]
]
},
"2be0e108-296c-4eaa-ad58-883923416470": {
"main": [
[
{
"node": "2aae5550-f480-49b0-9e69-b299756963ce",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
초급 - 영업
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
Google 스프레드시트에서 Shopify 제품 생성
Google 스프레드시트에서 대량으로 Shopify 제품을 생성하고 재고 관리
If
Graphql
Google Sheets
+
If
Graphql
Google Sheets
13 노드Richard Uren
고객관계관리
도메인 기반 - Perplexity, LinkedIn, 웹사이트, Hunter, Airtop을 활용한 B2B 연구 회사
AI 잠재고객 연구원: 회사명과 도메인만으로 ISCP 통합
Set
Wait
Merge
+
Set
Wait
Merge
36 노드LukaszB
영업
AI 부동산 중개인: 종단간 운영 자동화 (웹, 데이터, 음성)
AI 부동산 중개인: 종단간 운영 자동화 (웹, 데이터, 음성)
If
Set
Code
+
If
Set
Code
45 노드Sam Yassine
영업
WooCommerce 의류 카탈로그의 AI 가상 피팅
WooCommerce 의류 카탈로그의 AI 가상 피팅 자동 생성
If
Set
Wait
+
If
Set
Wait
21 노드Davide
영업
영업용 AI 네트워크 연구원
영업용 AI 네트워크 연구원
Set
Merge
Google Sheets
+
Set
Merge
Google Sheets
22 노드Lucas Perret
영업
AI 기반 WooCommerce 제품 가져오기 및 SEO
Google Sheets 기반 AI 기반 WooCommerce 제품 가져오기 도구, Yoast SEO 메타데이터 포함
Code
Telegram
Woo Commerce
+
Code
Telegram
Woo Commerce
16 노드Davide
영업