KlickTipp에서 Eventbrite 참석 상태 자동 태깅
중급
이것은Social Media분야의자동화 워크플로우로, 11개의 노드를 포함합니다.주로 Switch, SplitOut, HttpRequest, Klicktipp, ScheduleTrigger 등의 노드를 사용하며. KlickTipp 내 Eventbrite 참석 상태 자동 태깅
사전 요구사항
- •대상 API의 인증 정보가 필요할 수 있음
카테고리
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"meta": {
"instanceId": "95b3ab5a70ab1c8c1906357a367f1b236ef12a1409406fd992f60255f0f95f85",
"templateCredsSetupCompleted": true
},
"nodes": [
{
"id": "09783caf-858a-4646-b9b8-07f80cbff88c",
"name": "15분마다 트리거",
"type": "n8n-nodes-base.scheduleTrigger",
"notes": "This node triggers the flow in the defined frequency.",
"position": [
0,
48
],
"parameters": {
"rule": {
"interval": [
{
"field": "minutes",
"minutesInterval": 15
}
]
}
},
"notesInFlow": true,
"typeVersion": 1.2
},
{
"id": "2bb16bdb-81b3-4684-8d04-2712981e574d",
"name": "불참자 연락처 태그 지정",
"type": "n8n-nodes-klicktipp.klicktipp",
"notes": "This node tags the contact for their non attendance at the event.",
"position": [
896,
144
],
"parameters": {
"email": "={{ $json.profile.email }}",
"tagId": [
"13634786"
],
"resource": "contact-tagging"
},
"credentials": {
"klickTippApi": {
"id": "K9JyBdCM4SZc1cXl",
"name": "DEMO KlickTipp account"
}
},
"notesInFlow": true,
"typeVersion": 3
},
{
"id": "9797cf9d-ed61-4149-b631-86028ba69a7c",
"name": "참석 확인",
"type": "n8n-nodes-base.switch",
"notes": "This node checks whether the attendees were checked in at the event.",
"position": [
672,
48
],
"parameters": {
"rules": {
"values": [
{
"outputKey": "Attended",
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "6e93ced0-873c-419b-8713-c2867558504c",
"operator": {
"type": "boolean",
"operation": "true",
"singleValue": true
},
"leftValue": "={{ $json.checked_in }}",
"rightValue": ""
}
]
},
"renameOutput": true
},
{
"outputKey": "Not attended",
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "37e2e24d-1164-4491-92a3-c2cc141bad8a",
"operator": {
"type": "boolean",
"operation": "false",
"singleValue": true
},
"leftValue": "={{ $json.checked_in }}",
"rightValue": ""
}
]
},
"renameOutput": true
}
]
},
"options": {}
},
"notesInFlow": true,
"typeVersion": 3.3
},
{
"id": "b2803e6a-9d84-4dd7-9501-1e3782356e0f",
"name": "참석자 목록 분할",
"type": "n8n-nodes-base.splitOut",
"notes": "This node splits the list of attendees.",
"position": [
448,
48
],
"parameters": {
"options": {},
"fieldToSplitOut": "attendees"
},
"notesInFlow": true,
"typeVersion": 1
},
{
"id": "f72d8f16-ede2-47fa-8deb-8296a9c13ba9",
"name": "스티커 메모",
"type": "n8n-nodes-base.stickyNote",
"position": [
-96,
-128
],
"parameters": {
"color": 7,
"width": 672,
"height": 480,
"content": "## 1. Data reception & structuring"
},
"typeVersion": 1
},
{
"id": "7796cad2-37a8-45e4-bbf7-b456b769bc42",
"name": "스티커 메모1",
"type": "n8n-nodes-base.stickyNote",
"position": [
592,
-128
],
"parameters": {
"color": 7,
"width": 496,
"height": 480,
"content": "## 2. Analyzing & saving data"
},
"typeVersion": 1
},
{
"id": "2de024d4-43c1-4d84-a7ba-6fd5bd25cf8b",
"name": "스티커 메모2",
"type": "n8n-nodes-base.stickyNote",
"position": [
96,
368
],
"parameters": {
"width": 752,
"height": 1120,
"content": "## Who’s it for\nDesigned for **event organizers**, **digital marketers**, and **KlickTipp users** who already sync their Eventbrite registrants to KlickTipp and now want to automatically track and segment event attendance.\n\n> 💡 **Prerequisite:** Contacts must already exist in KlickTipp. \n> Use the related workflow **“Subscribe Eventbrite orders to KlickTipp”** to import registrants before running this attendance workflow.\n\n## Requirements\n- Eventbrite account with OAuth2 credentials \n- KlickTipp account with API access (username/password) \n- Tags configured in KlickTipp:\n - `Eventbrite | Participated` \n - `Eventbrite | Not participated`\n\n## How to set up\n1. **Authenticate connections**\n - Connect **Eventbrite** via OAuth2 (scopes for attendee read access). \n - Connect **KlickTipp** via username/password API credentials. \n2. **Configure the Event ID**\n - Update the Eventbrite HTTP Request node URL by pasting your according event id `/events/{event_id}/attendees/`. \n3. **Adjust KlickTipp Tag IDs**\n - Map tag IDs in both tagging nodes to your KlickTipp setup. \n4. **Run a test**\n - Execute manually or wait for the schedule trigger. \n - Confirm attendees are correctly tagged in KlickTipp based on `checked_in` status. \n\n> ⚠️ *Important:* Eventbrite must record attendee check-ins via the **Eventbrite Organizer App** or barcode scanning for this workflow to assign accurate tags.\n\n## How to customize\n- Change the **schedule frequency** (e.g., every 5 minutes during the event, hourly after). \n- Duplicate and adjust the workflow to handle **multiple events** with different Event IDs. \n- Extend the logic to tag attendees by **ticket class**, **VIP level**, or **refunded status**. \n- Combine with the **Eventbrite order/refund sync workflow** for a full participant funnel: \n `Registration → Participation → Refund`.\n\n## Campaign expansion ideas\n- **Refund tagging:** Add a branch that detects the `refunded` property in Eventbrite and applies a refund tag in KlickTipp. \n- **Post-event automation:** \n - `Participated` → Trigger thank-you or upsell campaigns. \n - `Not participated` → Send replay links or follow-up invitations. \n- **Performance insights:** Use tagged data in KlickTipp for segmentation analytics, follow-up scoring, and event ROI tracking.\n"
},
"typeVersion": 1
},
{
"id": "443c1882-f4c5-4d3c-a90f-01d90ec91fe1",
"name": "Eventbrite 이벤트 참석자 목록 가져오기",
"type": "n8n-nodes-base.httpRequest",
"notes": "This node gets all attendees of the defined event.",
"position": [
224,
48
],
"parameters": {
"url": "https://www.eventbriteapi.com/v3/events/1763953796289/attendees/",
"options": {},
"authentication": "predefinedCredentialType",
"nodeCredentialType": "eventbriteOAuth2Api"
},
"credentials": {
"eventbriteOAuth2Api": {
"id": "YuhRI76SN30EeZOY",
"name": "Integrations Eventbrite account"
}
},
"notesInFlow": true,
"typeVersion": 4.2
},
{
"id": "67daa503-00b5-45fe-bf6e-1f8a81b103e9",
"name": "참석자 연락처 태그 지정",
"type": "n8n-nodes-klicktipp.klicktipp",
"notes": "This node tags the contact for their attendance at the event.",
"position": [
896,
-48
],
"parameters": {
"email": "={{ $json.profile.email }}",
"tagId": [
"13634770"
],
"resource": "contact-tagging"
},
"credentials": {
"klickTippApi": {
"id": "K9JyBdCM4SZc1cXl",
"name": "DEMO KlickTipp account"
}
},
"notesInFlow": true,
"typeVersion": 3
},
{
"id": "2594bb60-48e1-4bea-a631-0e5572ab612e",
"name": "스티커 메모3",
"type": "n8n-nodes-base.stickyNote",
"position": [
-96,
-320
],
"parameters": {
"width": 400,
"height": 176,
"content": "## 1. Data Reception\nTriggered every **15 min** to fetch the latest Eventbrite attendees. \nKeeps your participant data synced automatically. \n💡 Adjust timing for real-time or daily sync.\n"
},
"typeVersion": 1
},
{
"id": "b9e938b9-400b-4be3-923a-9f0d98766825",
"name": "스티커 메모4",
"type": "n8n-nodes-base.stickyNote",
"position": [
688,
-320
],
"parameters": {
"width": 400,
"height": 176,
"content": "## 2. Analyze & Tag\nChecks who **attended vs. missed** the event using `checked_in`. \nTags participants in KlickTipp for instant segmentation.\n"
},
"typeVersion": 1
}
],
"pinData": {
"List Evenbrite attendees from event": [
{
"attendees": [
{
"id": "22033123123",
"costs": {
"tax": {
"value": 0,
"display": "$0.00",
"currency": "USD",
"major_value": "0.00"
},
"gross": {
"value": 0,
"display": "$0.00",
"currency": "USD",
"major_value": "0.00"
},
"base_price": {
"value": 0,
"display": "$0.00",
"currency": "USD",
"major_value": "0.00"
},
"payment_fee": {
"value": 0,
"display": "$0.00",
"currency": "USD",
"major_value": "0.00"
},
"eventbrite_fee": {
"value": 0,
"display": "$0.00",
"currency": "USD",
"major_value": "0.00"
}
},
"status": "Checked In",
"answers": [],
"changed": "2025-10-02T11:11:45Z",
"created": "2025-10-02T08:53:20Z",
"profile": {
"age": 31,
"name": "Mr. Ricard Klünter",
"email": "ricardo@example.com",
"gender": "male",
"prefix": "Mr.",
"addresses": {},
"last_name": "Klünter",
"birth_date": "1910-12-07",
"first_name": "Ricard"
},
"barcodes": [
{
"status": "used",
"barcode": "1339655252322033274123123",
"changed": "2025-10-02T11:11:45Z",
"created": "2025-10-02T08:53:22Z",
"is_printed": false,
"checkin_type": 0,
"checkin_method": "search"
}
],
"event_id": "1763953123123",
"order_id": "13396123123",
"quantity": 1,
"refunded": false,
"affiliate": "oddtdtcreator",
"cancelled": false,
"checked_in": true,
"invited_by": null,
"variant_id": null,
"guestlist_id": null,
"resource_uri": "https://www.eventbriteapi.com/v3/events/1763953796289/attendees/22033123123/",
"delivery_method": "electronic",
"ticket_class_id": "3053123123",
"ticket_class_name": "General Admission"
},
{
"id": "22033282533",
"costs": {
"tax": {
"value": 0,
"display": "$0.00",
"currency": "USD",
"major_value": "0.00"
},
"gross": {
"value": 0,
"display": "$0.00",
"currency": "USD",
"major_value": "0.00"
},
"base_price": {
"value": 0,
"display": "$0.00",
"currency": "USD",
"major_value": "0.00"
},
"payment_fee": {
"value": 0,
"display": "$0.00",
"currency": "USD",
"major_value": "0.00"
},
"eventbrite_fee": {
"value": 0,
"display": "$0.00",
"currency": "USD",
"major_value": "0.00"
}
},
"status": "Not Attending",
"answers": [],
"changed": "2025-10-02T10:32:41Z",
"created": "2025-10-02T08:54:18Z",
"profile": {
"name": "Ric Klünter",
"email": "ricardo@example.com",
"addresses": {},
"last_name": "Klünter",
"first_name": "Ric"
},
"barcodes": [
{
"status": "refunded",
"barcode": "133965586732203328123123",
"changed": "2025-10-02T10:32:41Z",
"created": "2025-10-02T08:54:22Z",
"is_printed": false,
"checkin_type": 0,
"checkin_method": "search"
}
],
"event_id": "1763953123123",
"order_id": "13396123123",
"quantity": 1,
"refunded": true,
"affiliate": "oddtdtcreator",
"cancelled": true,
"checked_in": false,
"invited_by": null,
"variant_id": null,
"guestlist_id": null,
"resource_uri": "https://www.eventbriteapi.com/v3/events/1763953123123/attendees/22033123123/",
"delivery_method": "electronic",
"ticket_class_id": "3053123123",
"ticket_class_name": "General Admission"
}
],
"pagination": {
"page_size": 50,
"page_count": 1,
"page_number": 1,
"object_count": 2,
"has_more_items": false
}
}
]
},
"connections": {
"9797cf9d-ed61-4149-b631-86028ba69a7c": {
"main": [
[
{
"node": "67daa503-00b5-45fe-bf6e-1f8a81b103e9",
"type": "main",
"index": 0
}
],
[
{
"node": "2bb16bdb-81b3-4684-8d04-2712981e574d",
"type": "main",
"index": 0
}
]
]
},
"b2803e6a-9d84-4dd7-9501-1e3782356e0f": {
"main": [
[
{
"node": "9797cf9d-ed61-4149-b631-86028ba69a7c",
"type": "main",
"index": 0
}
]
]
},
"09783caf-858a-4646-b9b8-07f80cbff88c": {
"main": [
[
{
"node": "443c1882-f4c5-4d3c-a90f-01d90ec91fe1",
"type": "main",
"index": 0
}
]
]
},
"443c1882-f4c5-4d3c-a90f-01d90ec91fe1": {
"main": [
[
{
"node": "b2803e6a-9d84-4dd7-9501-1e3782356e0f",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 소셜 미디어
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
Zoom 웨비나 자동화 출석 체크 시스템 (KlickTipp 연동)
Zoom 웨비나 자동화된 출석 체크 시스템 (KlickTipp 연동)
Klicktipp
If
Set
+
Klicktipp
If
Set
29 노드KlickTipp
소셜 미디어
Google 캘린더 참여자와 이벤트 상태를 KlickTipp 연락처 관리로 동기화
Google 캘린더에서 KlickTipp로: 이벤트와 참가자 상태 동기화, 연락처 관리
Filter
Switch
Split Out
+
Filter
Switch
Split Out
22 노드KlickTipp
소셜 미디어
참여도 기반 Zoom 참가자 세분화 자동화 및 KlickTipp 입력
참여도 기반 Zoom 참가자 세분화를 KlickTipp로 자동화
Klicktipp
If
Set
+
Klicktipp
If
Set
22 노드KlickTipp
콘텐츠 제작
자동 Instagram 잠재 고객 정보 보강
AI 인사이트와 KlickTipp CRM 통합을 사용한 Instagram 리드 정보 자동 풍부화
Switch
Http Request
Google Sheets
+
Switch
Http Request
Google Sheets
22 노드KlickTipp
리드 생성
Stripe에서 KlickTipp 자동화: 라벨을 통한 구매 확인 이메일 발송
Stripe로KlickTipp자동화:통해标签보내기购买确认이메일
Klicktipp
Stripe
Http Request
+
Klicktipp
Stripe
Http Request
8 노드KlickTipp
소셜 미디어
Facebook 페이지 댓글 관리 봇: 답글, 삭제, 차단 및 알림
AI 기반 Facebook 댓글 관리: 자동 답글, 삭제, 차단 및 알림
If
Set
Code
+
If
Set
Code
59 노드SpaGreen Creative
소셜 미디어
워크플로우 정보
난이도
중급
노드 수11
카테고리1
노드 유형6
저자
KlickTipp
@KlickTippReach more people. 100% GDPR compliant. Quickly create automated email campaigns, SMS and marketing automations. Market your knowledge independently of Google & Co., sell lucrative products and activate your customers.
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유