Stripe API에서 사용자 정의 필드 가져오기
중급
이것은Finance, Building Blocks분야의자동화 워크플로우로, 7개의 노드를 포함합니다.주로 Filter, SplitOut, HttpRequest 등의 노드를 사용하며. Stripe API에서 사용자 정의 필드 가져오기
사전 요구사항
- •대상 API의 인증 정보가 필요할 수 있음
사용된 노드 (7)
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"meta": {
"instanceId": "84ba6d895254e080ac2b4916d987aa66b000f88d4d919a6b9c76848f9b8a7616",
"templateId": "2359"
},
"nodes": [
{
"id": "654e210f-08b1-4ba4-b464-9499084092a2",
"name": "사용자 정의 필드 분할",
"type": "n8n-nodes-base.splitOut",
"position": [
980,
640
],
"parameters": {
"include": "allOtherFields",
"options": {},
"fieldToSplitOut": "custom_fields"
},
"typeVersion": 1
},
{
"id": "9b1a4071-7dd8-4d60-b077-d686fff40d24",
"name": "Stripe | 최신 체크아웃 세션 가져오기1",
"type": "n8n-nodes-base.httpRequest",
"position": [
460,
640
],
"parameters": {
"url": "=https://api.stripe.com/v1/checkout/sessions",
"options": {
"pagination": {
"pagination": {
"parameters": {
"parameters": [
{
"name": "starting_after",
"value": "={{ $response.body.data.last().id }}"
}
]
},
"completeExpression": "={{ $response.body.has_more == false }}",
"paginationCompleteWhen": "other"
}
}
},
"jsonQuery": "={\n \"created\": {\n \"gte\":{{ $today.minus(20, 'days').toSeconds() }},\n \"lte\":{{ $today.toSeconds() }}\n }\n}",
"sendQuery": true,
"specifyQuery": "json",
"authentication": "predefinedCredentialType",
"nodeCredentialType": "stripeApi"
},
"typeVersion": 4.2
},
{
"id": "17016a73-5338-49c7-af8d-8587c778c2f6",
"name": "스티키 노트4",
"type": "n8n-nodes-base.stickyNote",
"position": [
380,
240
],
"parameters": {
"color": 7,
"width": 252.741654751449,
"height": 593.3373455805055,
"content": "## Retrieve all checkout sessions from the last 7 days.\n\nYou can adjust the period by changing the \"created\" value.\n\n[🔍 Learn more about the \"created\" parameter](https://docs.stripe.com/api/checkout/sessions/list?lang=curl#list_checkout_sessions-created)\n\n\nAnd this node uses pagination to get all results. You want to keep those settings at the bottom."
},
"typeVersion": 1
},
{
"id": "e46a5332-a008-4617-be57-eb22e713022d",
"name": "스티키 노트5",
"type": "n8n-nodes-base.stickyNote",
"position": [
700,
545
],
"parameters": {
"color": 7,
"width": 451.2991079615292,
"height": 267.24226082469556,
"content": "## Split data for easier visualization"
},
"typeVersion": 1
},
{
"id": "ebf8a12a-787c-4ab8-9060-2241bbf38489",
"name": "스티키 노트6",
"type": "n8n-nodes-base.stickyNote",
"position": [
1220,
237
],
"parameters": {
"color": 7,
"height": 598.2429925878827,
"content": "## Select the custom fields you want\n\nHere you can choose to filter your contacts to keep only the ones who contain certain custom_fields.\n\nLet's say you only want the ones who have filled their nickname and job title."
},
"typeVersion": 1
},
{
"id": "e9c54905-dadb-4b5e-9ce0-cfe7d436c51e",
"name": "사용자 정의 필드로 필터링",
"type": "n8n-nodes-base.filter",
"position": [
1280,
640
],
"parameters": {
"options": {},
"conditions": {
"options": {
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "4579d72e-8d48-4146-952d-9b5b400f5bce",
"operator": {
"type": "string",
"operation": "equals"
},
"leftValue": "={{ $json.custom_fields.key }}",
"rightValue": "nickname"
},
{
"id": "34197f40-9b41-46e4-8796-be3a86e4dcca",
"operator": {
"type": "string",
"operation": "equals"
},
"leftValue": "={{ $json.custom_fields.key }}",
"rightValue": "job_title"
}
]
}
},
"typeVersion": 2
},
{
"id": "14915079-68ba-48ab-9a9d-fe627aa2bd33",
"name": "모든 데이터 분할",
"type": "n8n-nodes-base.splitOut",
"position": [
760,
640
],
"parameters": {
"options": {},
"fieldToSplitOut": "data"
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"14915079-68ba-48ab-9a9d-fe627aa2bd33": {
"main": [
[
{
"node": "654e210f-08b1-4ba4-b464-9499084092a2",
"type": "main",
"index": 0
}
]
]
},
"654e210f-08b1-4ba4-b464-9499084092a2": {
"main": [
[
{
"node": "e9c54905-dadb-4b5e-9ce0-cfe7d436c51e",
"type": "main",
"index": 0
}
]
]
},
"9b1a4071-7dd8-4d60-b077-d686fff40d24": {
"main": [
[
{
"node": "14915079-68ba-48ab-9a9d-fe627aa2bd33",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 금융, 빌딩 블록
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
템플릿 | Stripe 새 구매 알림
Gmail, Telegram, Slack에서 새 Stripe 구매 알림 받기
Set
Gmail
Filter
+
Set
Gmail
Filter
15 노드Solomon
금융
첫 번째 AI 데이터 분석가 채팅 로봇을 구축
사용법 첫 번째 AI 데이터 분석가 채팅 로봇 구축
Code
Filter
Aggregate
+
Code
Filter
Aggregate
29 노드Solomon
영업
Google 연락처와 Notion 양방향 동기화
双向동기화 Google 通讯录与 Notion
If
Set
Merge
+
If
Set
Merge
82 노드Solomon
기타
Mistral 트랜스크립션
Google 캘린더와 사용자 정의 함수를 사용하여 MCP 서버 구축
Set
Switch
Debug Helper
+
Set
Switch
Debug Helper
32 노드Solomon
빌딩 블록
Stripe 발행 및 이메일 전송
Stripe 발행서를 생성하고 이메일로 전송
Stripe
Http Request
Manual Trigger
+
Stripe
Http Request
Manual Trigger
9 노드Solomon
금융
n8n에서 Gemini AI로 이미지 및 PDF 처리하는 5가지 방법
在n8n中사용Gemini AI처리图像및PDF의5种方法
Set
Filter
Split Out
+
Set
Filter
Split Out
28 노드Julian Kaiser
빌딩 블록
워크플로우 정보
난이도
중급
노드 수7
카테고리2
노드 유형4
저자
Solomon
@solomonFreelance consultant from Brazil, specializing in automations and data analysis. I work with select clients, addressing their toughest projects. For business inquiries, email me at automations.solomon@gmail.com or message me on Telegram for a faster response.
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유