Shopify 주문 자동 이행 프로세스
중급
이것은AI, IT Ops분야의자동화 워크플로우로, 13개의 노드를 포함합니다.주로 Set, Filter, Shopify, HttpRequest, ManualTrigger 등의 노드를 사용하며인공지능 기술을 결합하여 스마트 자동화를 구현합니다. Shopify 주문 자동 처리 프로세스
사전 요구사항
- •Shopify Admin API 인증 정보
- •대상 API의 인증 정보가 필요할 수 있음
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"meta": {
"instanceId": "e634e668fe1fc93a75c4f2a7fc0dad807ca318b79654157eadb9578496acbc76",
"templateCredsSetupCompleted": true
},
"nodes": [
{
"id": "30da4d86-83ef-4226-ad2e-d73f531bd4ed",
"name": "'워크플로우 테스트' 클릭 시",
"type": "n8n-nodes-base.manualTrigger",
"position": [
0,
100
],
"parameters": {},
"typeVersion": 1
},
{
"id": "bd57625d-03f2-48b3-94b5-2653214682eb",
"name": "메모",
"type": "n8n-nodes-base.stickyNote",
"position": [
700,
-280
],
"parameters": {
"height": 440,
"content": "## Filtering orders for fulfillment 👇\nFilter the valid orders for programatically fulfillments\n\n- you exclusively sell digital downloads or digital gift cards\n- you use fulfillment services for all your products\n"
},
"typeVersion": 1
},
{
"id": "5928c16f-b842-42e3-9c81-ac9b796d22ff",
"name": "항목 루프",
"type": "n8n-nodes-base.splitInBatches",
"position": [
1060,
0
],
"parameters": {
"options": {}
},
"typeVersion": 3
},
{
"id": "4509fb4e-fed0-4424-94a2-55d1c56a5d5a",
"name": "메모1",
"type": "n8n-nodes-base.stickyNote",
"position": [
1320,
-180
],
"parameters": {
"height": 340,
"content": "## Get fulfillment orders 👇\n[Retrieves a list of fulfillment orders for a specific order.](https://shopify.dev/docs/api/admin-rest/2025-01/resources/fulfillmentorder#get-orders-order-id-fulfillment-orders)\n\n\n"
},
"typeVersion": 1
},
{
"id": "76e16b42-01a3-4c88-a64b-a408b4bb9f40",
"name": "일정 트리거",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
0,
-160
],
"parameters": {
"rule": {
"interval": [
{}
]
}
},
"typeVersion": 1.2
},
{
"id": "1835c0d1-c7d3-4db6-b898-d604c8df7ad1",
"name": "주문 필터링",
"type": "n8n-nodes-base.filter",
"position": [
760,
0
],
"parameters": {
"options": {},
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "loose"
},
"combinator": "and",
"conditions": [
{
"id": "3fdde26b-82ef-42f1-ba36-d4fe667f8866",
"operator": {
"type": "number",
"operation": "gt"
},
"leftValue": "={{ (new Date().getTime() - new Date($json.created_at).getTime()) / (1000 * 60 * 60) }}\n",
"rightValue": 24
}
]
},
"looseTypeValidation": true
},
"typeVersion": 2.2
},
{
"id": "977c3b8d-e3a9-4146-bc4c-e06e67f26a9e",
"name": "이행 주문 가져오기",
"type": "n8n-nodes-base.httpRequest",
"position": [
1380,
20
],
"parameters": {
"url": "=https://{{ $('Set Global').item.json['store-id'] }}.myshopify.com/admin/api/2025-01/orders/{{ $json.id }}/fulfillment_orders.json",
"options": {},
"authentication": "predefinedCredentialType",
"nodeCredentialType": "shopifyAccessTokenApi"
},
"credentials": {
"shopifyAccessTokenApi": {
"id": "vtyKGPLLdjc7MLea",
"name": "Shopify Access Token account"
}
},
"typeVersion": 4.2
},
{
"id": "cf4c99c4-882c-4706-9cb9-8c154549545b",
"name": "메모2",
"type": "n8n-nodes-base.stickyNote",
"position": [
240,
-180
],
"parameters": {
"width": 232,
"height": 346,
"content": "## Edit this node 👇\n\nGet your store ID and replace in the GET url"
},
"typeVersion": 1
},
{
"id": "3a33e89b-ecf5-4be1-b3e4-9c20c00c7c1c",
"name": "글로벌 변수 설정",
"type": "n8n-nodes-base.set",
"position": [
300,
0
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "78289fb1-8a1a-46a2-973e-f5f2a7309993",
"name": "store-id",
"type": "string",
"value": "{store-id}"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "68dffeba-705c-42b5-851e-893964a51176",
"name": "메모4",
"type": "n8n-nodes-base.stickyNote",
"position": [
1680,
-180
],
"parameters": {
"width": 232,
"height": 346,
"content": "## Create fulfillment 👇\n\n[Creates a fulfillment for one or many fulfillment orders](https://shopify.dev/docs/api/admin-rest/2025-04/resources/fulfillment#post-fulfillments)\n- `notify_customer` to send notifications to customer"
},
"typeVersion": 1
},
{
"id": "24137672-00d7-4fa0-9238-f2dca7900adf",
"name": "메모5",
"type": "n8n-nodes-base.stickyNote",
"position": [
-440,
-300
],
"parameters": {
"width": 372,
"height": 546,
"content": "## Shopify Fulfillment Automation with n8n\nShopify store owners who want to automate the fulfillment process, whether for entire orders or specific products (like personalization items). However, the challenge lies in retrieving the [Fulfillment Order ID](https://shopify.dev/docs/api/admin-rest/2025-01/resources/fulfillmentorder#get-orders-order-id-fulfillment-orders) (not [Order ID](https://shopify.dev/docs/api/admin-rest/2025-01/resources/order#get-orders-order-id?fields=id,line-items,name,total-price))—a crucial piece needed to trigger fulfillment.\n\nThis n8n workflow can:\n\n- Get all unfulfilled orders from Shopify store.\n\n- Retrieve the Fulfillment Order ID (using the \"List Fulfillment Orders\" action).\n\n- Create a fulfillment request (using \"Mark fulfillment orders as fulfilled\").\n\n- Handle edge cases, like partially fulfilled orders or errors in API responses.\n\n"
},
"typeVersion": 1
},
{
"id": "bfb340f2-1fb6-4be7-823a-d24d6d8361be",
"name": "모든 미이행 주문 가져오기",
"type": "n8n-nodes-base.shopify",
"position": [
540,
0
],
"parameters": {
"options": {
"fulfillmentStatus": "unfulfilled"
},
"operation": "getAll",
"returnAll": true,
"authentication": "accessToken"
},
"credentials": {
"shopifyAccessTokenApi": {
"id": "vtyKGPLLdjc7MLea",
"name": "Shopify Access Token account"
}
},
"typeVersion": 1
},
{
"id": "8350fcaf-1bf8-4af1-a716-816b19a4b892",
"name": "이행 주문을 이행 완료로 표시",
"type": "n8n-nodes-base.httpRequest",
"position": [
1740,
20
],
"parameters": {
"url": "=https://{{ $('Set Global').item.json['store-id'] }}.myshopify.com/admin/api/2025-01/fulfillments.json",
"method": "POST",
"options": {},
"jsonBody": "={\"fulfillment\":{\"line_items_by_fulfillment_order\":[{\"fulfillment_order_id\":{{ $json.fulfillment_orders[0].id }}}],\"notify_customer\":true}}",
"sendBody": true,
"specifyBody": "json",
"authentication": "predefinedCredentialType",
"nodeCredentialType": "shopifyAccessTokenApi"
},
"credentials": {
"shopifyAccessTokenApi": {
"id": "vtyKGPLLdjc7MLea",
"name": "Shopify Access Token account"
}
},
"typeVersion": 4.2
}
],
"pinData": {},
"connections": {
"3a33e89b-ecf5-4be1-b3e4-9c20c00c7c1c": {
"main": [
[
{
"node": "bfb340f2-1fb6-4be7-823a-d24d6d8361be",
"type": "main",
"index": 0
}
]
]
},
"1835c0d1-c7d3-4db6-b898-d604c8df7ad1": {
"main": [
[
{
"node": "5928c16f-b842-42e3-9c81-ac9b796d22ff",
"type": "main",
"index": 0
}
]
]
},
"5928c16f-b842-42e3-9c81-ac9b796d22ff": {
"main": [
[],
[
{
"node": "977c3b8d-e3a9-4146-bc4c-e06e67f26a9e",
"type": "main",
"index": 0
}
]
]
},
"76e16b42-01a3-4c88-a64b-a408b4bb9f40": {
"main": [
[
{
"node": "3a33e89b-ecf5-4be1-b3e4-9c20c00c7c1c",
"type": "main",
"index": 0
}
]
]
},
"977c3b8d-e3a9-4146-bc4c-e06e67f26a9e": {
"main": [
[
{
"node": "8350fcaf-1bf8-4af1-a716-816b19a4b892",
"type": "main",
"index": 0
}
]
]
},
"bfb340f2-1fb6-4be7-823a-d24d6d8361be": {
"main": [
[
{
"node": "1835c0d1-c7d3-4db6-b898-d604c8df7ad1",
"type": "main",
"index": 0
}
]
]
},
"30da4d86-83ef-4226-ad2e-d73f531bd4ed": {
"main": [
[
{
"node": "3a33e89b-ecf5-4be1-b3e4-9c20c00c7c1c",
"type": "main",
"index": 0
}
]
]
},
"8350fcaf-1bf8-4af1-a716-816b19a4b892": {
"main": [
[
{
"node": "5928c16f-b842-42e3-9c81-ac9b796d22ff",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 인공지능, IT 운영
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
Squarespace 주문 자동 이행 프로세스
Squarespace 주문 자동 처리 프로세스
Set
Filter
Split Out
+
Set
Filter
Split Out
12 노드bangank36
영업
GPT-4.1, Outlook 및 Mem.ai를 사용한 Microsoft Teams 회의 분석 자동화
GPT-4.1, Outlook 및 Mem.ai를 사용한 자동화된 Microsoft Teams 회의 분석
If
Set
Code
+
If
Set
Code
61 노드Wayne Simpson
인사
Google 스프레드시트에서 n8n 사용자 초대 자동화
Google 스프레드시트에서 n8n 사용자 초대 자동화
Set
Code
Merge
+
Set
Code
Merge
11 노드bangank36
IT 운영
Squarespace 코드注入을 Github에 백업합니다.
Squarespace 코드注入을 Github에 백업합니다.
If
Set
Code
+
If
Set
Code
17 노드bangank36
엔지니어링
AI 스마트 어시스턴트: Supabase 스토리지 및 Google Drive 파일과 대화
AI스마트어시스턴트:与Supabase存储및Google Drive文件对话
If
Set
Wait
+
If
Set
Wait
62 노드Mark Shcherbakov
엔지니어링
GPT-4o, Google 캘린더 및 Gmail을 사용한 회의 참가자 연구 자동 생성
GPT-4o, Google 캘린더 및 Gmail을 사용하여 회의 참가자 연구 자동 생성
If
Set
Gmail
+
If
Set
Gmail
18 노드Adam Janes
인공지능
워크플로우 정보
난이도
중급
노드 수13
카테고리2
노드 유형8
저자
bangank36
@bangank36Automation specialist with 10+ years of experience helping SME website owners streamline their workflows—specializing in Squarespace, Shopify, and WordPress. Book an initial consultation for custom n8n automation using my link.
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유