This workflow corresponds to n8n.io template #2620 — we link there as the canonical source.
The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"nodes": [
{
"id": "df5c494c-072a-4e53-a197-25552f368988",
"name": "Subscribe invitee booking in KlickTipp",
"type": "n8n-nodes-klicktipp.klicktipp",
"notes": "Adds the invitee to the KlickTipp subscriber list, associating them with the relevant booking details. In this step an array of the guests email addresses is saved in the record to navigate guest cancellations. In case of cancellations Calendly does not provide an array of guests and therefore this information needs to be read from the invitee record.",
"position": [
832,
304
],
"parameters": {
"email": "={{ $('New Calendly event').item.json.payload.email }}",
"tagId": "12375153",
"fields": {
"dataFields": [
{
"fieldId": "fieldFirstName",
"fieldValue": "={{ $('Convert data for KlickTipp').item.json.invitee_first_name }}"
},
{
"fieldId": "fieldLastName",
"fieldValue": "={{ $('Convert data for KlickTipp').item.json.invitee_last_name }}"
},
{
"fieldId": "field213329",
"fieldValue": "={{ $('New Calendly event').item.json.payload.scheduled_event.name }}"
},
{
"fieldId": "field213330",
"fieldValue": "={{ $('New Calendly event').item.json.payload.scheduled_event.location.join_url }}"
},
{
"fieldId": "field213331",
"fieldValue": "={{ $('New Calendly event').item.json.payload.reschedule_url }}"
},
{
"fieldId": "field213332",
"fieldValue": "={{ $('New Calendly event').item.json.payload.cancel_url }}"
},
{
"fieldId": "field213333",
"fieldValue": "={{ $('Convert data for KlickTipp').item.json.event_start_date_time }}"
},
{
"fieldId": "field213334",
"fieldValue": "={{ $('Convert data for KlickTipp').item.json.event_end_date_time }}"
},
{
"fieldId": "field213335",
"fieldValue": "={{ $('Convert data for KlickTipp').item.json.event_start_date_time }}"
},
{
"fieldId": "field213336",
"fieldValue": "={{ $('Convert data for KlickTipp').item.json.event_end_date_time }}"
},
{
"fieldId": "field213337",
"fieldValue": "={{ $('Convert data for KlickTipp').item.json.invitee_start_time_seconds }}"
},
{
"fieldId": "field213338",
"fieldValue": "={{ $('Convert data for KlickTipp').item.json.invitee_end_time_seconds }}"
},
{
"fieldId": "field213339",
"fieldValue": "={{ $('New Calendly event').item.json.payload.timezone }}"
},
{
"fieldId": "field214142",
"fieldValue": "={{ \n $node[\"New Calendly event\"].json.payload.scheduled_event.event_guests &&\n $node[\"New Calendly event\"].json.payload.scheduled_event.event_guests.length > 0\n ? \n $node[\"New Calendly event\"].json.payload.scheduled_event.event_guests\n .map(g => g.email) // extract just the emails\n .filter(e => !!e) // filter out any undefined/null\n .join(\", \") // join into a single string\n : \n ''\n}}"
}
]
},
"listId": "358895",
"resource": "subscriber",
"operation": "subscribe",
"smsNumber": "={{ $('Convert data for KlickTipp').item.json.invitee_mobile }}"
},
"credentials": {
"klickTippApi": {
"name": "<your credential>"
}
},
"notesInFlow": true,
"typeVersion": 2
},
{
"id": "3955bde3-f298-4ac4-b860-8ba20d2a290b",
"name": "Subscribe guest booking in KlickTipp",
"type": "n8n-nodes-klicktipp.klicktipp",
"notes": "Adds guests to the KlickTipp subscriber list for the associated booking.",
"position": [
1632,
80
],
"parameters": {
"email": "={{ $json.guests.email }}",
"tagId": "12375153",
"fields": {
"dataFields": [
{
"fieldId": "field213329",
"fieldValue": "={{ $('New Calendly event').item.json.payload.scheduled_event.name }}"
},
{
"fieldId": "field213330",
"fieldValue": "={{ $('New Calendly event').item.json.payload.scheduled_event.location.join_url }}"
},
{
"fieldId": "field213331",
"fieldValue": "={{ $('New Calendly event').item.json.payload.scheduled_event.location.join_url }}"
},
{
"fieldId": "field213332",
"fieldValue": "={{ $('New Calendly event').item.json.payload.cancel_url }}"
},
{
"fieldId": "field213333",
"fieldValue": "={{ $('Convert data for KlickTipp').item.json.event_start_date_time }}"
},
{
"fieldId": "field213334",
"fieldValue": "={{ $('Convert data for KlickTipp').item.json.event_end_date_time }}"
},
{
"fieldId": "field213335",
"fieldValue": "={{ $('Convert data for KlickTipp').item.json.invitee_start_date }}"
},
{
"fieldId": "field213336",
"fieldValue": "={{ $('Convert data for KlickTipp').item.json.invitee_end_date }}"
},
{
"fieldId": "field213337",
"fieldValue": "={{ $('Convert data for KlickTipp').item.json.invitee_start_time_seconds }}"
},
{
"fieldId": "field213338",
"fieldValue": "={{ $('Convert data for KlickTipp').item.json.invitee_end_time_seconds }}"
},
{
"fieldId": "field213339",
"fieldValue": "={{ $('New Calendly event').item.json.payload.timezone }}"
}
]
},
"listId": "358895",
"resource": "subscriber",
"operation": "subscribe"
},
"credentials": {
"klickTippApi": {
"name": "<your credential>"
}
},
"notesInFlow": true,
"typeVersion": 2
},
{
"id": "1b9f1492-1ff4-475e-8bc8-46b94cc69225",
"name": "Subscribe guest cancellation in KlickTipp",
"type": "n8n-nodes-klicktipp.klicktipp",
"notes": "Handles cancellations by removing guests from the subscriber list in KlickTipp.",
"position": [
1632,
592
],
"parameters": {
"email": "={{ $json.invitee_guests_addresses }}",
"tagId": [
"12506304"
],
"resource": "contact-tagging"
},
"credentials": {
"klickTippApi": {
"name": "<your credential>"
}
},
"notesInFlow": true,
"typeVersion": 2
},
{
"id": "c799edc1-d401-4b40-a324-1d413bf35b43",
"name": "Split Out guest bookings",
"type": "n8n-nodes-base.splitOut",
"notes": "Splits the guests into individual items for processing their bookings.",
"position": [
1424,
80
],
"parameters": {
"include": "allOtherFields",
"options": {},
"fieldToSplitOut": "guests"
},
"notesInFlow": true,
"typeVersion": 1
},
{
"id": "665d2d0a-6b5a-4d3c-8596-bd38c65eeada",
"name": "Split Out guest cancellations",
"type": "n8n-nodes-base.splitOut",
"notes": "Splits the guests into individual items for processing their cancellations.",
"position": [
1424,
592
],
"parameters": {
"include": "allOtherFields",
"options": {},
"fieldToSplitOut": "invitee_guests_addresses"
},
"notesInFlow": true,
"typeVersion": 1
},
{
"id": "71deda5b-4291-4e94-b376-2dae54fda5d1",
"name": "Guests booking check",
"type": "n8n-nodes-base.if",
"notes": "Validates if there are any guests associated with the booking to process them separately.",
"position": [
1008,
192
],
"parameters": {
"options": {},
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "0c2ae412-74af-4e9f-99b6-bda9ce59f27e",
"operator": {
"type": "array",
"operation": "notEmpty",
"singleValue": true
},
"leftValue": "={{ $('New Calendly event').item.json.payload.scheduled_event.event_guests }}",
"rightValue": ""
}
]
}
},
"notesInFlow": true,
"typeVersion": 2.2
},
{
"id": "66cc01da-afcf-4abc-829d-b14155b845d0",
"name": "New Calendly event",
"type": "n8n-nodes-base.calendlyTrigger",
"notes": "This node triggers the workflow whenever an event is booked or canceled in Calendly.",
"position": [
112,
368
],
"parameters": {
"events": [
"invitee.created",
"invitee.canceled"
]
},
"credentials": {
"calendlyApi": {
"name": "<your credential>"
}
},
"notesInFlow": true,
"typeVersion": 1
},
{
"id": "a29a7a73-5ae1-4bf1-8813-0fb102149fdf",
"name": "Convert data for KlickTipp",
"type": "n8n-nodes-base.set",
"notes": "Formats the timestamps provided by Calendly so they are within the format that KlickTipp expects. UNIX Timestamps for date and date&time values and the time fields expects to receive the time in amounts of seconds since midnight.",
"position": [
320,
368
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "93769f47-287f-4e4c-8e8d-86b557baa9ac",
"name": "event_start_date_time",
"type": "string",
"value": "={{ \n//Converts the date and time value to a Unix timestamp since this is the expected format for date&time values in KlickTipp.\nnew Date($('New Calendly event').item.json.payload.scheduled_event.start_time).getTime() / 1000 }}"
},
{
"id": "47f1638b-2c43-42c6-945c-e444bdd648bc",
"name": "event_end_date_time",
"type": "string",
"value": "={{ \n//Converts the date and time value to a Unix timestamp since this is the expected format for date&time values in KlickTipp.\nnew Date($('New Calendly event').item.json.payload.scheduled_event.end_time).getTime() / 1000 }}"
},
{
"id": "ceeed6fa-3715-4bf0-9929-a93e465d291e",
"name": "invitee_start_date",
"type": "string",
"value": "={{ \n// Converts the date into an UNIX timestamp since this is the expected format for date values in KlickTipp.\nnew Date(new Date($json.payload.scheduled_event.start_time).toLocaleString('en-US', { timeZone: $json.payload.timezone })).getTime() / 1000 }}"
},
{
"id": "86165bd2-6e2f-4995-872b-14768c28ee9b",
"name": "invitee_end_date",
"type": "string",
"value": "={{ \n// Converts the date into an UNIX timestamp since this is the expected format for date values in KlickTipp.\nnew Date(new Date($json.payload.scheduled_event.end_time).toLocaleString('en-US', { timeZone: $json.payload.timezone })).getTime() / 1000 }}"
},
{
"id": "88535bfa-2fc1-4559-8e7c-a2391fcecac7",
"name": "invitee_start_time",
"type": "string",
"value": "={{ \n// Converts the time to seconds since midnight since this is the expected format for time values in KlickTipp.\nnew Date(new Date($json.payload.scheduled_event.start_time).toLocaleString('en-US', { timeZone: $json.payload.timezone })).getHours() * 3600 + new Date(new Date($json.payload.scheduled_event.start_time).toLocaleString('en-US', { timeZone: $json.payload.timezone })).getMinutes() * 60 + new Date(new Date($json.payload.scheduled_event.start_time).toLocaleString('en-US', { timeZone: $json.payload.timezone })).getSeconds() }}"
},
{
"id": "240171bf-c174-4922-aba2-a1014f4fd350",
"name": "invitee_end_time",
"type": "string",
"value": "={{ \n// Converts the time to seconds since midnight since this is the expected format for time values in KlickTipp.\nnew Date(new Date($json.payload.scheduled_event.end_time).toLocaleString('en-US', { timeZone: $json.payload.timezone })).getHours() * 3600 + new Date(new Date($json.payload.scheduled_event.end_time).toLocaleString('en-US', { timeZone: $json.payload.timezone })).getMinutes() * 60 + new Date(new Date($json.payload.scheduled_event.end_time).toLocaleString('en-US', { timeZone: $json.payload.timezone })).getSeconds() }}"
},
{
"id": "fbc2ce8b-ffc8-4b03-b869-7abceafee323",
"name": "invitee_first_name",
"type": "string",
"value": "={{ \n //Extracts first_name. If not available, extracts from name by taking all but the last word(s).\n\n $json.payload.first_name // Use first_name directly if available\n ? $json.payload.first_name \n : $json.payload.name \n ? $json.payload.name.split(' ').slice(0, -1).join(' ') // Extract all words except the last as first names\n : '' // Default to empty string if both are missing\n}}\n"
},
{
"id": "e269a0dc-4c05-49f6-8595-e8ceb3701259",
"name": "invitee_last_name",
"type": "string",
"value": "={{ \n //Extracts last_name. If not available, extracts from name by taking the last word(s).\n $json.payload.last_name // Use last_name directly if available\n ? $json.payload.last_name \n : $json.payload.name \n ? $json.payload.name.split(' ').slice(-1).join('') // Extract the last word(s) as the last name\n : '' // Default to empty string if both are missing\n}}"
},
{
"id": "3b69338b-1f62-4148-a640-25b2110da1d6",
"name": "invitee_mobile",
"type": "string",
"value": "={{ \n // Converts the phone number by replacing '+' with '00' and removing all spaces for standardization.\n $('New Calendly event').item.json.payload.text_reminder_number\n .replace('+', '00') // Replace '+' with '00'\n .replace(/\\s+/g, '') // Remove all spaces\n}}\n"
},
{
"id": "57be44f3-fc01-4ab7-9917-ecd9a1d7a584",
"name": "guest_addresses",
"type": "string",
"value": "={{ \n//Extracts the email addresses of the guests and creates a list of them.\n$('New Calendly event').item.json.payload.scheduled_event.event_guests.map(guest => guest.email) }}"
}
]
}
},
"notesInFlow": true,
"typeVersion": 3.4
},
{
"id": "400076ff-06a9-4e75-ac65-10fdf8b08fa9",
"name": "Check event - booking or cancellation?",
"type": "n8n-nodes-base.if",
"notes": "Validates if an event booking or cancellation is being processed.",
"position": [
560,
368
],
"parameters": {
"options": {},
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "61a4200d-9660-488a-ad0a-ea03d37f69d3",
"operator": {
"type": "string",
"operation": "equals"
},
"leftValue": "={{ $('New Calendly event').item.json.payload.scheduled_event.status }}",
"rightValue": "=active"
}
]
}
},
"notesInFlow": true,
"typeVersion": 2.2
},
{
"id": "3f000e76-9071-446b-9e89-cfe3ed681097",
"name": "List guests for booking",
"type": "n8n-nodes-base.set",
"notes": "Prepares the guest data for subscription into KlickTipp during booking.",
"position": [
1232,
80
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "67b36bb6-d82e-4631-9103-fde87217e556",
"name": "guests",
"type": "array",
"value": "={{ $('New Calendly event').item.json.payload.scheduled_event.event_guests.map(guest => ({ email: guest.email })) }}"
}
]
}
},
"notesInFlow": true,
"typeVersion": 3.4
},
{
"id": "8afc8968-ed48-43ed-970a-e1efac609135",
"name": "List guests for cancellation",
"type": "n8n-nodes-base.set",
"notes": "Prepares the guest data for subscription removal in KlickTipp during cancellations.",
"position": [
1232,
592
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "a06f26f5-3246-425e-901a-22370133ce64",
"name": "invitee_guests_addresses",
"type": "array",
"value": "={{ JSON.parse($json.field214142.replace(/"/g, '\"')) }}"
}
]
}
},
"notesInFlow": true,
"typeVersion": 3.4
},
{
"id": "f13d69db-00cd-4231-ab90-9e938f362983",
"name": "Guests cancellation check",
"type": "n8n-nodes-base.if",
"notes": "Validates if there are guest email addresses within the result of the subscription process of the invitee cancellation so that the cancellations can be transmitted as well. Since Calendly does not provide a list of guests upon cancellation we store this information inside the invitee contact in KlickTipp and read it out.",
"position": [
1008,
672
],
"parameters": {
"options": {},
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "a41b92de-b135-43f6-9fd9-fb5fe5f596ae",
"operator": {
"type": "string",
"operation": "contains"
},
"leftValue": "={{ $json.field214142 }}",
"rightValue": "@"
}
]
}
},
"notesInFlow": true,
"typeVersion": 2.2
},
{
"id": "eb852669-b5c8-410f-b6bd-dc4538a832ff",
"name": "Invitee did not add guests to the booking",
"type": "n8n-nodes-base.noOp",
"position": [
1232,
288
],
"parameters": {},
"typeVersion": 1
},
{
"id": "f0cbb601-e0ec-44ce-a906-7f99e7a34470",
"name": "No guest email addresses found",
"type": "n8n-nodes-base.noOp",
"notes": "If no guest E-Mail Addresses were found inside the invitee record there are no guest cancellations that must be processed as there were no guests involved in the original event booking.",
"position": [
1232,
768
],
"parameters": {},
"notesInFlow": true,
"typeVersion": 1
},
{
"id": "b112a6d7-764e-4741-b53e-76eeeee45598",
"name": "Sticky Note1",
"type": "n8n-nodes-base.stickyNote",
"position": [
480,
992
],
"parameters": {
"color": 7,
"width": 1133,
"height": 1102,
"content": "### Introduction\nThis workflow streamlines the integration between Calendly and KlickTipp, managing bookings and cancellations dynamically while ensuring accurate data transformation and seamless synchronization. Input data is validated and formatted to meet KlickTipp\u2019s API requirements, including handling guests, rescheduling, and cancellations.\n\n### Benefits\n- **Improved scheduling management**: Automatically processes bookings and cancellations in Calendly, saving time and reducing errors. Contacts are automatically imported into KlickTipp and can be used immediately, saving time and increasing the conversion rate.\n- **Automated processes**: Experts can start workflows directly, such as welcome emails or course admissions, reducing administrative effort.\n- **Error-free data management**: The template ensures precise data mapping, avoids manual corrections, and reinforces a professional appearance.\n\n### Key Features\n- **Calendly Trigger**: Captures booking and cancellation events, including invitee and guest details.\n- **Data Processing**: Validates and standardizes input fields:\n - Converts dates to UNIX timestamps for API compatibility.\n - Processes guests dynamically, splitting guest emails into individual records.\n - Validates invitee email addresses to ensure accuracy.\n- **Subscriber Management in KlickTipp**: Adds or updates invitees and guests as subscribers in KlickTipp. Supports custom field mappings such as:\n - Invitee information: Name, email, booking details.\n - Event details: Start/end times, timezone, and guest emails.\n- **Error Handling**: Differentiates between cancellations and rescheduling, preventing redundant or incorrect updates.\n\n#### Setup Instructions\n1. Install the required nodes:\n - Ensure the KlickTipp community node and its dependencies are installed.\n2. Authenticate your Calendly and KlickTipp accounts.\n3. Pre-create the following custom fields in KlickTipp to align with workflow requirements.\n4. Open each KlickTipp node and map the fields to align with your setup.\n\n- `Calendly | event name` (Text)\n- `Calendly | join url` (URL)\n- `Calendly | reschedule url` (URL)\n- `Calendly | cancel url` (URL)\n- `Calendly | event start datetime` (Date & Time)\n- `Calendly | event end datetime` (Date & Time)\n- `Calendly | invitee start date` (Date)\n- `Calendly | invitee end date` (Date)\n- `Calendly | invitee start time` (Time)\n- `Calendly | invitee end time` (Time)\n- `Calendly | invitee timezone` (Text)\n- `Calendly | invitee guests addresses` (Text)\n\n\n### Testing and Deployment\n1. Test the workflow by triggering a Calendly event.\n2. Verify that the invitee and guest data is updated accurately in KlickTipp.\n\n- **Customization**: Adjust field mappings within KlickTipp nodes to match your specific account setup.\n\n"
},
"typeVersion": 1
},
{
"id": "e7bce824-4d3e-4d72-95d9-1a9b032d930f",
"name": "Sticky Note",
"type": "n8n-nodes-base.stickyNote",
"position": [
0,
0
],
"parameters": {
"width": 480.52148964308395,
"height": 948.7320851804242,
"content": "## Calendly Event Trigger and data conversion"
},
"typeVersion": 1
},
{
"id": "2d7690b5-954a-440e-9c25-5c641644648a",
"name": "Sticky Note2",
"type": "n8n-nodes-base.stickyNote",
"position": [
512,
0
],
"parameters": {
"color": 3,
"width": 449.88180943377364,
"height": 948.9717653897333,
"content": "## Event Type Check - Bookings & Cancellations"
},
"typeVersion": 1
},
{
"id": "2816f45f-48d0-49e2-b053-8cd3acd9b0eb",
"name": "Sticky Note3",
"type": "n8n-nodes-base.stickyNote",
"position": [
992,
0
],
"parameters": {
"color": 4,
"width": 821.3026638571735,
"height": 480.18465818729,
"content": "## Guest Booking Handling"
},
"typeVersion": 1
},
{
"id": "24b07d92-baae-4e4f-8ee5-82cbfb50abf2",
"name": "Sticky Note4",
"type": "n8n-nodes-base.stickyNote",
"position": [
992,
512
],
"parameters": {
"color": 5,
"width": 820.6219399664249,
"height": 448.8089459989119,
"content": "## Guest Cancellation Handling"
},
"typeVersion": 1
},
{
"id": "a03c6e5e-9741-4ffb-b1bf-e8dbc2525f05",
"name": "Update invitee cancellation in KlickTipp",
"type": "n8n-nodes-klicktipp.klicktipp",
"notes": "Handles cancellations by removing the invitee from the subscriber list in KlickTipp.",
"position": [
832,
672
],
"parameters": {
"email": "={{ $('New Calendly event').item.json.payload.email }}",
"tagId": [
"12506304"
],
"resource": "contact-tagging"
},
"credentials": {
"klickTippApi": {
"name": "<your credential>"
}
},
"notesInFlow": true,
"typeVersion": 2
}
],
"connections": {
"New Calendly event": {
"main": [
[
{
"node": "Convert data for KlickTipp",
"type": "main",
"index": 0
}
]
]
},
"Guests booking check": {
"main": [
[
{
"node": "List guests for booking",
"type": "main",
"index": 0
}
],
[
{
"node": "Invitee did not add guests to the booking",
"type": "main",
"index": 0
}
]
]
},
"List guests for booking": {
"main": [
[
{
"node": "Split Out guest bookings",
"type": "main",
"index": 0
}
]
]
},
"Split Out guest bookings": {
"main": [
[
{
"node": "Subscribe guest booking in KlickTipp",
"type": "main",
"index": 0
}
]
]
},
"Guests cancellation check": {
"main": [
[
{
"node": "List guests for cancellation",
"type": "main",
"index": 0
}
],
[
{
"node": "No guest email addresses found",
"type": "main",
"index": 0
}
]
]
},
"Convert data for KlickTipp": {
"main": [
[
{
"node": "Check event - booking or cancellation?",
"type": "main",
"index": 0
}
]
]
},
"List guests for cancellation": {
"main": [
[
{
"node": "Split Out guest cancellations",
"type": "main",
"index": 0
}
]
]
},
"Split Out guest cancellations": {
"main": [
[
{
"node": "Subscribe guest cancellation in KlickTipp",
"type": "main",
"index": 0
}
]
]
},
"Check event - booking or cancellation?": {
"main": [
[
{
"node": "Subscribe invitee booking in KlickTipp",
"type": "main",
"index": 0
}
],
[
{
"node": "Update invitee cancellation in KlickTipp",
"type": "main",
"index": 0
}
]
]
},
"Subscribe invitee booking in KlickTipp": {
"main": [
[
{
"node": "Guests booking check",
"type": "main",
"index": 0
}
]
]
},
"Update invitee cancellation in KlickTipp": {
"main": [
[
{
"node": "Guests cancellation check",
"type": "main",
"index": 0
}
]
]
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
calendlyApiklickTippApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Community Node Disclaimer: This workflow uses KlickTipp community nodes.
Source: https://n8n.io/workflows/2620/ — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Community Node Disclaimer: This workflow uses KlickTipp community nodes.
This workflow uses KlickTipp community nodes, available for self-hosted n8n instances only.
Batch-convert CAD/BIM files to analysis-ready XLSX and optional DAE with automatic verification and a clean HTML report. Runs locally via and PowerShell on Windows.
Sync your Linear issues to Todoist automatically with this n8n workflow. When an issue is created, updated, or completed in Linear, a corresponding task is created, updated, or closed in Todoist. Trig
Back up n8n workflows to Google Drive automatically This workflow provides a robust solution for backing up your n8n workflows to Google Drive. It is designed to handle backups for multiple n8n instan