+
Workflow Diagram
+
@@ -1807,20 +1838,19 @@ def generate_html_documentation(data: Dict[str, Any]) -> str:
if (card.classList.contains('expanded')) {
const diagramContainer = card.querySelector('.workflow-diagram-container');
const diagramElement = card.querySelector('.workflow-diagram');
+ const loadingElement = card.querySelector('.workflow-diagram-loading');
- if (diagramContainer && diagramElement && !diagramElement.innerHTML) {
- const loadingElement = card.querySelector('.workflow-diagram-loading');
+ if (diagramContainer && diagramElement) {
if (loadingElement) loadingElement.style.display = 'block';
- // Load Mermaid.js if needed then render the diagram
+ // Load Mermaid.js if needed then render the diagram with unique ID
loadMermaidIfNeeded().then(() => {
- try { const diagramCode = decodeURIComponent(diagramContainer.dataset.diagram);
- diagramElement.innerHTML = diagramCode;
- window.mermaid.init(undefined, diagramElement);
- if (loadingElement) loadingElement.style.display = 'none';
- } catch (error) {
- console.error('Error rendering diagram:', error);
- if (loadingElement) loadingElement.innerHTML = 'Error loading diagram';
+ const diagramCode = decodeURIComponent(diagramContainer.dataset.diagram);
+ // Render the diagram using our helper function
+ const success = renderMermaidDiagram(diagramElement, diagramCode);
+ if (loadingElement) loadingElement.style.display = 'none';
+ if (!success && loadingElement) {
+ loadingElement.innerHTML = 'Error loading diagram';
}
});
}
@@ -1923,8 +1953,7 @@ def generate_html_documentation(data: Dict[str, Any]) -> str:
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url); }
-
- showMermaidModal(workflowName) {
+ showMermaidModal(workflowName) {
const workflow = this.workflows.find(w => w.name === workflowName);
if (!workflow) return;
@@ -1938,24 +1967,8 @@ def generate_html_documentation(data: Dict[str, Any]) -> str:
// Load Mermaid.js if needed then render the diagram
loadMermaidIfNeeded().then(() => {
- diagramElement.innerHTML = workflow.diagram;
-
- // Render the diagram
- window.mermaid.initialize({
- startOnLoad: false,
- theme: 'default',
- flowchart: {
- useMaxWidth: true,
- htmlLabels: true,
- curve: 'basis'
- }, securityLevel: 'loose'
- });
- try {
- window.mermaid.init(undefined, document.getElementById('mermaidDiagram'));
- } catch (error) {
- console.error('Error rendering diagram:', error);
- diagramElement.innerHTML = '
Error rendering diagram. Please try again.
';
- }
+ // Use our improved rendering function
+ renderMermaidDiagram(diagramElement, workflow.diagram);
});
}
@@ -2025,9 +2038,7 @@ def generate_html_documentation(data: Dict[str, Any]) -> str:
${nodes}
${connections}
`;
- }
-
- toggleTheme() {
+ } toggleTheme() {
const body = document.body;
body.classList.toggle('dark-mode');
@@ -2038,6 +2049,32 @@ def generate_html_documentation(data: Dict[str, Any]) -> str:
// Update button text
const toggleButton = document.getElementById('themeToggle');
toggleButton.textContent = isDarkMode ? '🌞 Light' : '🌙 Dark';
+
+ // Update Mermaid theme if it's loaded
+ if (window.mermaid) {
+ // Re-initialize with the appropriate theme
+ window.mermaid.initialize({
+ startOnLoad: false,
+ theme: isDarkMode ? 'dark' : 'default',
+ flowchart: {
+ useMaxWidth: true,
+ htmlLabels: true,
+ curve: 'basis'
+ },
+ securityLevel: 'loose'
+ });
+
+ // Re-render any visible diagrams
+ const expandedCards = document.querySelectorAll('.workflow-card.expanded');
+ expandedCards.forEach(card => {
+ const diagramContainer = card.querySelector('.workflow-diagram-container');
+ const diagramElement = card.querySelector('.workflow-diagram');
+ if (diagramContainer && diagramElement) {
+ const diagramCode = decodeURIComponent(diagramContainer.dataset.diagram);
+ renderMermaidDiagram(diagramElement, diagramCode);
+ }
+ });
+ }
}
hideLoading() {
diff --git a/workflow-documentation.html b/workflow-documentation.html
index c0b3e0f..b1ec38b 100644
--- a/workflow-documentation.html
+++ b/workflow-documentation.html
@@ -1020,27 +1020,31 @@
.diagram-content {
max-width: 100%;
overflow: auto;
- }
- .workflow-diagram-container {
+ } .workflow-diagram-container {
position: relative;
margin: 15px 0;
- min-height: 100px;
- } .workflow-diagram-loading {
+ min-height: 200px; /* Give more space for diagram */
+ }.workflow-diagram-loading {
text-align: center;
padding: 20px;
color: var(--text-muted);
font-style: italic;
- }
- .workflow-diagram {
+ } .workflow-diagram {
margin: 15px 0;
padding: 15px;
background: white;
border-radius: 8px;
overflow: auto;
+ min-height: 150px;
}
.dark-mode .workflow-diagram {
background: #2d3748;
}
+ /* Add styles for the mermaid diagrams */
+ .workflow-diagram .mermaid {
+ width: 100%;
+ overflow: visible;
+ }
.mermaid-container {
min-height: 200px;
padding: 20px;
@@ -1079,6 +1083,32 @@
});
}
+ // Function to render a Mermaid diagram with unique ID to avoid conflicts
+ function renderMermaidDiagram(container, diagramCode) {
+ // Create a unique ID for this diagram instance
+ const diagramId = 'diagram-' + Math.random().toString(36).substring(2, 10);
+
+ // Create a new div with the unique ID
+ const diagramDiv = document.createElement('div');
+ diagramDiv.id = diagramId;
+ diagramDiv.className = 'mermaid';
+ diagramDiv.textContent = diagramCode;
+
+ // Clear existing content and append the new div
+ container.innerHTML = '';
+ container.appendChild(diagramDiv);
+
+ // Render the diagram
+ try {
+ window.mermaid.init(undefined, document.getElementById(diagramId));
+ return true;
+ } catch (error) {
+ console.error('Error rendering diagram:', error);
+ container.innerHTML = '
Error rendering diagram. Please try again.
';
+ return false;
+ }
+ }
+
// Embedded workflow data from Python analysis
const WORKFLOW_DATA = {
"workflows": [
@@ -1691,14 +1721,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
+ "Telegram",
+ "Manual",
+ "Gmail",
"Markdown",
"Schedule",
- "Manual",
- "Telegram",
- "Gmail"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Markdown, and Schedule for data processing. Uses 24 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Manual, and Gmail for data processing. Uses 24 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -4630,20 +4660,20 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Telegram",
+ "Facebookgraphapi",
"Httprequest",
- "Googledocs",
"Linkedin",
"Extractfromfile",
- "Facebookgraphapi",
- "Telegram",
- "Executeworkflow",
+ "Noop",
"Twitter",
- "Code",
- "Googledrive",
"Gmail",
- "Noop"
+ "Executeworkflow",
+ "Googledrive",
+ "Googledocs"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Googledocs, and Linkedin for data processing. Uses 100 nodes and integrates with 12 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Facebookgraphapi for data processing. Uses 100 nodes and integrates with 12 services.",
"steps": [
{
"name": "When chat message received",
@@ -4844,10 +4874,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Totp"
+ "Totp",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Totp for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Totp and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -5038,10 +5068,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Typeform",
- "Googlesheets"
+ "Googlesheets",
+ "Typeform"
],
- "description": "Webhook-triggered automation that connects Typeform and Googlesheets for data processing. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that connects Googlesheets and Typeform for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Typeform Trigger",
@@ -5475,11 +5505,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Airtable",
"Twitter",
- "Manual",
- "Airtable"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Twitter, Manual, and Airtable for data processing. Uses 7 nodes.",
+ "description": "Manual workflow that orchestrates Airtable, Twitter, and Manual for data processing. Uses 7 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -5579,11 +5609,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Cron",
"Openweathermap",
+ "Cron",
"Plivo"
],
- "description": "Scheduled automation that orchestrates Cron, Openweathermap, and Plivo for data processing. Uses 3 nodes.",
+ "description": "Scheduled automation that orchestrates Openweathermap, Cron, and Plivo for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Cron",
@@ -6049,11 +6079,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Hubspot",
"Slack",
- "Stripe",
- "Hubspot"
+ "Stripe"
],
- "description": "Webhook-triggered automation that orchestrates Slack, Stripe, and Hubspot to update existing data. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Hubspot, Slack, and Stripe to update existing data. Uses 8 nodes.",
"steps": [
{
"name": "When Invoice Paid",
@@ -6422,10 +6452,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Copper"
+ "Copper",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Copper for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that connects Copper and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -6701,10 +6731,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Copper"
+ "Copper",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Copper for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that connects Copper and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -6811,10 +6841,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Coda"
+ "Coda",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Coda for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that connects Coda and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -6967,11 +6997,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Amqp",
"Cron",
+ "Amqp",
"Httprequest"
],
- "description": "Scheduled automation that orchestrates Amqp, Cron, and Httprequest to update existing data. Uses 4 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Amqp, and Httprequest to update existing data. Uses 4 nodes.",
"steps": [
{
"name": "Cron",
@@ -7152,10 +7182,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Emelia",
- "Mattermost"
+ "Mattermost",
+ "Emelia"
],
- "description": "Webhook-triggered automation that connects Emelia and Mattermost for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Mattermost and Emelia for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Emelia Trigger",
@@ -7225,10 +7255,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Chargebee"
+ "Chargebee",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Chargebee to create new records. Uses 2 nodes.",
+ "description": "Manual workflow that connects Chargebee and Manual to create new records. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -7431,10 +7461,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Emelia",
- "Mattermost"
+ "Mattermost",
+ "Emelia"
],
- "description": "Webhook-triggered automation that connects Emelia and Mattermost for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Mattermost and Emelia for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Emelia Trigger",
@@ -7588,10 +7618,10 @@
"triggerType": "Scheduled",
"integrations": [
"Cron",
- "Awssqs",
- "Httprequest"
+ "Httprequest",
+ "Awssqs"
],
- "description": "Scheduled automation that orchestrates Cron, Awssqs, and Httprequest for data processing. Uses 4 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Httprequest, and Awssqs for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Cron",
@@ -7919,11 +7949,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
+ "Googlebigquery",
"Cron",
- "Httprequest",
- "Googlebigquery"
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Cron, Httprequest, and Googlebigquery for data processing. Uses 4 nodes.",
+ "description": "Scheduled automation that orchestrates Googlebigquery, Cron, and Httprequest for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Cron",
@@ -8105,12 +8135,12 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Functionitem",
"Uproc",
- "Manual",
- "Awsses"
+ "Functionitem",
+ "Awsses",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Functionitem, Uproc, and Manual for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Uproc, Functionitem, and Awsses for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -8326,10 +8356,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Mailcheck",
- "Airtable"
+ "Airtable",
+ "Mailcheck"
],
- "description": "Manual workflow that connects Mailcheck and Airtable for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that connects Airtable and Mailcheck for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Airtable",
@@ -8693,10 +8723,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Orbit"
+ "Orbit",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Orbit to create new records. Uses 5 nodes.",
+ "description": "Manual workflow that connects Orbit and Manual to create new records. Uses 5 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -8767,10 +8797,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Clickup"
+ "Clickup",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Clickup to create new records. Uses 2 nodes.",
+ "description": "Manual workflow that connects Clickup and Manual to create new records. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -9062,14 +9092,14 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Dropbox",
"Functionitem",
- "Httprequest",
- "Manual",
+ "Uproc",
"Awsses",
- "Uproc"
+ "Dropbox",
+ "Manual",
+ "Httprequest"
],
- "description": "Manual workflow that orchestrates Dropbox, Functionitem, and Httprequest for data processing. Uses 10 nodes and integrates with 6 services.",
+ "description": "Manual workflow that orchestrates Functionitem, Uproc, and Awsses for data processing. Uses 10 nodes and integrates with 6 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -9240,10 +9270,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Filemaker"
+ "Filemaker",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Filemaker for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that connects Filemaker and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -9394,11 +9424,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Mqtt",
"Cron",
+ "Mqtt",
"Httprequest"
],
- "description": "Scheduled automation that orchestrates Mqtt, Cron, and Httprequest for data processing. Uses 4 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Mqtt, and Httprequest for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Cron",
@@ -10458,15 +10488,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Nocodb",
- "Schedule",
- "Spotify",
- "Filter",
"Code",
- "Noop"
+ "Schedule",
+ "Noop",
+ "Filter",
+ "Splitinbatches",
+ "Spotify",
+ "Nocodb"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Nocodb, and Schedule for data processing. Uses 30 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Schedule, and Noop for data processing. Uses 30 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -10695,10 +10725,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
- "Googlesheets"
+ "Googlesheets",
+ "Webhook"
],
- "description": "Webhook-triggered automation that connects Webhook and Googlesheets for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Googlesheets and Webhook for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Webhook",
@@ -10815,10 +10845,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Googledrive",
- "Gmail"
+ "Gmail",
+ "Googledrive"
],
- "description": "Manual workflow that connects Googledrive and Gmail for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that connects Gmail and Googledrive for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Gmail1",
@@ -11043,11 +11073,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Emailsend",
"Ical",
- "Manual",
- "Emailsend"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Ical, Manual, and Emailsend for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Emailsend, Ical, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -11156,10 +11186,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Notion",
- "Calendly"
+ "Calendly",
+ "Notion"
],
- "description": "Webhook-triggered automation that connects Notion and Calendly for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Calendly and Notion for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Calendly Trigger",
@@ -12154,10 +12184,10 @@
"triggerType": "Webhook",
"integrations": [
"Crypto",
- "Webhook",
- "Airtable"
+ "Airtable",
+ "Webhook"
],
- "description": "Webhook-triggered automation that orchestrates Crypto, Webhook, and Airtable for data processing. Uses 26 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Crypto, Airtable, and Webhook for data processing. Uses 26 nodes.",
"steps": [
{
"name": "Webhook",
@@ -12301,11 +12331,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Notion",
"Calendly",
+ "Notion",
"Humanticai"
],
- "description": "Webhook-triggered automation that orchestrates Notion, Calendly, and Humanticai for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Calendly, Notion, and Humanticai for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Calendly Trigger",
@@ -12508,13 +12538,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Slack",
"Trello",
- "Typeform",
"Notion",
+ "Typeform",
+ "Slack",
"Googlecloudnaturallanguage"
],
- "description": "Webhook-triggered automation that orchestrates Slack, Trello, and Typeform for data processing. Uses 6 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Trello, Notion, and Typeform for data processing. Uses 6 nodes and integrates with 5 services.",
"steps": [
{
"name": "Typeform Trigger",
@@ -12770,10 +12800,10 @@
"integrations": [
"Functionitem",
"Uproc",
- "Manual",
- "Telegram"
+ "Telegram",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Functionitem, Uproc, and Manual for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Functionitem, Uproc, and Telegram for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -13064,10 +13094,10 @@
"integrations": [
"Notion",
"Webhook",
- "Httprequest",
- "Htmlextract"
+ "Htmlextract",
+ "Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Notion, Webhook, and Httprequest for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Notion, Webhook, and Htmlextract for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webhook",
@@ -13165,11 +13195,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Awstranscribe",
"Awss3",
- "Manual",
- "Awstranscribe"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Awss3, Manual, and Awstranscribe for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Awstranscribe, Awss3, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -13408,10 +13438,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Microsofttodo"
+ "Microsofttodo",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Microsofttodo for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that connects Microsofttodo and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -13822,13 +13852,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Splitinbatches",
"Trello",
+ "Googlecalendar",
"Cron",
"Noop",
- "Googlecalendar"
+ "Splitinbatches"
],
- "description": "Scheduled automation that orchestrates Splitinbatches, Trello, and Cron for data processing. Uses 8 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Trello, Googlecalendar, and Cron for data processing. Uses 8 nodes and integrates with 5 services.",
"steps": [
{
"name": "Trigger Every Day at 8am",
@@ -13966,11 +13996,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Writebinaryfile",
"Movebinarydata",
+ "Writebinaryfile",
"Manual"
],
- "description": "Manual workflow that orchestrates Writebinaryfile, Movebinarydata, and Manual for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates Movebinarydata, Writebinaryfile, and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -14395,12 +14425,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Interval",
"Notion",
"Webhook",
- "Signl4",
- "Interval"
+ "Signl4"
],
- "description": "Complex multi-step automation that orchestrates Notion, Webhook, and Signl4 for data processing. Uses 13 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Interval, Notion, and Webhook for data processing. Uses 13 nodes and integrates with 4 services.",
"steps": [
{
"name": "Notion Trigger",
@@ -14670,11 +14700,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Readbinaryfile",
"Movebinarydata",
- "Manual",
- "Readbinaryfile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Movebinarydata, Manual, and Readbinaryfile for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Readbinaryfile, Movebinarydata, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -14799,11 +14829,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Twitter",
"Noop",
+ "Twitter",
"Manual"
],
- "description": "Manual workflow that orchestrates Twitter, Noop, and Manual for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates Noop, Twitter, and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -14936,11 +14966,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
+ "Github",
"Travisci",
- "Noop",
- "Github"
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Travisci, Noop, and Github for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Github, Travisci, and Noop for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Github Trigger",
@@ -15100,11 +15130,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Noop",
+ "Github",
"Telegram",
- "Github"
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Noop, Telegram, and Github for data processing. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Github, Telegram, and Noop for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Telegram Trigger",
@@ -15171,10 +15201,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Pipedrive"
+ "Pipedrive",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Pipedrive to create new records. Uses 2 nodes.",
+ "description": "Manual workflow that connects Pipedrive and Manual to create new records. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -15360,11 +15390,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Writebinaryfile",
"Movebinarydata",
+ "Writebinaryfile",
"Manual"
],
- "description": "Manual workflow that orchestrates Writebinaryfile, Movebinarydata, and Manual for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Movebinarydata, Writebinaryfile, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -15465,11 +15495,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
+ "Cron",
"Line",
- "Openweathermap",
- "Cron"
+ "Openweathermap"
],
- "description": "Scheduled automation that orchestrates Line, Openweathermap, and Cron to update existing data. Uses 3 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Line, and Openweathermap to update existing data. Uses 3 nodes.",
"steps": [
{
"name": "Cron",
@@ -16210,14 +16240,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
+ "Mattermost",
"Webhook",
- "Executeworkflow",
"Cron",
+ "Httprequest",
"Noop",
- "Mattermost"
+ "Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Executeworkflow for data processing. Uses 29 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Mattermost, Webhook, and Cron for data processing. Uses 29 nodes and integrates with 6 services.",
"steps": [
{
"name": "Action from MM",
@@ -16603,13 +16633,13 @@
"triggerType": "Scheduled",
"integrations": [
"Functionitem",
- "Httprequest",
- "Movebinarydata",
"Manual",
"Cron",
+ "Httprequest",
+ "Movebinarydata",
"Googledrive"
],
- "description": "Scheduled automation that orchestrates Functionitem, Httprequest, and Movebinarydata for data processing. Uses 9 nodes and integrates with 6 services.",
+ "description": "Scheduled automation that orchestrates Functionitem, Manual, and Cron for data processing. Uses 9 nodes and integrates with 6 services.",
"steps": [
{
"name": "Get Workflow",
@@ -16750,11 +16780,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Gmail",
"Splitinbatches",
- "Manual",
- "Gmail"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Splitinbatches, Manual, and Gmail for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates Gmail, Splitinbatches, and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -17066,10 +17096,10 @@
"triggerType": "Scheduled",
"integrations": [
"Notion",
- "Splitinbatches",
- "Cron"
+ "Cron",
+ "Splitinbatches"
],
- "description": "Scheduled automation that orchestrates Notion, Splitinbatches, and Cron for data processing. Uses 10 nodes.",
+ "description": "Scheduled automation that orchestrates Notion, Cron, and Splitinbatches for data processing. Uses 10 nodes.",
"steps": [
{
"name": "Every day @ 2am",
@@ -17216,11 +17246,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
+ "Cron",
"Gotify",
- "Openweathermap",
- "Cron"
+ "Openweathermap"
],
- "description": "Scheduled automation that orchestrates Gotify, Openweathermap, and Cron to update existing data. Uses 3 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Gotify, and Openweathermap to update existing data. Uses 3 nodes.",
"steps": [
{
"name": "Cron",
@@ -17390,11 +17420,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Rssfeedread",
"Splitinbatches",
- "Manual",
- "Rssfeedread"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Splitinbatches, Manual, and Rssfeedread for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that orchestrates Rssfeedread, Splitinbatches, and Manual for data processing. Uses 6 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -17632,10 +17662,10 @@
"triggerType": "Manual",
"integrations": [
"Noop",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Noop, Manual, and Httprequest for data processing. Uses 8 nodes.",
+ "description": "Manual workflow that orchestrates Noop, Httprequest, and Manual for data processing. Uses 8 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -17781,11 +17811,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Getresponse",
"Noop",
+ "Getresponse",
"Manual"
],
- "description": "Manual workflow that orchestrates Getresponse, Noop, and Manual to update existing data. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Noop, Getresponse, and Manual to update existing data. Uses 5 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -18353,10 +18383,10 @@
"integrations": [
"Slack",
"Googlecalendar",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Slack, Googlecalendar, and Manual for data processing. Uses 9 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Googlecalendar, and Httprequest for data processing. Uses 9 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -18773,10 +18803,10 @@
"triggerType": "Webhook",
"integrations": [
"Webhook",
- "Respondtowebhook",
- "Xml"
+ "Xml",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and Xml for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Xml, and Respondtowebhook for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Respond to Webhook",
@@ -19857,11 +19887,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Emailsend",
"Cron",
+ "Emailsend",
"Httprequest"
],
- "description": "Scheduled automation that orchestrates Emailsend, Cron, and Httprequest for data processing. Uses 9 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Emailsend, and Httprequest for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Cron",
@@ -19980,12 +20010,12 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Spreadsheetfile",
- "Dropbox",
"Interval",
- "Googlesheets"
+ "Googlesheets",
+ "Spreadsheetfile",
+ "Dropbox"
],
- "description": "Manual workflow that orchestrates Spreadsheetfile, Dropbox, and Interval for data processing. Uses 4 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Interval, Googlesheets, and Spreadsheetfile for data processing. Uses 4 nodes and integrates with 4 services.",
"steps": [
{
"name": "Trigger all 15 min",
@@ -20419,13 +20449,13 @@
"triggerType": "Webhook",
"integrations": [
"Harvest",
- "Shopify",
"Trello",
+ "Shopify",
"Zohocrm",
"Gmail",
"Mailchimp"
],
- "description": "Webhook-triggered automation that orchestrates Harvest, Shopify, and Trello for data processing. Uses 9 nodes and integrates with 6 services.",
+ "description": "Webhook-triggered automation that orchestrates Harvest, Trello, and Shopify for data processing. Uses 9 nodes and integrates with 6 services.",
"steps": [
{
"name": "order created",
@@ -20680,14 +20710,14 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Slack",
- "Shopify",
- "Datetime",
- "Cron",
"Googlesheets",
- "Noop"
+ "Shopify",
+ "Cron",
+ "Datetime",
+ "Noop",
+ "Slack"
],
- "description": "Scheduled automation that orchestrates Slack, Shopify, and Datetime for data processing. Uses 9 nodes and integrates with 6 services.",
+ "description": "Scheduled automation that orchestrates Googlesheets, Shopify, and Cron for data processing. Uses 9 nodes and integrates with 6 services.",
"steps": [
{
"name": "Cron",
@@ -20931,11 +20961,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Noop",
+ "Googleperspective",
"Telegram",
- "Googleperspective"
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Noop, Telegram, and Googleperspective for data processing. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googleperspective, Telegram, and Noop for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Telegram Trigger",
@@ -22166,17 +22196,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Manual",
"Httprequest",
"Wait",
- "Aggregate",
"Splitout",
- "Manual",
+ "Debughelper",
"Executeworkflow",
- "Code",
- "Debughelper"
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 35 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 35 nodes and integrates with 9 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -22759,15 +22789,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Dropcontact",
"Hubspot",
- "Lemlist",
- "Wait",
"Cron",
+ "Wait",
"Airtable",
- "Phantombuster"
+ "Phantombuster",
+ "Dropcontact",
+ "Lemlist"
],
- "description": "Complex multi-step automation that orchestrates Dropcontact, Hubspot, and Lemlist to create new records. Uses 16 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Hubspot, Cron, and Wait to create new records. Uses 16 nodes and integrates with 7 services.",
"steps": [
{
"name": "Cron",
@@ -22923,13 +22953,13 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Slack",
- "Datetime",
- "Wait",
"Pipedrive",
- "Calendly"
+ "Datetime",
+ "Calendly",
+ "Wait",
+ "Slack"
],
- "description": "Webhook-triggered automation that orchestrates Slack, Datetime, and Wait for data processing. Uses 5 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Pipedrive, Datetime, and Calendly for data processing. Uses 5 nodes and integrates with 5 services.",
"steps": [
{
"name": "Calendly Trigger",
@@ -23254,11 +23284,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
+ "Github",
"Cron",
- "Httprequest",
- "Github"
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Cron, Httprequest, and Github for data processing. Uses 11 nodes.",
+ "description": "Scheduled automation that orchestrates Github, Cron, and Httprequest for data processing. Uses 11 nodes.",
"steps": [
{
"name": "Daily at 23:59",
@@ -23500,12 +23530,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Noop",
- "Typeform",
"Hubspot",
- "Gmail"
+ "Gmail",
+ "Typeform",
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Noop, Typeform, and Hubspot for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Hubspot, Gmail, and Typeform for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "Typeform Trigger",
@@ -23859,12 +23889,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Slack",
- "Googleslides",
"Hubspot",
- "Airtable"
+ "Airtable",
+ "Slack",
+ "Googleslides"
],
- "description": "Webhook-triggered automation that orchestrates Slack, Googleslides, and Hubspot for data processing. Uses 10 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Hubspot, Airtable, and Slack for data processing. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "Hubspot Trigger",
@@ -24204,10 +24234,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Noop",
- "Github"
+ "Github",
+ "Noop"
],
- "description": "Webhook-triggered automation that connects Noop and Github for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that connects Github and Noop for data processing. Uses 10 nodes.",
"steps": [
{
"name": "Github Trigger1",
@@ -24485,11 +24515,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Mailgun",
"Webhook",
- "Executecommand",
- "Mailgun"
+ "Executecommand"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Executecommand, and Mailgun for data processing. Uses 9 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Mailgun, Webhook, and Executecommand for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Add bind-tools",
@@ -24909,11 +24939,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
"Airtable",
+ "Webhook",
"Redis"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Airtable, and Redis for data processing. Uses 11 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Airtable, Webhook, and Redis for data processing. Uses 11 nodes.",
"steps": [
{
"name": "Webhook1",
@@ -25159,14 +25189,14 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Splitinbatches",
+ "Manual",
"Httprequest",
+ "Noop",
"Wait",
"N8Ntrainingcustomerdatastore",
- "Manual",
- "Noop"
+ "Splitinbatches"
],
- "description": "Manual workflow that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 6 nodes and integrates with 6 services.",
+ "description": "Manual workflow that orchestrates Manual, Httprequest, and Noop for data processing. Uses 6 nodes and integrates with 6 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -25419,14 +25449,14 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Httprequest",
- "Htmlextract",
- "Spreadsheetfile",
- "Itemlists",
"Manual",
- "Emailsend"
+ "Httprequest",
+ "Spreadsheetfile",
+ "Emailsend",
+ "Itemlists",
+ "Htmlextract"
],
- "description": "Manual workflow that orchestrates Httprequest, Htmlextract, and Spreadsheetfile for data processing. Uses 8 nodes and integrates with 6 services.",
+ "description": "Manual workflow that orchestrates Manual, Httprequest, and Spreadsheetfile for data processing. Uses 8 nodes and integrates with 6 services.",
"steps": [
{
"name": "HTTP Request",
@@ -25549,10 +25579,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Netlify",
- "Airtable"
+ "Airtable",
+ "Netlify"
],
- "description": "Webhook-triggered automation that connects Netlify and Airtable for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that connects Airtable and Netlify for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Netlify Trigger",
@@ -25706,10 +25736,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Netlify",
- "Slack"
+ "Slack",
+ "Netlify"
],
- "description": "Webhook-triggered automation that connects Netlify and Slack for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Slack and Netlify for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Netlify Trigger",
@@ -26198,10 +26228,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Noop",
- "Github"
+ "Github",
+ "Noop"
],
- "description": "Webhook-triggered automation that connects Noop and Github for data processing. Uses 11 nodes.",
+ "description": "Webhook-triggered automation that connects Github and Noop for data processing. Uses 11 nodes.",
"steps": [
{
"name": "Github Trigger",
@@ -26594,12 +26624,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Datetime",
- "Googlecalendar",
"Slack",
- "Cron"
+ "Cron",
+ "Datetime",
+ "Googlecalendar"
],
- "description": "Complex multi-step automation that orchestrates Datetime, Googlecalendar, and Slack for data processing. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Slack, Cron, and Datetime for data processing. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "Cron",
@@ -26750,11 +26780,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Humanticai",
"Httprequest",
- "Humanticai"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Httprequest, and Humanticai to create new records. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Humanticai, Httprequest, and Manual to create new records. Uses 5 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -27081,10 +27111,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Salesmate"
+ "Salesmate",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Salesmate to create new records. Uses 2 nodes.",
+ "description": "Manual workflow that connects Salesmate and Manual to create new records. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -27415,11 +27445,11 @@
"triggerType": "Scheduled",
"integrations": [
"Itemlists",
- "Discord",
"Cron",
- "Graphql"
+ "Graphql",
+ "Discord"
],
- "description": "Scheduled automation that orchestrates Itemlists, Discord, and Cron for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Itemlists, Cron, and Graphql for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Cron",
@@ -27600,11 +27630,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Readbinaryfile",
"Spreadsheetfile",
- "Onfleet",
- "Readbinaryfile"
+ "Onfleet"
],
- "description": "Manual workflow that orchestrates Spreadsheetfile, Onfleet, and Readbinaryfile to create new records. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Readbinaryfile, Spreadsheetfile, and Onfleet to create new records. Uses 3 nodes.",
"steps": [
{
"name": "Read Binary File",
@@ -28023,12 +28053,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Emailsend",
- "Manual",
"Cron",
- "Httprequest"
+ "Emailsend",
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Emailsend, Manual, and Cron for data processing. Uses 13 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Cron, Emailsend, and Httprequest for data processing. Uses 13 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -28179,12 +28209,12 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Googlesheets",
"Dropcontact",
"Lemlist",
- "Manual",
- "Googlesheets"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Dropcontact, Lemlist, and Manual for data processing. Uses 4 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Googlesheets, Dropcontact, and Lemlist for data processing. Uses 4 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -28846,12 +28876,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Dropcontact",
- "Typeform",
"Slack",
- "Airtable"
+ "Airtable",
+ "Dropcontact",
+ "Typeform"
],
- "description": "Webhook-triggered automation that orchestrates Dropcontact, Typeform, and Slack for data processing. Uses 10 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Airtable, and Dropcontact for data processing. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "Typeform Trigger",
@@ -29004,11 +29034,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Dropcontact",
+ "Calendly",
"Notion",
- "Calendly"
+ "Dropcontact"
],
- "description": "Webhook-triggered automation that orchestrates Dropcontact, Notion, and Calendly for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Calendly, Notion, and Dropcontact for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Calendly Trigger",
@@ -29083,10 +29113,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Error",
- "Slack"
+ "Slack",
+ "Error"
],
- "description": "Webhook-triggered automation that connects Error and Slack for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Slack and Error for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Error Trigger",
@@ -29422,10 +29452,10 @@
"triggerType": "Manual",
"integrations": [
"N8Ntrainingcustomerdatastore",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates N8Ntrainingcustomerdatastore, Manual, and Httprequest for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates N8Ntrainingcustomerdatastore, Httprequest, and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -29652,10 +29682,10 @@
"triggerType": "Scheduled",
"integrations": [
"Hubspot",
- "Pipedrive",
- "Cron"
+ "Cron",
+ "Pipedrive"
],
- "description": "Scheduled automation that orchestrates Hubspot, Pipedrive, and Cron for data processing. Uses 7 nodes.",
+ "description": "Scheduled automation that orchestrates Hubspot, Cron, and Pipedrive for data processing. Uses 7 nodes.",
"steps": [
{
"name": "Cron",
@@ -29947,11 +29977,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Httprequest",
"Start",
- "Httprequest"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Start, and Httprequest for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates Httprequest, Start, and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -30099,12 +30129,12 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Googlecloudnaturallanguage",
- "Typeform",
+ "Noop",
"Mattermost",
- "Noop"
+ "Googlecloudnaturallanguage",
+ "Typeform"
],
- "description": "Webhook-triggered automation that orchestrates Googlecloudnaturallanguage, Typeform, and Mattermost for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Noop, Mattermost, and Googlecloudnaturallanguage for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Typeform Trigger",
@@ -30442,10 +30472,10 @@
"triggerType": "Scheduled",
"integrations": [
"Gitlab",
- "Cron",
- "Github"
+ "Github",
+ "Cron"
],
- "description": "Scheduled automation that orchestrates Gitlab, Cron, and Github for data processing. Uses 6 nodes.",
+ "description": "Scheduled automation that orchestrates Gitlab, Github, and Cron for data processing. Uses 6 nodes.",
"steps": [
{
"name": "Cron",
@@ -30982,11 +31012,11 @@
"triggerType": "Complex",
"integrations": [
"Itemlists",
- "Manual",
"Editimage",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Itemlists, Manual, and Editimage for data processing. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Itemlists, Editimage, and Httprequest for data processing. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -31445,13 +31475,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Mysql",
- "Webhook",
- "Manual",
"Telegram",
- "Cron"
+ "Manual",
+ "Webhook",
+ "Cron",
+ "Mysql"
],
- "description": "Webhook-triggered automation that orchestrates Mysql, Webhook, and Manual for data processing. Uses 7 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Telegram, Manual, and Webhook for data processing. Uses 7 nodes and integrates with 5 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -32943,11 +32973,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Cron",
"Twitter",
+ "Cron",
"Httprequest"
],
- "description": "Scheduled automation that orchestrates Cron, Twitter, and Httprequest for data processing. Uses 4 nodes.",
+ "description": "Scheduled automation that orchestrates Twitter, Cron, and Httprequest for data processing. Uses 4 nodes.",
"steps": [
{
"name": "At 17H image jokes",
@@ -33298,12 +33328,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
"Functionitem",
+ "Webhook",
"Telegram",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Functionitem, and Telegram for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Functionitem, Webhook, and Telegram for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webhook",
@@ -33494,12 +33524,12 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Awstextract",
- "Awss3",
"Airtable",
- "Telegram"
+ "Telegram",
+ "Awstextract",
+ "Awss3"
],
- "description": "Webhook-triggered automation that orchestrates Awstextract, Awss3, and Airtable for data processing. Uses 4 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Airtable, Telegram, and Awstextract for data processing. Uses 4 nodes and integrates with 4 services.",
"steps": [
{
"name": "Telegram Trigger",
@@ -33790,13 +33820,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Wait",
- "Awstranscribe",
- "Awss3",
"Googlesheets",
+ "Awss3",
+ "Awstranscribe",
+ "Wait",
"Googledrive"
],
- "description": "Webhook-triggered automation that orchestrates Wait, Awstranscribe, and Awss3 for data processing. Uses 8 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Awss3, and Awstranscribe for data processing. Uses 8 nodes and integrates with 5 services.",
"steps": [
{
"name": "Google Drive Trigger1",
@@ -33993,11 +34023,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Googlesheets",
"Awsrekognition",
- "Httprequest",
- "Googlesheets"
+ "Httprequest"
],
- "description": "Manual workflow that orchestrates Awsrekognition, Httprequest, and Googlesheets for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that orchestrates Googlesheets, Awsrekognition, and Httprequest for data processing. Uses 6 nodes.",
"steps": [
{
"name": "HTTP Request",
@@ -34413,10 +34443,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Twilio",
- "Mautic"
+ "Mautic",
+ "Twilio"
],
- "description": "Webhook-triggered automation that connects Twilio and Mautic to update existing data. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Mautic and Twilio to update existing data. Uses 2 nodes.",
"steps": [
{
"name": "Mautic Trigger",
@@ -34563,11 +34593,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Xml",
"Dropbox",
- "Httprequest",
- "Xml"
+ "Httprequest"
],
- "description": "Manual workflow that orchestrates Dropbox, Httprequest, and Xml for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Xml, Dropbox, and Httprequest for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Get XML Data",
@@ -34714,11 +34744,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Googlesheets",
"Awsrekognition",
- "Httprequest",
- "Googlesheets"
+ "Httprequest"
],
- "description": "Manual workflow that orchestrates Awsrekognition, Httprequest, and Googlesheets for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates Googlesheets, Awsrekognition, and Httprequest for data processing. Uses 4 nodes.",
"steps": [
{
"name": "HTTP Request1",
@@ -35094,15 +35124,15 @@
"triggerType": "Complex",
"integrations": [
"Functionitem",
- "Httprequest",
- "Writebinaryfile",
- "Readbinaryfile",
- "Manual",
"Telegram",
+ "Manual",
+ "Readbinaryfile",
+ "Cron",
+ "Httprequest",
"Movebinarydata",
- "Cron"
+ "Writebinaryfile"
],
- "description": "Complex multi-step automation that orchestrates Functionitem, Httprequest, and Writebinaryfile for data processing. Uses 11 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Functionitem, Telegram, and Manual for data processing. Uses 11 nodes and integrates with 8 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -35467,15 +35497,15 @@
"triggerType": "Complex",
"integrations": [
"Functionitem",
- "Httprequest",
- "Datetime",
- "Webhook",
- "Htmlextract",
- "Itemlists",
"Manual",
- "Respondtowebhook"
+ "Respondtowebhook",
+ "Webhook",
+ "Datetime",
+ "Httprequest",
+ "Itemlists",
+ "Htmlextract"
],
- "description": "Complex multi-step automation that orchestrates Functionitem, Httprequest, and Datetime for data processing. Uses 12 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Functionitem, Manual, and Respondtowebhook for data processing. Uses 12 nodes and integrates with 8 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -35663,11 +35693,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Openweathermap",
"Cron",
- "Spontit"
+ "Spontit",
+ "Openweathermap"
],
- "description": "Scheduled automation that orchestrates Openweathermap, Cron, and Spontit to update existing data. Uses 3 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Spontit, and Openweathermap to update existing data. Uses 3 nodes.",
"steps": [
{
"name": "Cron",
@@ -36155,12 +36185,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Telegram",
"Airtable",
"Cron",
+ "Telegram",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Telegram, Airtable, and Cron for data processing. Uses 15 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Airtable, Cron, and Telegram for data processing. Uses 15 nodes and integrates with 4 services.",
"steps": [
{
"name": "Airtable2",
@@ -36306,12 +36336,12 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Spreadsheetfile",
- "Webhook",
"Itemlists",
+ "Webhook",
+ "Spreadsheetfile",
"Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Spreadsheetfile, Webhook, and Itemlists for data processing. Uses 4 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Itemlists, Webhook, and Spreadsheetfile for data processing. Uses 4 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webhook",
@@ -36870,14 +36900,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
"Crypto",
"Respondtowebhook",
- "Executeworkflow",
- "Airtable"
+ "Webhook",
+ "Httprequest",
+ "Airtable",
+ "Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Crypto for data processing. Uses 16 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Crypto, Respondtowebhook, and Webhook for data processing. Uses 16 nodes and integrates with 6 services.",
"steps": [
{
"name": "Receive Slash Command",
@@ -36969,11 +36999,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
"Lingvanex",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Lingvanex, and Httprequest for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Lingvanex, Httprequest, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -37163,11 +37193,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Hubspot",
"Slack",
+ "Hubspot",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Hubspot, Slack, and Httprequest for data processing. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Hubspot, and Httprequest for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Check Result",
@@ -37581,14 +37611,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Datetime",
"Code",
- "Cron",
- "Noop",
"Googlecalendar",
+ "Cron",
+ "Datetime",
+ "Noop",
"Emailsend"
],
- "description": "Complex multi-step automation that orchestrates Datetime, Code, and Cron for data processing. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlecalendar, and Cron for data processing. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "1st of Every month at 8am",
@@ -37765,11 +37795,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Mattermost",
+ "Profitwell",
"Cron",
- "Profitwell"
+ "Mattermost"
],
- "description": "Scheduled automation that orchestrates Mattermost, Cron, and Profitwell for data processing. Uses 3 nodes.",
+ "description": "Scheduled automation that orchestrates Profitwell, Cron, and Mattermost for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Cron",
@@ -37972,13 +38002,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Httprequest",
- "Wait",
"Telegram",
"Cron",
- "Noop"
+ "Httprequest",
+ "Noop",
+ "Wait"
],
- "description": "Scheduled automation that orchestrates Httprequest, Wait, and Telegram for data processing. Uses 7 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Telegram, Cron, and Httprequest for data processing. Uses 7 nodes and integrates with 5 services.",
"steps": [
{
"name": "Cron",
@@ -38750,14 +38780,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Openai",
- "Httprequest",
+ "Code",
"Manual",
+ "Httprequest",
+ "Html",
"Readbinaryfiles",
- "Code"
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Html, Openai, and Httprequest for data processing. Uses 27 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 27 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -39068,12 +39098,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Googlesheets",
"Webhook",
- "Noop",
"Httprequest",
- "Googlesheets"
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Noop, and Httprequest for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Webhook, and Httprequest for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webhook",
@@ -39397,12 +39427,12 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Noop",
"Strava",
"Cron",
- "Emailsend"
+ "Emailsend",
+ "Noop"
],
- "description": "Scheduled automation that orchestrates Noop, Strava, and Cron for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Strava, Cron, and Emailsend for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "Check Daily at 11:AM",
@@ -40185,18 +40215,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Functionitem",
- "Httprequest",
- "Writebinaryfile",
- "Executecommand",
- "Readbinaryfile",
- "Htmlextract",
- "Manual",
"Mongodb",
- "Uproc"
+ "Uproc",
+ "Functionitem",
+ "Manual",
+ "Readbinaryfile",
+ "Executecommand",
+ "Httprequest",
+ "Splitinbatches",
+ "Writebinaryfile",
+ "Htmlextract"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Functionitem, and Httprequest for data processing. Uses 23 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Mongodb, Uproc, and Functionitem for data processing. Uses 23 nodes and integrates with 10 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -40549,11 +40579,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Coingecko",
"Airtable",
- "Cron"
+ "Cron",
+ "Coingecko"
],
- "description": "Scheduled automation that orchestrates Coingecko, Airtable, and Cron to update existing data. Uses 8 nodes.",
+ "description": "Scheduled automation that orchestrates Airtable, Cron, and Coingecko to update existing data. Uses 8 nodes.",
"steps": [
{
"name": "Run Top of Hour",
@@ -40725,10 +40755,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Mattermost",
- "Airtable"
+ "Airtable",
+ "Mattermost"
],
- "description": "Webhook-triggered automation that connects Mattermost and Airtable for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Airtable and Mattermost for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Airtable Trigger",
@@ -40888,11 +40918,11 @@
"triggerType": "Manual",
"integrations": [
"Functionitem",
- "Manual",
"Airtable",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Functionitem, Manual, and Airtable for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Functionitem, Airtable, and Httprequest for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -41708,18 +41738,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Slack",
- "N8N",
- "Httprequest",
- "Schedule",
- "Manual",
- "Executeworkflow",
"Code",
+ "Manual",
"Github",
- "Noop"
+ "Httprequest",
+ "Noop",
+ "N8N",
+ "Executeworkflow",
+ "Slack",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Slack, and N8N for data processing. Uses 26 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Github for data processing. Uses 26 nodes and integrates with 10 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -42214,13 +42244,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Strapi",
+ "Interval",
"Webhook",
"Twitter",
- "Interval",
+ "Strapi",
"Googlecloudnaturallanguage"
],
- "description": "Complex multi-step automation that orchestrates Strapi, Webhook, and Twitter for data processing. Uses 14 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Interval, Webhook, and Twitter for data processing. Uses 14 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook",
@@ -42382,10 +42412,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Onfleet",
- "Shopify"
+ "Shopify",
+ "Onfleet"
],
- "description": "Webhook-triggered automation that connects Onfleet and Shopify for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Shopify and Onfleet for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Onfleet Trigger",
@@ -42848,12 +42878,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Telegram",
+ "Cron",
"Splitinbatches",
- "Rssfeedread",
- "Cron"
+ "Telegram",
+ "Rssfeedread"
],
- "description": "Complex multi-step automation that orchestrates Telegram, Splitinbatches, and Rssfeedread for data processing. Uses 11 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Cron, Splitinbatches, and Telegram for data processing. Uses 11 nodes and integrates with 4 services.",
"steps": [
{
"name": "Cron",
@@ -43144,10 +43174,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Executecommand",
- "Functionitem"
+ "Functionitem",
+ "Executecommand"
],
- "description": "Manual workflow that connects Executecommand and Functionitem for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that connects Functionitem and Executecommand for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Execute Command",
@@ -43250,10 +43280,10 @@
"triggerType": "Manual",
"integrations": [
"Slack",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Slack, Manual, and Httprequest for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Slack, Httprequest, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -43317,10 +43347,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Openthesaurus"
+ "Openthesaurus",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Openthesaurus for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Openthesaurus and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -43907,11 +43937,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Nocodb",
"Telegram",
- "Httprequest"
+ "Httprequest",
+ "Nocodb"
],
- "description": "Webhook-triggered automation that orchestrates Nocodb, Telegram, and Httprequest for data processing. Uses 18 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Telegram, Httprequest, and Nocodb for data processing. Uses 18 nodes.",
"steps": [
{
"name": "chatID",
@@ -44224,10 +44254,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Pagerduty"
+ "Pagerduty",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Pagerduty to create new records. Uses 4 nodes.",
+ "description": "Manual workflow that connects Pagerduty and Manual to create new records. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -44508,11 +44538,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Youtube",
"Interval",
- "Telegram"
+ "Telegram",
+ "Youtube"
],
- "description": "Manual workflow that orchestrates Youtube, Interval, and Telegram for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Interval, Telegram, and Youtube for data processing. Uses 5 nodes.",
"steps": [
{
"name": "CheckTime",
@@ -44716,10 +44746,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -44912,11 +44942,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
+ "Cron",
"Executecommand",
- "Manual",
- "Cron"
+ "Manual"
],
- "description": "Scheduled automation that orchestrates Executecommand, Manual, and Cron for data backup operations. Uses 7 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Executecommand, and Manual for data backup operations. Uses 7 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -45533,14 +45563,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Writebinaryfile",
+ "Telegram",
"Executecommand",
"Readbinaryfile",
+ "Httprequest",
"Spreadsheetfile",
- "Telegram"
+ "Writebinaryfile"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Writebinaryfile, and Executecommand for data processing. Uses 21 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Executecommand, and Readbinaryfile for data processing. Uses 21 nodes and integrates with 6 services.",
"steps": [
{
"name": "Switch",
@@ -45636,10 +45666,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Cortex"
+ "Cortex",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Cortex for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that connects Cortex and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -45728,10 +45758,10 @@
"triggerType": "Manual",
"integrations": [
"Writebinaryfile",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Writebinaryfile, Manual, and Httprequest for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Writebinaryfile, Httprequest, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -46049,10 +46079,10 @@
"triggerType": "Manual",
"integrations": [
"Compression",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Compression, Manual, and Httprequest for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that orchestrates Compression, Httprequest, and Manual for data processing. Uses 6 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -46244,10 +46274,10 @@
"triggerType": "Manual",
"integrations": [
"Slack",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Slack, Manual, and Httprequest to create new records. Uses 6 nodes.",
+ "description": "Manual workflow that orchestrates Slack, Httprequest, and Manual to create new records. Uses 6 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -46379,10 +46409,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Iterable"
+ "Iterable",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Iterable to create new records. Uses 4 nodes.",
+ "description": "Manual workflow that connects Iterable and Manual to create new records. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -46507,11 +46537,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Noop",
+ "Kafka",
"Vonage",
- "Kafka"
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Noop, Vonage, and Kafka for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Kafka, Vonage, and Noop for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Kafka Trigger",
@@ -46724,10 +46754,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Amqp",
- "Interval"
+ "Interval",
+ "Amqp"
],
- "description": "Manual workflow that connects Amqp and Interval for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that connects Interval and Amqp for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Interval",
@@ -47009,12 +47039,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Cratedb",
"Amqp",
- "Noop",
"Pagerduty",
- "Cratedb"
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Amqp, Noop, and Pagerduty for data processing. Uses 9 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Cratedb, Amqp, and Pagerduty for data processing. Uses 9 nodes and integrates with 4 services.",
"steps": [
{
"name": "Data from factory sensors",
@@ -47320,14 +47350,14 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Httprequest",
- "Markdown",
- "Itemlists",
"Manual",
+ "Httprequest",
"Movebinarydata",
- "Emailsend"
+ "Emailsend",
+ "Itemlists",
+ "Markdown"
],
- "description": "Manual workflow that orchestrates Httprequest, Markdown, and Itemlists for data processing. Uses 10 nodes and integrates with 6 services.",
+ "description": "Manual workflow that orchestrates Manual, Httprequest, and Movebinarydata for data processing. Uses 10 nodes and integrates with 6 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -47633,14 +47663,14 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Httprequest",
- "Markdown",
- "Itemlists",
"Manual",
+ "Httprequest",
"Movebinarydata",
- "Emailsend"
+ "Emailsend",
+ "Itemlists",
+ "Markdown"
],
- "description": "Manual workflow that orchestrates Httprequest, Markdown, and Itemlists for data processing. Uses 10 nodes and integrates with 6 services.",
+ "description": "Manual workflow that orchestrates Manual, Httprequest, and Movebinarydata for data processing. Uses 10 nodes and integrates with 6 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -47909,10 +47939,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Typeform",
- "Clickup"
+ "Clickup",
+ "Typeform"
],
- "description": "Webhook-triggered automation that connects Typeform and Clickup for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that connects Clickup and Typeform for data processing. Uses 7 nodes.",
"steps": [
{
"name": "Typeform Trigger",
@@ -48219,10 +48249,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Ghost"
+ "Ghost",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Ghost to create new records. Uses 4 nodes.",
+ "description": "Manual workflow that connects Ghost and Manual to create new records. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -48421,10 +48451,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Airtable"
+ "Airtable",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Airtable to update existing data. Uses 6 nodes.",
+ "description": "Manual workflow that connects Airtable and Manual to update existing data. Uses 6 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -48758,13 +48788,13 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Writebinaryfile",
+ "Manual",
"Readbinaryfile",
- "Spreadsheetfile",
"Movebinarydata",
- "Manual"
+ "Spreadsheetfile",
+ "Writebinaryfile"
],
- "description": "Manual workflow that orchestrates Writebinaryfile, Readbinaryfile, and Spreadsheetfile for data processing. Uses 5 nodes and integrates with 5 services.",
+ "description": "Manual workflow that orchestrates Manual, Readbinaryfile, and Movebinarydata for data processing. Uses 5 nodes and integrates with 5 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -48880,11 +48910,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Spreadsheetfile",
"Movebinarydata",
- "Gmail"
+ "Gmail",
+ "Spreadsheetfile"
],
- "description": "Manual workflow that orchestrates Spreadsheetfile, Movebinarydata, and Gmail for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates Movebinarydata, Gmail, and Spreadsheetfile for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Gmail",
@@ -48986,11 +49016,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Movebinarydata",
"Readbinaryfile",
- "Googlesheets"
+ "Googlesheets",
+ "Movebinarydata"
],
- "description": "Manual workflow that orchestrates Movebinarydata, Readbinaryfile, and Googlesheets for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Readbinaryfile, Googlesheets, and Movebinarydata for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Google Sheets1",
@@ -49153,11 +49183,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Googlesheets",
"Spreadsheetfile",
- "Httprequest",
- "Googlesheets"
+ "Httprequest"
],
- "description": "Manual workflow that orchestrates Spreadsheetfile, Httprequest, and Googlesheets for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that orchestrates Googlesheets, Spreadsheetfile, and Httprequest for data processing. Uses 6 nodes.",
"steps": [
{
"name": "HTTP Request",
@@ -49518,14 +49548,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Writebinaryfile",
- "Spreadsheetfile",
- "Movebinarydata",
"Googlesheets",
- "Gmail"
+ "Httprequest",
+ "Movebinarydata",
+ "Gmail",
+ "Spreadsheetfile",
+ "Writebinaryfile"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Writebinaryfile, and Spreadsheetfile for data processing. Uses 14 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Httprequest, and Movebinarydata for data processing. Uses 14 nodes and integrates with 6 services.",
"steps": [
{
"name": "Google Sheets2",
@@ -50963,11 +50993,11 @@
"triggerType": "Complex",
"integrations": [
"Itemlists",
- "Manual",
"Httprequest",
- "Htmlextract"
+ "Htmlextract",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Itemlists, Manual, and Httprequest for data processing. Uses 14 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Itemlists, Httprequest, and Htmlextract for data processing. Uses 14 nodes and integrates with 4 services.",
"steps": [
{
"name": "Item Lists - Create Items from Body",
@@ -51285,14 +51315,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "N8Ntrainingcustomermessenger",
- "Wait",
- "N8Ntrainingcustomerdatastore",
"Manual",
- "Noop"
+ "Noop",
+ "Wait",
+ "N8Ntrainingcustomermessenger",
+ "N8Ntrainingcustomerdatastore",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, N8Ntrainingcustomermessenger, and Wait for data processing. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Noop, and Wait for data processing. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -51398,11 +51428,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Nasa",
+ "Cron",
"Telegram",
- "Cron"
+ "Nasa"
],
- "description": "Scheduled automation that orchestrates Nasa, Telegram, and Cron for data processing. Uses 3 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Telegram, and Nasa for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Cron",
@@ -51724,11 +51754,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Googlesheets",
"N8Ntrainingcustomerdatastore",
- "Manual",
- "Googlesheets"
+ "Manual"
],
- "description": "Manual workflow that orchestrates N8Ntrainingcustomerdatastore, Manual, and Googlesheets for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that orchestrates Googlesheets, N8Ntrainingcustomerdatastore, and Manual for data processing. Uses 6 nodes.",
"steps": [
{
"name": "Set - Prepare fields",
@@ -52165,12 +52195,12 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Interval",
"Noop",
- "Manual",
- "Googlesheets"
+ "Googlesheets",
+ "Interval",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Interval, Noop, and Manual for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Noop, Googlesheets, and Interval for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -52271,11 +52301,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Spreadsheetfile",
+ "Googlesheets",
"Webhook",
- "Googlesheets"
+ "Spreadsheetfile"
],
- "description": "Webhook-triggered automation that orchestrates Spreadsheetfile, Webhook, and Googlesheets for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Webhook, and Spreadsheetfile for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Webhook",
@@ -52407,11 +52437,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
+ "Googlesheets",
"Webhook",
- "Respondtowebhook",
- "Googlesheets"
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and Googlesheets for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Webhook, and Respondtowebhook for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Respond to Webhook",
@@ -52702,10 +52732,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Typeform",
- "Pipedrive"
+ "Pipedrive",
+ "Typeform"
],
- "description": "Webhook-triggered automation that orchestrates Code, Typeform, and Pipedrive for data processing. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Pipedrive, and Typeform for data processing. Uses 8 nodes.",
"steps": [
{
"name": "On form completion",
@@ -52875,10 +52905,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Gmail"
+ "Gmail",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Gmail for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that connects Gmail and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -53452,11 +53482,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Airtable",
"Brandfetch",
- "Manual",
- "Airtable"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Brandfetch, Manual, and Airtable for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Airtable, Brandfetch, and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -54078,11 +54108,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Stripe",
"Pipedrive",
- "Httprequest"
+ "Httprequest",
+ "Stripe"
],
- "description": "Webhook-triggered automation that orchestrates Stripe, Pipedrive, and Httprequest for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Pipedrive, Httprequest, and Stripe for data processing. Uses 7 nodes.",
"steps": [
{
"name": "On deal updated",
@@ -54475,14 +54505,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Stripe",
"Functionitem",
- "Httprequest",
"Pipedrive",
- "Itemlists",
- "Cron"
+ "Cron",
+ "Httprequest",
+ "Stripe",
+ "Itemlists"
],
- "description": "Complex multi-step automation that orchestrates Stripe, Functionitem, and Httprequest for data processing. Uses 11 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Functionitem, Pipedrive, and Cron for data processing. Uses 11 nodes and integrates with 6 services.",
"steps": [
{
"name": "Every day at 8 am",
@@ -55373,10 +55403,10 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Openai",
- "Telegram"
+ "Telegram",
+ "Openai"
],
- "description": "Webhook-triggered automation that connects Openai and Telegram for data processing. Uses 16 nodes.",
+ "description": "Webhook-triggered automation that connects Telegram and Openai for data processing. Uses 16 nodes.",
"steps": [
{
"name": "Telegram Trigger",
@@ -56204,14 +56234,14 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Httprequest",
- "Htmlextract",
"Manual",
"Cron",
"Sendgrid",
- "Baserow"
+ "Httprequest",
+ "Baserow",
+ "Htmlextract"
],
- "description": "Scheduled automation that orchestrates Httprequest, Htmlextract, and Manual for data processing. Uses 9 nodes and integrates with 6 services.",
+ "description": "Scheduled automation that orchestrates Manual, Cron, and Sendgrid for data processing. Uses 9 nodes and integrates with 6 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -56688,11 +56718,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Spreadsheetfile",
"Googledrive",
+ "Spreadsheetfile",
"Pipedrive"
],
- "description": "Webhook-triggered automation that orchestrates Spreadsheetfile, Googledrive, and Pipedrive for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googledrive, Spreadsheetfile, and Pipedrive for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Google Drive Trigger",
@@ -57055,11 +57085,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Github",
"Pipedrive",
- "Httprequest",
- "Github"
+ "Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Pipedrive, Httprequest, and Github for data processing. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Github, Pipedrive, and Httprequest for data processing. Uses 8 nodes.",
"steps": [
{
"name": "On fork",
@@ -57307,12 +57337,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Noop",
+ "Github",
"Pipedrive",
"Httprequest",
- "Github"
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Noop, Pipedrive, and Httprequest for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Github, Pipedrive, and Httprequest for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "ON Pull Request",
@@ -57469,10 +57499,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Mattermost"
+ "Mattermost",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Mattermost to create new records. Uses 4 nodes.",
+ "description": "Manual workflow that connects Mattermost and Manual to create new records. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -57706,12 +57736,12 @@
"triggerType": "Manual",
"integrations": [
"Functionitem",
- "N8Ntrainingcustomerdatastore",
- "Itemlists",
"Manual",
- "Emailsend"
+ "Emailsend",
+ "N8Ntrainingcustomerdatastore",
+ "Itemlists"
],
- "description": "Manual workflow that orchestrates Functionitem, N8Ntrainingcustomerdatastore, and Itemlists for data processing. Uses 8 nodes and integrates with 5 services.",
+ "description": "Manual workflow that orchestrates Functionitem, Manual, and Emailsend for data processing. Uses 8 nodes and integrates with 5 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -57855,11 +57885,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Movebinarydata",
"Readbinaryfile",
- "Googlesheets"
+ "Googlesheets",
+ "Movebinarydata"
],
- "description": "Manual workflow that orchestrates Movebinarydata, Readbinaryfile, and Googlesheets for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Readbinaryfile, Googlesheets, and Movebinarydata for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Google Sheets1",
@@ -58265,13 +58295,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Renamekeys",
- "Itemlists",
"Manual",
- "Salesforce",
- "Googlesheets"
+ "Itemlists",
+ "Salesforce"
],
- "description": "Complex multi-step automation that orchestrates Renamekeys, Itemlists, and Manual for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Renamekeys, and Manual for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -58748,11 +58778,11 @@
"integrations": [
"Renamekeys",
"Microsoftexcel",
- "Itemlists",
"Manual",
+ "Itemlists",
"Salesforce"
],
- "description": "Complex multi-step automation that orchestrates Renamekeys, Microsoftexcel, and Itemlists for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Renamekeys, Microsoftexcel, and Manual for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -59258,14 +59288,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
"Renamekeys",
+ "Manual",
+ "Httprequest",
"Spreadsheetfile",
"Itemlists",
- "Manual",
"Salesforce"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Renamekeys, and Spreadsheetfile for data processing. Uses 14 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Renamekeys, Manual, and Httprequest for data processing. Uses 14 nodes and integrates with 6 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -59669,14 +59699,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
- "Htmlextract",
- "Itemlists",
"Manual",
- "Respondtowebhook"
+ "Respondtowebhook",
+ "Webhook",
+ "Httprequest",
+ "Itemlists",
+ "Htmlextract"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Htmlextract for data processing. Uses 11 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Respondtowebhook, and Webhook for data processing. Uses 11 nodes and integrates with 6 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -59930,10 +59960,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Googlefirebasecloudfirestore"
+ "Googlefirebasecloudfirestore",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Googlefirebasecloudfirestore to create new records. Uses 6 nodes.",
+ "description": "Manual workflow that connects Googlefirebasecloudfirestore and Manual to create new records. Uses 6 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -60097,11 +60127,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Nextcloud",
"Spreadsheetfile",
- "Typeform",
- "Nextcloud"
+ "Typeform"
],
- "description": "Webhook-triggered automation that orchestrates Spreadsheetfile, Typeform, and Nextcloud for data processing. Uses 6 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Nextcloud, Spreadsheetfile, and Typeform for data processing. Uses 6 nodes.",
"steps": [
{
"name": "Typeform Trigger",
@@ -61276,13 +61306,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Postgres",
- "Schedule",
"Code",
- "Noop"
+ "Postgres",
+ "Httprequest",
+ "Noop",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Postgres, and Schedule for data processing. Uses 46 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Postgres, and Httprequest for data processing. Uses 46 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -62110,11 +62140,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Noop",
"Hubspot",
- "Shopify"
+ "Shopify",
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Noop, Hubspot, and Shopify for data processing. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Hubspot, Shopify, and Noop for data processing. Uses 8 nodes.",
"steps": [
{
"name": "On order updated",
@@ -62736,13 +62766,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Zendesk",
"Functionitem",
- "Httprequest",
+ "Zendesk",
+ "Cron",
"Pipedrive",
- "Cron"
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Zendesk, Functionitem, and Httprequest for data processing. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Functionitem, Zendesk, and Cron for data processing. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "Every 5 minutes",
@@ -63464,16 +63494,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Zendesk",
"Functionitem",
- "Splitinbatches",
- "Httprequest",
+ "Zendesk",
"Pipedrive",
- "Itemlists",
"Cron",
- "Noop"
+ "Httprequest",
+ "Noop",
+ "Itemlists",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Zendesk, Functionitem, and Splitinbatches for data processing. Uses 21 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Functionitem, Zendesk, and Pipedrive for data processing. Uses 21 nodes and integrates with 8 services.",
"steps": [
{
"name": "Every day at 09:00",
@@ -63900,11 +63930,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Noop",
"Zendesk",
- "Shopify"
+ "Shopify",
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Noop, Zendesk, and Shopify for data processing. Uses 9 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Zendesk, Shopify, and Noop for data processing. Uses 9 nodes.",
"steps": [
{
"name": "On customer updated",
@@ -64189,11 +64219,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Noop",
"Zendesk",
- "Shopify"
+ "Shopify",
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Noop, Zendesk, and Shopify for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Zendesk, Shopify, and Noop for data processing. Uses 7 nodes.",
"steps": [
{
"name": "On order updated",
@@ -64508,13 +64538,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Openai",
+ "Manual",
"Webhook",
"Discord",
- "Manual",
- "Noop"
+ "Noop",
+ "Openai"
],
- "description": "Webhook-triggered automation that orchestrates Openai, Webhook, and Discord for data processing. Uses 9 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Manual, Webhook, and Discord for data processing. Uses 9 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -64849,13 +64879,13 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Httprequest",
- "Itemlists",
- "Manual",
"Googlesheets",
- "Xml"
+ "Manual",
+ "Httprequest",
+ "Xml",
+ "Itemlists"
],
- "description": "Manual workflow that orchestrates Httprequest, Itemlists, and Manual for data processing. Uses 10 nodes and integrates with 5 services.",
+ "description": "Manual workflow that orchestrates Googlesheets, Manual, and Httprequest for data processing. Uses 10 nodes and integrates with 5 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -65300,11 +65330,11 @@
"triggerType": "Webhook",
"integrations": [
"Zendesk",
- "Code",
"Webhook",
- "Slack"
+ "Slack",
+ "Code"
],
- "description": "Webhook-triggered automation that orchestrates Zendesk, Code, and Webhook for data processing. Uses 9 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Zendesk, Webhook, and Slack for data processing. Uses 9 nodes and integrates with 4 services.",
"steps": [
{
"name": "Update ticket",
@@ -65553,10 +65583,10 @@
"triggerType": "Webhook",
"integrations": [
"Zendesk",
- "Asana",
- "Webhook"
+ "Webhook",
+ "Asana"
],
- "description": "Webhook-triggered automation that orchestrates Zendesk, Asana, and Webhook for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Zendesk, Webhook, and Asana for data processing. Uses 7 nodes.",
"steps": [
{
"name": "Update ticket",
@@ -65665,10 +65695,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Mondaycom",
- "Mautic"
+ "Mautic",
+ "Mondaycom"
],
- "description": "Webhook-triggered automation that connects Mondaycom and Mautic for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that connects Mautic and Mondaycom for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On created contact",
@@ -66230,16 +66260,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
"Ftp",
- "Writebinaryfile",
- "Readbinaryfile",
- "Spreadsheetfile",
"Manual",
+ "Readbinaryfile",
+ "Httprequest",
+ "Spreadsheetfile",
"Microsoftonedrive",
- "Googledrive"
+ "Googledrive",
+ "Writebinaryfile"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Ftp, and Writebinaryfile for data processing. Uses 24 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Ftp, Manual, and Readbinaryfile for data processing. Uses 24 nodes and integrates with 8 services.",
"steps": [
{
"name": "Read Binary File",
@@ -66956,10 +66986,10 @@
"triggerType": "Webhook",
"integrations": [
"Jira",
- "Zendesk",
- "Webhook"
+ "Webhook",
+ "Zendesk"
],
- "description": "Webhook-triggered automation that orchestrates Jira, Zendesk, and Webhook for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Jira, Webhook, and Zendesk for data processing. Uses 7 nodes.",
"steps": [
{
"name": "Update ticket",
@@ -67711,13 +67741,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Hubspot",
- "Openai",
"Lemlist",
+ "Hubspot",
+ "Httprequest",
"Slack",
- "Httprequest"
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Hubspot, Openai, and Lemlist for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Lemlist, Hubspot, and Httprequest for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "Lemlist - Lead Replied",
@@ -67911,12 +67941,12 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Spreadsheetfile",
+ "Readbinaryfile",
"Mysql",
- "Manual",
- "Readbinaryfile"
+ "Spreadsheetfile",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Spreadsheetfile, Mysql, and Manual for data processing. Uses 4 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Readbinaryfile, Mysql, and Spreadsheetfile for data processing. Uses 4 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -68241,11 +68271,11 @@
"triggerType": "Scheduled",
"integrations": [
"Hubspot",
- "Zendesk",
"Functionitem",
- "Cron"
+ "Cron",
+ "Zendesk"
],
- "description": "Scheduled automation that orchestrates Hubspot, Zendesk, and Functionitem for data processing. Uses 9 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Hubspot, Functionitem, and Cron for data processing. Uses 9 nodes and integrates with 4 services.",
"steps": [
{
"name": "Every 5 minutes",
@@ -68755,12 +68785,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Functionitem",
"Zendesk",
- "Hubspot",
- "Cron"
+ "Functionitem",
+ "Cron",
+ "Hubspot"
],
- "description": "Complex multi-step automation that orchestrates Functionitem, Zendesk, and Hubspot for data processing. Uses 13 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Zendesk, Functionitem, and Cron for data processing. Uses 13 nodes and integrates with 4 services.",
"steps": [
{
"name": "Every 5 minutes",
@@ -68985,11 +69015,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Rabbitmq",
"Cron",
+ "Rabbitmq",
"Httprequest"
],
- "description": "Scheduled automation that orchestrates Rabbitmq, Cron, and Httprequest to update existing data. Uses 4 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Rabbitmq, and Httprequest to update existing data. Uses 4 nodes.",
"steps": [
{
"name": "Cron",
@@ -69675,15 +69705,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Stripe",
+ "Code",
"Hubspot",
"Httprequest",
- "Schedule",
+ "Stripe",
+ "Noop",
"Itemlists",
- "Code",
- "Noop"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Stripe, Hubspot, and Httprequest for data processing. Uses 24 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Hubspot, and Httprequest for data processing. Uses 24 nodes and integrates with 7 services.",
"steps": [
{
"name": "On schedule",
@@ -69896,10 +69926,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Homeassistant",
- "Github"
+ "Github",
+ "Homeassistant"
],
- "description": "Webhook-triggered automation that connects Homeassistant and Github for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that connects Github and Homeassistant for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On any update in repository",
@@ -70302,16 +70332,16 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Openai",
+ "Code",
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Wait",
+ "Splitinbatches",
"Htmlextract",
- "Manual",
- "Googlesheets",
- "Code"
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Openai, and Httprequest for data processing. Uses 11 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 11 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -70496,10 +70526,10 @@
"triggerType": "Webhook",
"integrations": [
"Rabbitmq",
- "Noop",
- "Vonage"
+ "Vonage",
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Rabbitmq, Noop, and Vonage for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Rabbitmq, Vonage, and Noop for data processing. Uses 4 nodes.",
"steps": [
{
"name": "RabbitMQ",
@@ -70648,11 +70678,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Spreadsheetfile",
"Mysql",
+ "Spreadsheetfile",
"Manual"
],
- "description": "Manual workflow that orchestrates Spreadsheetfile, Mysql, and Manual for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Mysql, Spreadsheetfile, and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -71553,13 +71583,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Dropcontact",
"Hubspot",
- "Lemlist",
+ "Webhook",
+ "Dropcontact",
"Slack",
- "Webhook"
+ "Lemlist"
],
- "description": "Complex multi-step automation that orchestrates Dropcontact, Hubspot, and Lemlist for data processing. Uses 18 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Hubspot, Webhook, and Dropcontact for data processing. Uses 18 nodes and integrates with 5 services.",
"steps": [
{
"name": "Lonescale - New Job Intent",
@@ -71891,13 +71921,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Html",
- "N8N",
- "Webhook",
+ "Code",
"Respondtowebhook",
- "Code"
+ "Webhook",
+ "Html",
+ "N8N"
],
- "description": "Webhook-triggered automation that orchestrates Html, N8N, and Webhook for data processing. Uses 9 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Respondtowebhook, and Webhook for data processing. Uses 9 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook",
@@ -72388,11 +72418,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Openai",
"Reddit",
- "Manual",
- "Openai"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Reddit, Manual, and Openai for data processing. Uses 15 nodes.",
+ "description": "Manual workflow that orchestrates Openai, Reddit, and Manual for data processing. Uses 15 nodes.",
"steps": [
{
"name": "OpenAI Summary",
@@ -72912,14 +72942,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Readpdf",
- "Openai",
"Code",
- "Googledrive",
+ "Noop",
"Gmail",
- "Noop"
+ "Googledrive",
+ "Readpdf",
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Readpdf, Openai, and Code for data processing. Uses 18 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Noop, and Gmail for data processing. Uses 18 nodes and integrates with 6 services.",
"steps": [
{
"name": "On email received",
@@ -74367,17 +74397,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Openai",
- "Webhook",
"Crypto",
- "Respondtowebhook",
- "Googlesheets",
"Code",
+ "Googlesheets",
+ "Respondtowebhook",
+ "Webhook",
+ "Html",
+ "Noop",
"Gmail",
- "Noop"
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Html, Openai, and Webhook for data processing. Uses 49 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Crypto, Code, and Googlesheets for data processing. Uses 49 nodes and integrates with 9 services.",
"steps": [
{
"name": "On email received",
@@ -75157,10 +75187,10 @@
"triggerType": "Manual",
"integrations": [
"Microsoftsql",
- "Manual",
- "Spreadsheetfile"
+ "Spreadsheetfile",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Microsoftsql, Manual, and Spreadsheetfile for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Microsoftsql, Spreadsheetfile, and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -75329,10 +75359,10 @@
"triggerType": "Manual",
"integrations": [
"Code",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and Httprequest for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that orchestrates Code, Httprequest, and Manual for data processing. Uses 6 nodes.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -75451,10 +75481,10 @@
"triggerType": "Manual",
"integrations": [
"Uproc",
- "Manual",
- "Telegram"
+ "Telegram",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Uproc, Manual, and Telegram to create new records. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Uproc, Telegram, and Manual to create new records. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -75566,10 +75596,10 @@
"triggerType": "Webhook",
"integrations": [
"Webhook",
- "Respondtowebhook",
- "Httprequest"
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and Httprequest for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Httprequest, and Respondtowebhook for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On GET request",
@@ -75890,13 +75920,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Postgres",
- "Manual",
- "Filter",
+ "Code",
"Googlesheets",
- "Code"
+ "Manual",
+ "Postgres",
+ "Filter"
],
- "description": "Webhook-triggered automation that orchestrates Postgres, Manual, and Filter for data processing. Uses 9 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 9 nodes and integrates with 5 services.",
"steps": [
{
"name": "Filter",
@@ -76225,14 +76255,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Slack",
"Code",
- "Schedule",
+ "Notion",
"Itemlists",
"Filter",
- "Notion"
+ "Slack",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Slack, Code, and Schedule for data processing. Uses 11 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Notion, and Itemlists for data processing. Uses 11 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -76530,13 +76560,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Linear",
- "Slack",
+ "Code",
"Manual",
+ "Linear",
"Filter",
- "Code"
+ "Slack"
],
- "description": "Webhook-triggered automation that orchestrates Linear, Slack, and Manual for data processing. Uses 10 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Manual, and Linear for data processing. Uses 10 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -76810,12 +76840,12 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Googlesheets",
"Spreadsheetfile",
- "Manual",
"Httprequest",
- "Googlesheets"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Spreadsheetfile, Manual, and Httprequest for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Googlesheets, Spreadsheetfile, and Httprequest for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -77334,14 +77364,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Datetime",
- "Schedule",
"Notion",
+ "Datetime",
+ "Httprequest",
+ "Noop",
"Gmail",
- "Noop"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Datetime, and Schedule for data processing. Uses 14 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Notion, Datetime, and Httprequest for data processing. Uses 14 nodes and integrates with 6 services.",
"steps": [
{
"name": "On schedule",
@@ -77547,10 +77577,10 @@
"triggerType": "Manual",
"integrations": [
"Microsoftoutlook",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Microsoftoutlook, Manual, and Httprequest to create new records. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Microsoftoutlook, Httprequest, and Manual to create new records. Uses 5 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -77856,10 +77886,10 @@
"triggerType": "Scheduled",
"integrations": [
"Googlecalendar",
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Googlecalendar, Httprequest, and Schedule for data processing. Uses 9 nodes.",
+ "description": "Scheduled automation that orchestrates Googlecalendar, Schedule, and Httprequest for data processing. Uses 9 nodes.",
"steps": [
{
"name": "On schedule",
@@ -78035,10 +78065,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Discord",
- "Googlesheets"
+ "Googlesheets",
+ "Discord"
],
- "description": "Webhook-triggered automation that orchestrates Code, Discord, and Googlesheets for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Googlesheets, and Discord for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On new or updated row",
@@ -78608,13 +78638,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Httprequest",
+ "Notion",
"Datetime",
- "Schedule",
+ "Httprequest",
"Itemlists",
- "Notion"
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Httprequest, Datetime, and Schedule for data processing. Uses 9 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Notion, Datetime, and Httprequest for data processing. Uses 9 nodes and integrates with 5 services.",
"steps": [
{
"name": "On schedule",
@@ -79066,14 +79096,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Mysql",
- "Writebinaryfile",
- "Itemlists",
"Manual",
"Movebinarydata",
- "Xml"
+ "Xml",
+ "Itemlists",
+ "Mysql",
+ "Writebinaryfile"
],
- "description": "Complex multi-step automation that orchestrates Mysql, Writebinaryfile, and Itemlists for data processing. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Movebinarydata, and Xml for data processing. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -79594,13 +79624,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
"Limit",
+ "Manual",
"Httprequest",
- "Splitout",
- "Manual"
+ "Html",
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Html, Limit, and Httprequest for data processing. Uses 16 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Limit, Manual, and Httprequest for data processing. Uses 16 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -79982,10 +80012,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Googlecalendartool",
- "Gmail"
+ "Gmail",
+ "Googlecalendartool"
],
- "description": "Webhook-triggered automation that connects Googlecalendartool and Gmail for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that connects Gmail and Googlecalendartool for data processing. Uses 10 nodes.",
"steps": [
{
"name": "Gmail Trigger",
@@ -80963,12 +80993,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Gmail",
"Code",
- "Manual",
- "Splitout"
+ "Splitout",
+ "Gmail",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Gmail, Code, and Manual for data processing. Uses 18 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Splitout, and Gmail for data processing. Uses 18 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -82539,11 +82569,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Noop",
+ "Slack",
"Webhook",
- "Slack"
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Noop, Webhook, and Slack for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Webhook, and Noop for data processing. Uses 14 nodes.",
"steps": [
{
"name": "Webhook",
@@ -83824,17 +83854,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Form",
+ "Webhook",
"Slack",
"Httprequest",
"Wait",
- "Webhook",
- "Itemlists",
+ "Gmail",
"Filter",
- "Code",
- "Gmail"
+ "Itemlists"
],
- "description": "Complex multi-step automation that orchestrates Form, Slack, and Httprequest for data processing. Uses 29 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Webhook for data processing. Uses 29 nodes and integrates with 9 services.",
"steps": [
{
"name": "Webhook",
@@ -84500,14 +84530,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
- "Html",
- "Httprequest",
- "Extractfromfile",
"Manual",
- "Emailsend"
+ "Httprequest",
+ "Html",
+ "Extractfromfile",
+ "Emailsend",
+ "Stopanderror"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Html, and Httprequest for data processing. Uses 24 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Httprequest, and Html for data processing. Uses 24 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -85556,16 +85586,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
- "Splitinbatches",
- "Webhook",
- "Nextcloud",
- "Manual",
- "Executeworkflow",
"Code",
- "Noop"
+ "Manual",
+ "Webhook",
+ "Noop",
+ "Nextcloud",
+ "Executeworkflow",
+ "Splitinbatches",
+ "Stopanderror"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Splitinbatches, and Webhook for data processing. Uses 32 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Webhook for data processing. Uses 32 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -86012,11 +86042,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Googlesheets",
"Form",
- "Openai",
- "Googlesheets"
+ "Openai"
],
- "description": "Webhook-triggered automation that orchestrates Form, Openai, and Googlesheets for data processing. Uses 9 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Form, and Openai for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Submit form with customer feedback",
@@ -86410,11 +86440,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Filter",
"Telegram",
- "N8N"
+ "N8N",
+ "Filter"
],
- "description": "Webhook-triggered automation that orchestrates Filter, Telegram, and N8N for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Telegram, N8N, and Filter for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Receive commands from Telegram",
@@ -86634,12 +86664,12 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Spreadsheetfile",
"Snowflake",
- "Manual",
- "Httprequest"
+ "Spreadsheetfile",
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Spreadsheetfile, Snowflake, and Manual for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Snowflake, Spreadsheetfile, and Httprequest for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -86883,12 +86913,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Hunter",
"Form",
- "Noop",
"Sendgrid",
- "Hunter"
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Form, Noop, and Sendgrid for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Hunter, Form, and Sendgrid for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "Submit form",
@@ -87241,12 +87271,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Webhook",
- "Slack",
"Gmail",
- "Googlesheets"
+ "Googlesheets",
+ "Webhook",
+ "Slack"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Slack, and Gmail to update existing data. Uses 11 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Gmail, Googlesheets, and Webhook to update existing data. Uses 11 nodes and integrates with 4 services.",
"steps": [
{
"name": "on new twentycrm event",
@@ -87903,12 +87933,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
"Code",
- "Httprequest",
- "Emailsend"
+ "Form",
+ "Emailsend",
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Form, Code, and Httprequest for data processing. Uses 19 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Emailsend for data processing. Uses 19 nodes and integrates with 4 services.",
"steps": [
{
"name": "On form submission",
@@ -88533,11 +88563,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Manual, Httprequest, and Readwritefile for data processing. Uses 18 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Readwritefile, Httprequest, and Manual for data processing. Uses 18 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -88832,11 +88862,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Httprequest, and Readwritefile for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that orchestrates Readwritefile, Httprequest, and Manual for data processing. Uses 6 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -89998,14 +90028,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Splitout",
- "Manual",
- "Googlesheets",
- "Code"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Splitout to update existing data. Uses 26 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual to update existing data. Uses 26 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -90791,11 +90821,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
"Editimage",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Editimage, and Httprequest for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Editimage, Httprequest, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -90957,10 +90987,10 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Discord",
- "Cron"
+ "Cron",
+ "Discord"
],
- "description": "Scheduled automation that connects Discord and Cron for data processing. Uses 6 nodes.",
+ "description": "Scheduled automation that connects Cron and Discord for data processing. Uses 6 nodes.",
"steps": [
{
"name": "Cron",
@@ -91312,10 +91342,10 @@
"triggerType": "Scheduled",
"integrations": [
"Functionitem",
- "Telegram",
- "Cron"
+ "Cron",
+ "Telegram"
],
- "description": "Scheduled automation that orchestrates Functionitem, Telegram, and Cron for data processing. Uses 3 nodes.",
+ "description": "Scheduled automation that orchestrates Functionitem, Cron, and Telegram for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Morning reminder",
@@ -92031,12 +92061,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Webhook",
- "Noop",
"Httprequest",
- "Googlesheets"
+ "Noop"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Noop, and Httprequest to synchronize data. Uses 22 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Webhook, and Httprequest to synchronize data. Uses 22 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webhook",
@@ -92252,13 +92282,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Datetime",
+ "Googlecalendar",
"Zoom",
"Manual",
"Cron",
- "Googlecalendar"
+ "Datetime"
],
- "description": "Scheduled automation that orchestrates Datetime, Zoom, and Manual for data processing. Uses 6 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Googlecalendar, Zoom, and Manual for data processing. Uses 6 nodes and integrates with 5 services.",
"steps": [
{
"name": "IF Zoom meeting",
@@ -92373,11 +92403,11 @@
"triggerType": "Manual",
"integrations": [
"Interval",
- "Manual",
+ "Googlesheets",
"Mailchimp",
- "Googlesheets"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Interval, Manual, and Mailchimp for data processing. Uses 4 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Interval, Googlesheets, and Mailchimp for data processing. Uses 4 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -92546,12 +92576,12 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Emailreadimap",
"Movebinarydata",
- "Httprequest",
- "Xml"
+ "Emailreadimap",
+ "Xml",
+ "Httprequest"
],
- "description": "Manual workflow that orchestrates Emailreadimap, Movebinarydata, and Httprequest for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Movebinarydata, Emailreadimap, and Xml for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "IMAP Email",
@@ -92726,13 +92756,13 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Splitinbatches",
+ "Manual",
"Readbinaryfile",
"Spreadsheetfile",
- "Manual",
- "Emailsend"
+ "Emailsend",
+ "Splitinbatches"
],
- "description": "Manual workflow that orchestrates Splitinbatches, Readbinaryfile, and Spreadsheetfile for data processing. Uses 6 nodes and integrates with 5 services.",
+ "description": "Manual workflow that orchestrates Manual, Readbinaryfile, and Spreadsheetfile for data processing. Uses 6 nodes and integrates with 5 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -92905,11 +92935,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Airtable",
"Twilio",
- "Manual",
- "Airtable"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Twilio, Manual, and Airtable for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Airtable, Twilio, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -93029,10 +93059,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Typeform",
- "Twilio"
+ "Twilio",
+ "Typeform"
],
- "description": "Webhook-triggered automation that connects Typeform and Twilio for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that connects Twilio and Typeform for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Typeform Trigger",
@@ -93219,11 +93249,11 @@
"triggerType": "Scheduled",
"integrations": [
"Twitter",
+ "Cron",
"Rocketchat",
- "Manual",
- "Cron"
+ "Manual"
],
- "description": "Scheduled automation that orchestrates Twitter, Rocketchat, and Manual for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Twitter, Cron, and Rocketchat for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -93422,10 +93452,10 @@
"triggerType": "Scheduled",
"integrations": [
"Twitter",
- "Mattermost",
- "Cron"
+ "Cron",
+ "Mattermost"
],
- "description": "Scheduled automation that orchestrates Twitter, Mattermost, and Cron for notifications and alerts. Uses 5 nodes.",
+ "description": "Scheduled automation that orchestrates Twitter, Cron, and Mattermost for notifications and alerts. Uses 5 nodes.",
"steps": [
{
"name": "Cron",
@@ -93689,12 +93719,12 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Writebinaryfile",
"Spreadsheetfile",
+ "Writebinaryfile",
"Wordpress",
"Manual"
],
- "description": "Manual workflow that orchestrates Writebinaryfile, Spreadsheetfile, and Wordpress for data processing. Uses 4 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Spreadsheetfile, Writebinaryfile, and Wordpress for data processing. Uses 4 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -93784,11 +93814,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Readbinaryfile",
"Spreadsheetfile",
- "Postgres",
- "Readbinaryfile"
+ "Postgres"
],
- "description": "Manual workflow that orchestrates Spreadsheetfile, Postgres, and Readbinaryfile for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Readbinaryfile, Spreadsheetfile, and Postgres for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Read Binary File",
@@ -94639,12 +94669,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Twilio",
+ "Googlesheets",
"Telegram",
- "Httprequest",
- "Googlesheets"
+ "Twilio",
+ "Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Twilio, Telegram, and Httprequest for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Telegram, and Twilio for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "Get receipts from bot",
@@ -94859,11 +94889,11 @@
"triggerType": "Manual",
"integrations": [
"Code",
- "Manual",
+ "Googlesheets",
"Httprequest",
- "Googlesheets"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and Httprequest for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Code, Googlesheets, and Httprequest for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -95096,11 +95126,11 @@
"triggerType": "Manual",
"integrations": [
"Code",
- "Manual",
+ "Googlesheets",
"Httprequest",
- "Googlesheets"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and Httprequest for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Code, Googlesheets, and Httprequest for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -95333,11 +95363,11 @@
"triggerType": "Manual",
"integrations": [
"Code",
- "Manual",
+ "Googlesheets",
"Httprequest",
- "Googlesheets"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and Httprequest for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Code, Googlesheets, and Httprequest for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -95631,11 +95661,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
"Airtable",
- "Phantombuster"
+ "Phantombuster",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Airtable, and Phantombuster for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates Airtable, Phantombuster, and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -96147,16 +96177,16 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Html",
+ "Code",
+ "Googlesheets",
"Slack",
"Httprequest",
- "Markdown",
- "Schedule",
+ "Html",
"Itemlists",
- "Googlesheets",
- "Code"
+ "Markdown",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Html, Slack, and Httprequest for data processing. Uses 13 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Slack for data processing. Uses 13 nodes and integrates with 8 services.",
"steps": [
{
"name": "Execute workflow every day",
@@ -96675,10 +96705,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Summarize",
- "Executeworkflow"
+ "Executeworkflow",
+ "Summarize"
],
- "description": "Webhook-triggered automation that orchestrates Code, Summarize, and Executeworkflow for data processing. Uses 15 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Executeworkflow, and Summarize for data processing. Uses 15 nodes.",
"steps": [
{
"name": "When chat message received",
@@ -97009,11 +97039,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Hackernews",
"Code",
+ "Hackernews",
"Executeworkflow"
],
- "description": "Webhook-triggered automation that orchestrates Hackernews, Code, and Executeworkflow for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Hackernews, and Executeworkflow for data processing. Uses 12 nodes.",
"steps": [
{
"name": "When chat message received",
@@ -97383,12 +97413,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Webhook",
"Code",
- "Httprequest",
- "Graphql"
+ "Webhook",
+ "Graphql",
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Code, and Httprequest for data processing. Uses 15 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Graphql for data processing. Uses 15 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webhook",
@@ -97667,10 +97697,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 7 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 7 nodes.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -98041,11 +98071,11 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Respondtowebhook",
"Webhook",
- "Httprequest"
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Code, Respondtowebhook, and Webhook for data processing. Uses 10 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Webhook, and Httprequest for data processing. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "Receive form submission from Webflow",
@@ -98232,12 +98262,12 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Mysql",
"Code",
+ "Mysql",
"Webhook",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Mysql, Code, and Webhook for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Mysql, and Webhook for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "ReceiveTfsPullRequestCreatedMessage",
@@ -98434,10 +98464,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Airtable"
+ "Airtable",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Airtable for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that connects Airtable and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -98932,11 +98962,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Openai",
"Pipedrive",
- "Gmail"
+ "Gmail",
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Code, Openai, and Pipedrive for data processing. Uses 11 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Pipedrive, and Gmail for data processing. Uses 11 nodes and integrates with 4 services.",
"steps": [
{
"name": "Email box 1",
@@ -99272,13 +99302,13 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Splitinbatches",
- "Manual",
"Code",
+ "Manual",
+ "Noop",
"Googledrive",
- "Noop"
+ "Splitinbatches"
],
- "description": "Manual workflow that orchestrates Splitinbatches, Manual, and Code for data processing. Uses 9 nodes and integrates with 5 services.",
+ "description": "Manual workflow that orchestrates Code, Manual, and Noop for data processing. Uses 9 nodes and integrates with 5 services.",
"steps": [
{
"name": "Set Folder ID",
@@ -99487,13 +99517,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Schedule",
+ "Code",
"Telegram",
- "Code"
+ "Httprequest",
+ "Schedule",
+ "Aggregate"
],
- "description": "Scheduled automation that orchestrates Httprequest, Aggregate, and Schedule for data processing. Uses 7 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Code, Telegram, and Httprequest for data processing. Uses 7 nodes and integrates with 5 services.",
"steps": [
{
"name": "Aggregate",
@@ -99868,10 +99898,10 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Spotify",
- "Schedule"
+ "Schedule",
+ "Spotify"
],
- "description": "Scheduled automation that connects Spotify and Schedule for data processing. Uses 11 nodes.",
+ "description": "Scheduled automation that connects Schedule and Spotify for data processing. Uses 11 nodes.",
"steps": [
{
"name": "CRON",
@@ -100991,16 +101021,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Telegram",
"Httprequest",
+ "Noop",
"Wait",
"Filter",
- "Telegram",
- "Redis",
- "Code",
- "Noop"
+ "Splitinbatches",
+ "Redis"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 36 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Httprequest for data processing. Uses 36 nodes and integrates with 8 services.",
"steps": [
{
"name": "Check User in Database",
@@ -102469,10 +102499,10 @@
"complexity": "high",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 47 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 47 nodes.",
"steps": [
{
"name": "Delete KV",
@@ -103068,15 +103098,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Httprequest",
"Wait",
- "Htmlextract",
- "Schedule",
+ "Gmail",
"Itemlists",
- "Code",
- "Gmail"
+ "Schedule",
+ "Htmlextract"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Htmlextract for data processing. Uses 15 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Wait for data processing. Uses 15 nodes and integrates with 7 services.",
"steps": [
{
"name": "🤖 Each month",
@@ -103539,12 +103569,12 @@
"triggerType": "Scheduled",
"integrations": [
"Httprequest",
- "Aggregate",
"Splitout",
+ "Filter",
"Schedule",
- "Filter"
+ "Aggregate"
],
- "description": "Scheduled automation that orchestrates Httprequest, Aggregate, and Splitout for data processing. Uses 8 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Httprequest, Splitout, and Filter for data processing. Uses 8 nodes and integrates with 5 services.",
"steps": [
{
"name": "Split Out",
@@ -104307,14 +104337,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
- "Manual",
- "Redis",
"Code",
- "Microsoftteams"
+ "Manual",
+ "Httprequest",
+ "Microsoftteams",
+ "Schedule",
+ "Redis"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Manual for data processing. Uses 23 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 23 nodes and integrates with 6 services.",
"steps": [
{
"name": "Get Meraki Organizations",
@@ -104714,12 +104744,12 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Facebookgraphapi",
- "Spreadsheetfile",
"Telegram",
- "Noop"
+ "Facebookgraphapi",
+ "Noop",
+ "Spreadsheetfile"
],
- "description": "Complex multi-step automation that orchestrates Code, Facebookgraphapi, and Spreadsheetfile for data processing. Uses 11 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Facebookgraphapi for data processing. Uses 11 nodes and integrates with 5 services.",
"steps": [
{
"name": "Get interest name",
@@ -104929,11 +104959,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Airtable",
"Googleanalytics",
- "Manual",
- "Airtable"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Googleanalytics, Manual, and Airtable for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates Airtable, Googleanalytics, and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -105245,14 +105275,14 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Html",
- "Splitinbatches",
- "Httprequest",
+ "Manual",
"Medium",
+ "Httprequest",
+ "Html",
"Itemlists",
- "Manual"
+ "Splitinbatches"
],
- "description": "Manual workflow that orchestrates Html, Splitinbatches, and Httprequest for data processing. Uses 10 nodes and integrates with 6 services.",
+ "description": "Manual workflow that orchestrates Manual, Medium, and Httprequest for data processing. Uses 10 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -106254,15 +106284,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
- "Itemlists",
- "Manual",
- "Filter",
+ "Code",
"Googlesheets",
- "Code"
+ "Manual",
+ "Httprequest",
+ "Filter",
+ "Itemlists",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Itemlists for data processing. Uses 20 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 20 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -109214,16 +109244,16 @@
"triggerType": "Complex",
"integrations": [
"Form",
- "Stopanderror",
- "Html",
- "Splitinbatches",
- "Httprequest",
- "Aggregate",
- "Converttofile",
"Respondtowebhook",
- "Github"
+ "Github",
+ "Httprequest",
+ "Html",
+ "Converttofile",
+ "Stopanderror",
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Form, Stopanderror, and Html for data processing. Uses 56 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Form, Respondtowebhook, and Github for data processing. Uses 56 nodes and integrates with 9 services.",
"steps": [
{
"name": "CREATE",
@@ -109704,11 +109734,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Slack",
"Airtable",
+ "Slack",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Code, Slack, and Airtable for data processing. Uses 14 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Airtable, and Slack for data processing. Uses 14 nodes and integrates with 4 services.",
"steps": [
{
"name": "Entered View \"First Task - Create Task\"",
@@ -110310,11 +110340,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Spreadsheetfile",
"Airtable",
+ "Spreadsheetfile",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Spreadsheetfile, Airtable, and Httprequest for data processing. Uses 17 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Airtable, Spreadsheetfile, and Httprequest for data processing. Uses 17 nodes.",
"steps": [
{
"name": "New Upload",
@@ -110543,12 +110573,12 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Datetime",
"Code",
+ "Datetime",
"Error",
"Mondaycom"
],
- "description": "Webhook-triggered automation that orchestrates Datetime, Code, and Error for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Datetime, and Error for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Monday",
@@ -111087,13 +111117,13 @@
"triggerType": "Complex",
"integrations": [
"Dropbox",
- "N8N",
"Datetime",
- "Schedule",
"Movebinarydata",
- "Filter"
+ "N8N",
+ "Filter",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Dropbox, N8N, and Datetime for data processing. Uses 17 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Dropbox, Datetime, and Movebinarydata for data processing. Uses 17 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -111835,13 +111865,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
- "Itemlists",
+ "Code",
"Googlesheets",
- "Code"
+ "Httprequest",
+ "Itemlists",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Itemlists for data processing. Uses 13 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Httprequest for data processing. Uses 13 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger - Run Workflow Every Day",
@@ -112796,10 +112826,10 @@
"triggerType": "Manual",
"integrations": [
"Code",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and Httprequest for data processing. Uses 13 nodes.",
+ "description": "Manual workflow that orchestrates Code, Httprequest, and Manual for data processing. Uses 13 nodes.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -113580,11 +113610,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Filter",
+ "Googlesheets",
"Executeworkflow",
- "Googlesheets"
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Code, Filter, and Executeworkflow for data processing. Uses 20 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Executeworkflow for data processing. Uses 20 nodes and integrates with 4 services.",
"steps": [
{
"name": "When chat message received",
@@ -114112,11 +114142,11 @@
"triggerType": "Complex",
"integrations": [
"Googlesheets",
- "Filter",
"Gmail",
- "Schedule"
+ "Schedule",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Googlesheets, Filter, and Gmail for data processing. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Gmail, and Schedule for data processing. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -114228,10 +114258,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Beeminder",
- "Strava"
+ "Strava",
+ "Beeminder"
],
- "description": "Webhook-triggered automation that connects Beeminder and Strava for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Strava and Beeminder for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Strava Trigger",
@@ -114892,11 +114922,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Aggregate",
"Executeworkflow",
- "Httprequest"
+ "Httprequest",
+ "Aggregate"
],
- "description": "Webhook-triggered automation that orchestrates Aggregate, Executeworkflow, and Httprequest for data processing. Uses 18 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Executeworkflow, Httprequest, and Aggregate for data processing. Uses 18 nodes.",
"steps": [
{
"name": "When chat message received",
@@ -115333,11 +115363,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Code",
"Slack",
+ "Code",
"Executeworkflow"
],
- "description": "Webhook-triggered automation that orchestrates Code, Slack, and Executeworkflow for data processing. Uses 17 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Code, and Executeworkflow for data processing. Uses 17 nodes.",
"steps": [
{
"name": "When chat message received",
@@ -116372,15 +116402,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Webhook",
- "Respondtowebhook",
- "Discord",
- "Manual",
- "Filter",
"Googlesheets",
- "Noop"
+ "Manual",
+ "Respondtowebhook",
+ "Webhook",
+ "Discord",
+ "Noop",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Respondtowebhook, and Discord for data processing. Uses 16 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Respondtowebhook for data processing. Uses 16 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -116924,13 +116954,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Form",
"Clearbit",
- "Filter",
+ "Form",
"Noop",
- "Gmail"
+ "Gmail",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Form, Clearbit, and Filter for data processing. Uses 13 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Clearbit, Form, and Noop for data processing. Uses 13 nodes and integrates with 5 services.",
"steps": [
{
"name": "n8n Form Trigger",
@@ -117548,11 +117578,11 @@
"triggerType": "Complex",
"integrations": [
"Googlesheets",
- "Noop",
+ "Schedule",
"Httprequest",
- "Schedule"
+ "Noop"
],
- "description": "Complex multi-step automation that orchestrates Googlesheets, Noop, and Httprequest for data processing. Uses 11 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Schedule, and Httprequest for data processing. Uses 11 nodes and integrates with 4 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -117999,13 +118029,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
- "Intercom",
"Code",
- "Noop"
+ "Webhook",
+ "Httprequest",
+ "Noop",
+ "Intercom"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Intercom for data processing. Uses 13 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Httprequest for data processing. Uses 13 nodes and integrates with 5 services.",
"steps": [
{
"name": "On Webhook event from Intercom",
@@ -118420,13 +118450,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Webhook",
"Clearbit",
+ "Webhook",
+ "Noop",
"Filter",
- "Noop"
+ "Slack"
],
- "description": "Complex multi-step automation that orchestrates Slack, Webhook, and Clearbit for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Clearbit, Webhook, and Noop for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "Filter out common personal emails",
@@ -118796,14 +118826,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
"Code",
"Googlecalendar",
+ "Httprequest",
+ "Noop",
"Gmail",
- "Noop"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Code for data processing. Uses 12 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlecalendar, and Httprequest for data processing. Uses 12 nodes and integrates with 6 services.",
"steps": [
{
"name": "Every morning @ 7",
@@ -119218,11 +119248,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Noop",
"Hubspot",
- "Httprequest"
+ "Httprequest",
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Noop, Hubspot, and Httprequest for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Hubspot, Httprequest, and Noop for data processing. Uses 12 nodes.",
"steps": [
{
"name": "On contact created",
@@ -120117,14 +120147,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
+ "Googlesheets",
"Clearbit",
+ "Httprequest",
"Splitout",
- "Schedule",
"Filter",
- "Googlesheets"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Clearbit, and Splitout for data processing. Uses 15 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Clearbit, and Httprequest for data processing. Uses 15 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -120659,13 +120689,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Clearbit",
"Form",
"Hubspot",
- "Clearbit",
"Hunter",
"Noop"
],
- "description": "Complex multi-step automation that orchestrates Form, Hubspot, and Clearbit for data processing. Uses 11 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Clearbit, Form, and Hubspot for data processing. Uses 11 nodes and integrates with 5 services.",
"steps": [
{
"name": "n8n Form Trigger",
@@ -121580,8 +121610,8 @@
"Hubspot",
"Httprequest",
"Splitout",
- "Schedule",
- "Filter"
+ "Filter",
+ "Schedule"
],
"description": "Complex multi-step automation that orchestrates Hubspot, Httprequest, and Splitout for data processing. Uses 22 nodes and integrates with 5 services.",
"steps": [
@@ -122087,12 +122117,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
"Hubspot",
"Gmail",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Hubspot, and Gmail for data processing. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Hubspot, Gmail, and Schedule for data processing. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "Every day at 9 am",
@@ -122461,12 +122491,12 @@
"triggerType": "Complex",
"integrations": [
"Form",
- "Slack",
- "Httprequest",
"Hunter",
- "Noop"
+ "Httprequest",
+ "Noop",
+ "Slack"
],
- "description": "Complex multi-step automation that orchestrates Form, Slack, and Httprequest for data processing. Uses 11 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Form, Hunter, and Httprequest for data processing. Uses 11 nodes and integrates with 5 services.",
"steps": [
{
"name": "n8n Form Trigger",
@@ -122848,12 +122878,12 @@
"triggerType": "Complex",
"integrations": [
"Form",
- "Httprequest",
"Hunter",
+ "Httprequest",
"Noop",
"Gmail"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Hunter for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Form, Hunter, and Httprequest for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "n8n Form Trigger",
@@ -123220,13 +123250,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Httprequest",
- "Hunter",
"Telegram",
+ "Form",
+ "Hunter",
+ "Httprequest",
"Noop"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Hunter for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Form, and Hunter for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "n8n Form Trigger",
@@ -123736,12 +123766,12 @@
"integrations": [
"Form",
"Hubspot",
- "Httprequest",
"Hunter",
+ "Httprequest",
"Noop",
"Gmail"
],
- "description": "Complex multi-step automation that orchestrates Form, Hubspot, and Httprequest for data processing. Uses 15 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Form, Hubspot, and Hunter for data processing. Uses 15 nodes and integrates with 6 services.",
"steps": [
{
"name": "n8n Form Trigger",
@@ -124164,16 +124194,16 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
- "Splitinbatches",
+ "Manual",
"Httprequest",
"Wait",
"Splitout",
+ "Xml",
+ "Splitinbatches",
"Schedule",
- "Manual",
- "Xml"
+ "Stopanderror"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Splitinbatches, and Httprequest for data processing. Uses 12 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Httprequest, and Wait for data processing. Uses 12 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -124927,17 +124957,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Httprequest",
- "Clearbit",
- "Splitout",
- "Schedule",
- "Filter",
"Code",
+ "Clearbit",
"Googlecalendar",
- "Gmail"
+ "Httprequest",
+ "Html",
+ "Splitout",
+ "Gmail",
+ "Filter",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Clearbit for data processing. Uses 19 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Clearbit, and Googlecalendar for data processing. Uses 19 nodes and integrates with 9 services.",
"steps": [
{
"name": "Every morning @ 7",
@@ -125845,17 +125875,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Openai",
- "Httprequest",
"Clearbit",
- "Splitout",
- "Schedule",
- "Filter",
"Googlecalendar",
- "Gmail"
+ "Httprequest",
+ "Html",
+ "Splitout",
+ "Gmail",
+ "Filter",
+ "Schedule",
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Html, Openai, and Httprequest for data processing. Uses 21 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Clearbit, Googlecalendar, and Httprequest for data processing. Uses 21 nodes and integrates with 9 services.",
"steps": [
{
"name": "Every morning @ 7",
@@ -126551,13 +126581,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Hubspot",
"Clearbit",
+ "Hubspot",
+ "Noop",
"Calendly",
- "Filter",
- "Noop"
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Hubspot, Clearbit, and Calendly for data processing. Uses 16 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Clearbit, Hubspot, and Noop for data processing. Uses 16 nodes and integrates with 5 services.",
"steps": [
{
"name": "Enrich company",
@@ -127108,13 +127138,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Hubspot",
"Clearbit",
"Convertkit",
- "Filter",
- "Noop"
+ "Hubspot",
+ "Noop",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Hubspot, Clearbit, and Convertkit for data processing. Uses 16 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Clearbit, Convertkit, and Hubspot for data processing. Uses 16 nodes and integrates with 5 services.",
"steps": [
{
"name": "Enrich company",
@@ -127350,12 +127380,12 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Slack",
"Hubspot",
- "Filter",
- "Schedule"
+ "Slack",
+ "Schedule",
+ "Filter"
],
- "description": "Scheduled automation that orchestrates Slack, Hubspot, and Filter for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Hubspot, Slack, and Schedule for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "Trigger every 5 minutes",
@@ -127641,14 +127671,14 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Httprequest",
- "Webhook",
- "Splitout",
"Respondtowebhook",
- "Filter",
- "Xml"
+ "Webhook",
+ "Httprequest",
+ "Splitout",
+ "Xml",
+ "Filter"
],
- "description": "Webhook-triggered automation that orchestrates Httprequest, Webhook, and Splitout for data processing. Uses 9 nodes and integrates with 6 services.",
+ "description": "Webhook-triggered automation that orchestrates Respondtowebhook, Webhook, and Httprequest for data processing. Uses 9 nodes and integrates with 6 services.",
"steps": [
{
"name": "Respond All Items",
@@ -127919,13 +127949,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Respondtowebhook",
+ "Webhook",
"Removeduplicates",
"Httprequest",
- "Webhook",
- "Splitout",
- "Respondtowebhook"
+ "Splitout"
],
- "description": "Webhook-triggered automation that orchestrates Removeduplicates, Httprequest, and Webhook for data processing. Uses 10 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Respondtowebhook, Webhook, and Removeduplicates for data processing. Uses 10 nodes and integrates with 5 services.",
"steps": [
{
"name": "Respond to Webhook",
@@ -128598,15 +128628,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Httprequest",
"Clearbit",
"Pipedrive",
+ "Httprequest",
"Splitout",
- "Schedule",
- "Filter"
+ "Filter",
+ "Slack",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Slack, Httprequest, and Clearbit for data processing. Uses 20 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Clearbit, Pipedrive, and Httprequest for data processing. Uses 20 nodes and integrates with 7 services.",
"steps": [
{
"name": "Trigger every 5 minutes",
@@ -129160,13 +129190,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Form",
"Clearbit",
- "Pipedrive",
+ "Form",
"Hunter",
+ "Pipedrive",
"Noop"
],
- "description": "Complex multi-step automation that orchestrates Form, Clearbit, and Pipedrive for data processing. Uses 15 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Clearbit, Form, and Hunter for data processing. Uses 15 nodes and integrates with 5 services.",
"steps": [
{
"name": "n8n Form Trigger",
@@ -130316,14 +130346,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Schedule",
- "Filter",
- "Executeworkflow",
- "Googlesheets",
"Code",
- "Gmail"
+ "Googlesheets",
+ "Gmail",
+ "Executeworkflow",
+ "Filter",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Schedule, Filter, and Executeworkflow for data processing. Uses 32 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Gmail for data processing. Uses 32 nodes and integrates with 6 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -131175,18 +131205,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Linear",
- "Splitinbatches",
- "Httprequest",
- "Graphql",
- "Aggregate",
"Code",
+ "Form",
"Respondtowebhook",
+ "Notion",
+ "Linear",
+ "Httprequest",
"Filter",
- "Notion"
+ "Graphql",
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Form, Linear, and Splitinbatches for data processing. Uses 24 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Respondtowebhook for data processing. Uses 24 nodes and integrates with 10 services.",
"steps": [
{
"name": "n8n Form Trigger",
@@ -131649,10 +131679,10 @@
"triggerType": "Scheduled",
"integrations": [
"Twitter",
- "Manual",
- "Schedule"
+ "Schedule",
+ "Manual"
],
- "description": "Scheduled automation that orchestrates Twitter, Manual, and Schedule for data processing. Uses 12 nodes.",
+ "description": "Scheduled automation that orchestrates Twitter, Schedule, and Manual for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Schedule posting every 6 hours",
@@ -132285,11 +132315,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Googlesheets",
"Webhook",
- "Httprequest",
- "Googlesheets"
+ "Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Httprequest, and Googlesheets for data processing. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Webhook, and Httprequest for data processing. Uses 8 nodes.",
"steps": [
{
"name": "Webhook",
@@ -132616,14 +132646,14 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Splitinbatches",
- "Rssfeedread",
- "Splitout",
- "Schedule",
"Noop",
- "Gmail"
+ "Splitout",
+ "Gmail",
+ "Splitinbatches",
+ "Schedule",
+ "Rssfeedread"
],
- "description": "Scheduled automation that orchestrates Splitinbatches, Rssfeedread, and Splitout for data processing. Uses 10 nodes and integrates with 6 services.",
+ "description": "Scheduled automation that orchestrates Noop, Splitout, and Gmail for data processing. Uses 10 nodes and integrates with 6 services.",
"steps": [
{
"name": "Every 1 hour",
@@ -132950,11 +132980,11 @@
"triggerType": "Scheduled",
"integrations": [
"Itemlists",
- "Filter",
"Gmail",
- "Schedule"
+ "Schedule",
+ "Filter"
],
- "description": "Scheduled automation that orchestrates Itemlists, Filter, and Gmail for data processing. Uses 10 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Itemlists, Gmail, and Schedule for data processing. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "At midnight every work day",
@@ -133566,15 +133596,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Datetime",
- "Schedule",
"Crypto",
- "Itemlists",
+ "Datetime",
+ "Httprequest",
+ "Todoist",
"Filter",
- "Todoist"
+ "Itemlists",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Datetime, and Schedule for data processing. Uses 19 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Crypto, Datetime, and Httprequest for data processing. Uses 19 nodes and integrates with 7 services.",
"steps": [
{
"name": "at 5am",
@@ -134083,13 +134113,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Graphql",
- "Splitout",
- "Schedule",
+ "Code",
"Googlesheets",
- "Code"
+ "Splitout",
+ "Graphql",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Graphql, Splitout, and Schedule for data processing. Uses 14 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Splitout for data processing. Uses 14 nodes and integrates with 5 services.",
"steps": [
{
"name": "Every day at 06:00",
@@ -134530,12 +134560,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Todoist",
"Code",
- "Filter",
- "Schedule"
+ "Schedule",
+ "Todoist",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Todoist, Code, and Filter for data processing. Uses 13 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Schedule, and Todoist for data processing. Uses 13 nodes and integrates with 4 services.",
"steps": [
{
"name": "Every day at 5:10am",
@@ -134701,10 +134731,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Error",
- "Slack"
+ "Slack",
+ "Error"
],
- "description": "Webhook-triggered automation that connects Error and Slack for data processing. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that connects Slack and Error for data processing. Uses 5 nodes.",
"steps": [
{
"name": "On Error",
@@ -135154,11 +135184,11 @@
"triggerType": "Scheduled",
"integrations": [
"Notion",
- "Httprequest",
+ "Schedule",
"N8N",
- "Schedule"
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Notion, Httprequest, and N8N for data processing. Uses 10 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Notion, Schedule, and N8N for data processing. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "Every 15 minutes",
@@ -135737,15 +135767,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Webhook",
- "Splitout",
"Respondtowebhook",
+ "Webhook",
+ "Httprequest",
+ "Noop",
+ "Splitout",
"Filter",
- "Noop"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Webhook for data processing. Uses 18 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Webhook, and Httprequest for data processing. Uses 18 nodes and integrates with 7 services.",
"steps": [
{
"name": "Webhook",
@@ -136616,10 +136646,10 @@
"integrations": [
"Slack",
"Linear",
- "Filter",
- "Httprequest"
+ "Httprequest",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Slack, Linear, and Filter for data processing. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Slack, Linear, and Httprequest for data processing. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "Linear Trigger",
@@ -136915,14 +136945,14 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Webhook",
- "Splitout",
"Respondtowebhook",
- "Xml"
+ "Webhook",
+ "Httprequest",
+ "Splitout",
+ "Xml",
+ "Aggregate"
],
- "description": "Webhook-triggered automation that orchestrates Httprequest, Aggregate, and Webhook for data processing. Uses 9 nodes and integrates with 6 services.",
+ "description": "Webhook-triggered automation that orchestrates Respondtowebhook, Webhook, and Httprequest for data processing. Uses 9 nodes and integrates with 6 services.",
"steps": [
{
"name": "Receive Keyword",
@@ -138082,14 +138112,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Httprequest",
+ "Code",
"Webhook",
"Postgres",
+ "Httprequest",
"Executeworkflow",
- "Code"
+ "Slack"
],
- "description": "Complex multi-step automation that orchestrates Slack, Httprequest, and Webhook for data processing. Uses 34 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Postgres for data processing. Uses 34 nodes and integrates with 6 services.",
"steps": [
{
"name": "Webhook to call for Slack command",
@@ -138336,10 +138366,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Error",
- "Telegram"
+ "Telegram",
+ "Error"
],
- "description": "Webhook-triggered automation that connects Error and Telegram for data processing. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that connects Telegram and Error for data processing. Uses 5 nodes.",
"steps": [
{
"name": "On Error",
@@ -138480,10 +138510,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Gsuiteadmin"
+ "Gsuiteadmin",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Gsuiteadmin to create new records. Uses 4 nodes.",
+ "description": "Manual workflow that connects Gsuiteadmin and Manual to create new records. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -138589,10 +138619,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Error",
- "Gmail"
+ "Gmail",
+ "Error"
],
- "description": "Webhook-triggered automation that connects Error and Gmail for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that connects Gmail and Error for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On Error",
@@ -139705,17 +139735,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Woocommerce",
- "Httprequest",
- "Aggregate",
- "Webhook",
- "Splitout",
+ "Code",
"Respondtowebhook",
- "Executeworkflow",
+ "Webhook",
+ "Httprequest",
+ "Splitout",
+ "Woocommerce",
"Dhl",
- "Code"
+ "Executeworkflow",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Woocommerce, Httprequest, and Aggregate for data processing. Uses 40 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Webhook for data processing. Uses 40 nodes and integrates with 9 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -140880,11 +140910,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
+ "Splitout",
"Webhook",
- "Httprequest",
- "Splitout"
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Code, Webhook, and Httprequest for data processing. Uses 14 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Splitout, and Webhook for data processing. Uses 14 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webhook",
@@ -141316,13 +141346,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "N8N",
- "Postgres",
- "Schedule",
"Manual",
- "Filter"
+ "Postgres",
+ "N8N",
+ "Filter",
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates N8N, Postgres, and Schedule for data processing. Uses 6 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Manual, Postgres, and N8N for data processing. Uses 6 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -142641,14 +142671,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Extractfromfile",
- "Converttofile",
- "Telegram",
"Code",
- "Noop"
+ "Telegram",
+ "Extractfromfile",
+ "Noop",
+ "Httprequest",
+ "Converttofile"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Extractfromfile, and Converttofile for data processing. Uses 43 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Extractfromfile for data processing. Uses 43 nodes and integrates with 6 services.",
"steps": [
{
"name": "Telegram trigger",
@@ -143136,11 +143166,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
"Highlevel",
+ "Webhook",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Highlevel, and Httprequest for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Highlevel, Webhook, and Httprequest for data processing. Uses 10 nodes.",
"steps": [
{
"name": "CRM Webhook Trigger",
@@ -143664,13 +143694,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
+ "Telegram",
"N8N",
- "Aggregate",
- "Schedule",
"Filter",
- "Telegram"
+ "Schedule",
+ "Aggregate"
],
- "description": "Scheduled automation that orchestrates N8N, Aggregate, and Schedule for data processing. Uses 10 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Telegram, N8N, and Filter for data processing. Uses 10 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -144231,13 +144261,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Manual",
"Httprequest",
"Wait",
- "Manual",
"Filter",
"Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Manual for data processing. Uses 14 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Httprequest, and Wait for data processing. Uses 14 nodes and integrates with 5 services.",
"steps": [
{
"name": "Run manually",
@@ -144768,12 +144798,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Respondtowebhook",
"Webhook",
"Googledrive",
+ "Respondtowebhook",
"Manual"
],
- "description": "Complex multi-step automation that orchestrates Respondtowebhook, Webhook, and Googledrive for data processing. Uses 17 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Googledrive, and Respondtowebhook for data processing. Uses 17 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -145776,13 +145806,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Form",
"Httprequest",
- "Splitout",
- "Code",
- "Wordpress"
+ "Wordpress",
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Splitout for data processing. Uses 37 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Httprequest for data processing. Uses 37 nodes and integrates with 5 services.",
"steps": [
{
"name": "On form submission",
@@ -146056,10 +146086,10 @@
"triggerType": "Webhook",
"integrations": [
"Webhook",
- "Respondtowebhook",
- "Clickup"
+ "Clickup",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and Clickup for data processing. Uses 6 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Clickup, and Respondtowebhook for data processing. Uses 6 nodes.",
"steps": [
{
"name": "Respond to Webhook",
@@ -146324,11 +146354,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Googlesheets",
"Removeduplicates",
- "Httprequest",
- "Googlesheets"
+ "Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Removeduplicates, Httprequest, and Googlesheets for data processing. Uses 6 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Removeduplicates, and Httprequest for data processing. Uses 6 nodes.",
"steps": [
{
"name": "Google Sheets Trigger",
@@ -146615,10 +146645,10 @@
"triggerType": "Webhook",
"integrations": [
"Form",
- "Respondtowebhook",
- "Httprequest"
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Form, Respondtowebhook, and Httprequest for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Form, Httprequest, and Respondtowebhook for data processing. Uses 7 nodes.",
"steps": [
{
"name": "Config",
@@ -147109,11 +147139,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Aggregate",
+ "Splitout",
"Gmail",
- "Splitout"
+ "Aggregate"
],
- "description": "Webhook-triggered automation that orchestrates Aggregate, Gmail, and Splitout for data processing. Uses 19 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Splitout, Gmail, and Aggregate for data processing. Uses 19 nodes.",
"steps": [
{
"name": "Gmail trigger",
@@ -147762,15 +147792,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Limit",
- "Splitinbatches",
- "Httprequest",
- "Markdown",
- "Schedule",
"Code",
- "Gmail"
+ "Limit",
+ "Httprequest",
+ "Gmail",
+ "Markdown",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Limit, Splitinbatches, and Httprequest for data processing. Uses 23 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Limit, and Httprequest for data processing. Uses 23 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule trigger (1 min)",
@@ -149001,13 +149031,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Schedule",
- "Googleanalytics",
- "Manual",
"Code",
- "Gmail"
+ "Manual",
+ "Gmail",
+ "Googleanalytics",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Schedule, Googleanalytics, and Manual for data processing. Uses 23 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Gmail for data processing. Uses 23 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -149262,11 +149292,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Readbinaryfile",
"Youtube",
- "Manual",
- "Readbinaryfile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Youtube, Manual, and Readbinaryfile to create new records. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Readbinaryfile, Youtube, and Manual to create new records. Uses 5 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -150213,13 +150243,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Form",
"Httprequest",
- "Schedule",
- "Googlesheets",
- "Gmail"
+ "Gmail",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Schedule for data processing. Uses 14 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Form, and Httprequest for data processing. Uses 14 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -150813,10 +150843,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Aggregate",
- "Telegram"
+ "Telegram",
+ "Aggregate"
],
- "description": "Webhook-triggered automation that connects Aggregate and Telegram for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that connects Telegram and Aggregate for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Telegram Trigger",
@@ -151252,14 +151282,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Converttofile",
- "Telegram",
"Code",
- "Gmail"
+ "Telegram",
+ "Httprequest",
+ "Gmail",
+ "Converttofile",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Converttofile for data processing. Uses 14 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Httprequest for data processing. Uses 14 nodes and integrates with 6 services.",
"steps": [
{
"name": "Gmail trigger",
@@ -152227,13 +152257,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Form",
- "Httprequest",
- "Aggregate",
"Respondtowebhook",
- "Code"
+ "Httprequest",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Aggregate for data processing. Uses 20 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Respondtowebhook for data processing. Uses 20 nodes and integrates with 5 services.",
"steps": [
{
"name": "Get Channel ID",
@@ -152758,13 +152788,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Extractfromfile",
- "Webhook",
"Respondtowebhook",
- "Xml"
+ "Webhook",
+ "Extractfromfile",
+ "Xml",
+ "Slack"
],
- "description": "Complex multi-step automation that orchestrates Slack, Extractfromfile, and Webhook for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Webhook, and Extractfromfile for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "Error Response",
@@ -154749,10 +154779,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Debughelper"
+ "Debughelper",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Debughelper for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that connects Debughelper and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -155205,11 +155235,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Code",
+ "Mautic",
"Gmail",
- "Mautic"
+ "Code"
],
- "description": "Webhook-triggered automation that orchestrates Code, Gmail, and Mautic for data processing. Uses 16 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Mautic, Gmail, and Code for data processing. Uses 16 nodes.",
"steps": [
{
"name": "Gmail Trigger",
@@ -155541,10 +155571,10 @@
"integrations": [
"Code",
"Webhook",
- "Respondtowebhook",
- "Httprequest"
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Code, Webhook, and Respondtowebhook for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Webhook, and Httprequest for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "Error Missing Fields",
@@ -155754,10 +155784,10 @@
"triggerType": "Webhook",
"integrations": [
"Webhook",
- "Respondtowebhook",
- "Httprequest"
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and Httprequest for data processing. Uses 6 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Httprequest, and Respondtowebhook for data processing. Uses 6 nodes.",
"steps": [
{
"name": "Respond to Webhook",
@@ -156073,11 +156103,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Keap",
"Webhook",
- "Httprequest",
- "Keap"
+ "Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Httprequest, and Keap for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Keap, Webhook, and Httprequest for data processing. Uses 10 nodes.",
"steps": [
{
"name": "CRM Webhook Trigger",
@@ -156334,12 +156364,12 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Htmlextract",
- "Httprequest",
"Cron",
- "Emailsend"
+ "Htmlextract",
+ "Emailsend",
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Htmlextract, Httprequest, and Cron for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Cron, Htmlextract, and Emailsend for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "Cron",
@@ -156630,12 +156660,12 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Html",
- "Manual",
"Airtable",
- "Httprequest"
+ "Html",
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Html, Manual, and Airtable for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Airtable, Html, and Httprequest for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -156732,10 +156762,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
- "Googlesheets"
+ "Googlesheets",
+ "Webhook"
],
- "description": "Webhook-triggered automation that connects Webhook and Googlesheets for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Googlesheets and Webhook for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Webhook",
@@ -157181,14 +157211,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Schedule",
- "Filter",
"Manual",
- "Redis",
+ "Noop",
"Executeworkflow",
- "Noop"
+ "Filter",
+ "Schedule",
+ "Redis"
],
- "description": "Complex multi-step automation that orchestrates Schedule, Filter, and Manual for data processing. Uses 17 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Noop, and Executeworkflow for data processing. Uses 17 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -157772,17 +157802,17 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Slack",
+ "Code",
+ "Postgres",
"Httprequest",
"Wait",
- "Aggregate",
- "Postgres",
"Splitout",
+ "Slack",
+ "Splitinbatches",
"Schedule",
- "Code"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Slack, and Httprequest for data processing. Uses 12 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Postgres, and Httprequest for data processing. Uses 12 nodes and integrates with 9 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -158066,12 +158096,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "N8Ntrainingcustomerdatastore",
"Webhook",
"Respondtowebhook",
+ "N8Ntrainingcustomerdatastore",
"Aggregate"
],
- "description": "Webhook-triggered automation that orchestrates N8Ntrainingcustomerdatastore, Webhook, and Respondtowebhook for data processing. Uses 9 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and N8Ntrainingcustomerdatastore for data processing. Uses 9 nodes and integrates with 4 services.",
"steps": [
{
"name": "On new flutterflow call",
@@ -158285,12 +158315,12 @@
"triggerType": "Scheduled",
"integrations": [
"Httprequest",
- "Markdown",
"Splitout",
- "Schedule",
- "Gmail"
+ "Gmail",
+ "Markdown",
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Httprequest, Markdown, and Splitout for data processing. Uses 7 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Httprequest, Splitout, and Gmail for data processing. Uses 7 nodes and integrates with 5 services.",
"steps": [
{
"name": "Daily Trigger",
@@ -158593,10 +158623,10 @@
"triggerType": "Manual",
"integrations": [
"Extractfromfile",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Extractfromfile, Manual, and Httprequest for data processing. Uses 10 nodes.",
+ "description": "Manual workflow that orchestrates Extractfromfile, Httprequest, and Manual for data processing. Uses 10 nodes.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -159287,13 +159317,13 @@
"triggerType": "Complex",
"integrations": [
"Httprequest",
- "Markdown",
- "Schedule",
- "Filter",
"Wordpress",
- "Airtable"
+ "Airtable",
+ "Filter",
+ "Markdown",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Markdown, and Schedule for data processing. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Httprequest, Wordpress, and Airtable for data processing. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -160043,15 +160073,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Aggregate",
- "Splitout",
+ "Code",
"Schedule",
- "Spotify",
+ "Splitout",
"Filter",
- "Code"
+ "Splitinbatches",
+ "Spotify",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Aggregate, and Splitout for data processing. Uses 23 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Schedule, and Splitout for data processing. Uses 23 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -160639,11 +160669,11 @@
"triggerType": "Complex",
"integrations": [
"Slack",
- "Lemlist",
"Markdown",
- "Httprequest"
+ "Httprequest",
+ "Lemlist"
],
- "description": "Complex multi-step automation that orchestrates Slack, Lemlist, and Markdown for data processing. Uses 18 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Slack, Markdown, and Httprequest for data processing. Uses 18 nodes and integrates with 4 services.",
"steps": [
{
"name": "Lemlist Trigger - On new reply",
@@ -161275,11 +161305,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Executeworkflow",
"Sendinblue",
+ "Executeworkflow",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Executeworkflow, Sendinblue, and Httprequest for data processing. Uses 22 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Sendinblue, Executeworkflow, and Httprequest for data processing. Uses 22 nodes.",
"steps": [
{
"name": "Tally Forms Trigger",
@@ -162299,16 +162329,16 @@
"triggerType": "Complex",
"integrations": [
"Webflow",
- "Splitinbatches",
- "Slack",
"Code",
- "Comparedatasets",
- "Schedule",
- "Filter",
"Notion",
- "Noop"
+ "Noop",
+ "Filter",
+ "Slack",
+ "Splitinbatches",
+ "Schedule",
+ "Comparedatasets"
],
- "description": "Complex multi-step automation that orchestrates Webflow, Splitinbatches, and Slack for data processing. Uses 29 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Webflow, Code, and Notion for data processing. Uses 29 nodes and integrates with 9 services.",
"steps": [
{
"name": "Slug uniqueness checker and differentiator1",
@@ -162483,11 +162513,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Httprequest, and Readwritefile for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Readwritefile, Httprequest, and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -162674,10 +162704,10 @@
"integrations": [
"Noop",
"Converttofile",
- "Manual",
- "N8N"
+ "N8N",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Noop, Converttofile, and Manual for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Noop, Converttofile, and N8N for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -162886,11 +162916,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Httprequest, and Readwritefile for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that orchestrates Readwritefile, Httprequest, and Manual for data processing. Uses 6 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -163075,10 +163105,10 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that connects Httprequest and Schedule for data processing. Uses 5 nodes.",
+ "description": "Scheduled automation that connects Schedule and Httprequest for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Schedule Trigger",
@@ -163800,15 +163830,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Manual",
"Httprequest",
- "N8N",
- "Aggregate",
"Summarize",
"Splitout",
- "Manual",
- "Code"
+ "N8N",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, N8N, and Aggregate for data processing. Uses 15 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 15 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -164049,11 +164079,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Httprequest, and Readwritefile for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Readwritefile, Httprequest, and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -164246,11 +164276,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Httprequest, and Readwritefile for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Readwritefile, Httprequest, and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -164498,12 +164528,12 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Readwritefile",
"Googledrive",
- "Manual",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Googledrive, Manual, and Httprequest for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Readwritefile, Googledrive, and Httprequest for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -165262,17 +165292,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Executecommand",
- "Schedule",
- "Manual",
- "Executeworkflow",
"Code",
+ "Manual",
+ "Executecommand",
+ "Github",
+ "Httprequest",
"Noop",
- "Github"
+ "Executeworkflow",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Executecommand for data processing. Uses 24 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Executecommand for data processing. Uses 24 nodes and integrates with 9 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -165452,11 +165482,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Httprequest, and Readwritefile for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Readwritefile, Httprequest, and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -165796,13 +165826,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Error",
- "N8N",
- "Schedule",
"Code",
- "Gmail"
+ "Error",
+ "Gmail",
+ "N8N",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Error, N8N, and Schedule for data processing. Uses 11 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Error, and Gmail for data processing. Uses 11 nodes and integrates with 5 services.",
"steps": [
{
"name": "Error Trigger",
@@ -166011,11 +166041,11 @@
"triggerType": "Manual",
"integrations": [
"Code",
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and Httprequest for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Code, Readwritefile, and Httprequest for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -167077,17 +167107,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Supabase",
+ "Manual",
"Removeduplicates",
"Httprequest",
- "Aggregate",
- "Markdown",
+ "Html",
"Splitout",
- "Manual",
- "Filter"
+ "Supabase",
+ "Filter",
+ "Markdown",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Html, Supabase, and Removeduplicates for data processing. Uses 38 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Removeduplicates, and Httprequest for data processing. Uses 38 nodes and integrates with 9 services.",
"steps": [
{
"name": "Execute workflow",
@@ -167304,11 +167334,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Httprequest, and Readwritefile for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Readwritefile, Httprequest, and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -167505,11 +167535,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Httprequest, and Readwritefile for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Readwritefile, Httprequest, and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -168538,14 +168568,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Httprequest",
"Wait",
- "Aggregate",
"Splitout",
- "Googlesheets",
- "Gmail"
+ "Gmail",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Aggregate for data processing. Uses 26 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Httprequest, and Wait for data processing. Uses 26 nodes and integrates with 6 services.",
"steps": [
{
"name": "Receiving Invoices",
@@ -169212,14 +169242,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Slack",
- "Googledocs",
- "Extractfromfile",
"Webhook",
- "Gmail"
+ "Extractfromfile",
+ "Gmail",
+ "Slack",
+ "Splitinbatches",
+ "Googledocs"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Slack, and Googledocs for data processing. Uses 23 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Extractfromfile, and Gmail for data processing. Uses 23 nodes and integrates with 6 services.",
"steps": [
{
"name": "Wait for Request",
@@ -169783,12 +169813,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
"Bannerbear",
+ "Form",
"Discord",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Form, Bannerbear, and Discord for data processing. Uses 16 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Bannerbear, Form, and Discord for data processing. Uses 16 nodes and integrates with 4 services.",
"steps": [
{
"name": "n8n Form Trigger",
@@ -170331,12 +170361,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
- "Linear",
"Slack",
- "Schedule"
+ "Linear",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Linear, and Slack for data processing. Uses 19 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Slack, Linear, and Schedule for data processing. Uses 19 nodes and integrates with 4 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -171155,12 +171185,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Splitinbatches",
- "Manual",
"Schedule",
- "Googlesheets"
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Manual, and Schedule for data processing. Uses 22 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Splitinbatches, and Schedule for data processing. Uses 22 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -172076,14 +172106,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Splitout",
- "Schedule",
- "Filter",
"Code",
- "Googlecalendar"
+ "Googlecalendar",
+ "Splitout",
+ "Filter",
+ "Slack",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Slack, Splitout, and Schedule for data processing. Uses 33 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlecalendar, and Splitout for data processing. Uses 33 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -172911,14 +172941,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
+ "Httprequest",
+ "Gmail",
"Slack",
"Splitinbatches",
- "Httprequest",
- "Schedule",
- "Googlesheets",
- "Gmail"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Slack, Splitinbatches, and Httprequest for data processing. Uses 15 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Httprequest, and Gmail for data processing. Uses 15 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -173754,15 +173784,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Extractfromfile",
- "Googledrive",
- "Splitout",
+ "Googlecalendar",
"Manual",
+ "Extractfromfile",
+ "Httprequest",
+ "Splitout",
"Executeworkflow",
- "Googlecalendar"
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Extractfromfile, and Googledrive for data processing. Uses 28 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Googlecalendar, Manual, and Extractfromfile for data processing. Uses 28 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -174778,12 +174808,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Manual",
"Airtable",
"Executeworkflow",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Manual, Airtable, and Executeworkflow for data processing. Uses 29 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Airtable, Executeworkflow, and Httprequest for data processing. Uses 29 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -175304,14 +175334,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Elasticsearch",
- "Splitout",
- "Filter",
"Manual",
- "Editimage"
+ "Elasticsearch",
+ "Editimage",
+ "Httprequest",
+ "Splitout",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Elasticsearch, and Splitout for data processing. Uses 17 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Elasticsearch, and Editimage for data processing. Uses 17 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -176358,14 +176388,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Httprequest",
- "Wait",
+ "Code",
"Manual",
- "Executeworkflow",
- "Code"
+ "Httprequest",
+ "Html",
+ "Wait",
+ "Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Wait for data processing. Uses 33 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 33 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -176852,10 +176882,10 @@
"triggerType": "Webhook",
"integrations": [
"Localfile",
- "Executecommand",
- "Splitout"
+ "Splitout",
+ "Executecommand"
],
- "description": "Webhook-triggered automation that orchestrates Localfile, Executecommand, and Splitout for data processing. Uses 16 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Localfile, Splitout, and Executecommand for data processing. Uses 16 nodes.",
"steps": [
{
"name": "Local File Trigger",
@@ -177858,11 +177888,11 @@
"triggerType": "Complex",
"integrations": [
"Localfile",
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Localfile, Manual, and Httprequest for data processing. Uses 29 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Localfile, Readwritefile, and Httprequest for data processing. Uses 29 nodes and integrates with 4 services.",
"steps": [
{
"name": "Local File Trigger",
@@ -178348,13 +178378,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Readwritefile",
"Extractfromfile",
"Localfile",
- "Splitout",
- "Code",
- "Readwritefile"
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Extractfromfile, Localfile, and Splitout for data processing. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Readwritefile, and Extractfromfile for data processing. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "Watch For Bank Statements",
@@ -179670,16 +179700,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Wait",
- "Aggregate",
+ "Readwritefile",
"Extractfromfile",
+ "Wait",
"Localfile",
"Splitout",
"Converttofile",
- "Readwritefile"
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Wait, and Aggregate for data processing. Uses 42 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Readwritefile, Extractfromfile, and Wait for data processing. Uses 42 nodes and integrates with 8 services.",
"steps": [
{
"name": "Local File Trigger",
@@ -180984,17 +181014,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Compression",
+ "Manual",
+ "Extractfromfile",
"Httprequest",
"Wait",
- "Extractfromfile",
- "Compression",
"Splitout",
- "Manual",
+ "Executeworkflow",
"Filter",
- "Executeworkflow"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 38 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Compression, Manual, and Extractfromfile for data processing. Uses 38 nodes and integrates with 9 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -182756,11 +182786,11 @@
"complexity": "high",
"triggerType": "Scheduled",
"integrations": [
- "Airtable",
"Twilio",
- "Schedule"
+ "Schedule",
+ "Airtable"
],
- "description": "Scheduled automation that orchestrates Airtable, Twilio, and Schedule for data processing. Uses 36 nodes.",
+ "description": "Scheduled automation that orchestrates Twilio, Schedule, and Airtable for data processing. Uses 36 nodes.",
"steps": [
{
"name": "Twilio Trigger",
@@ -183728,10 +183758,10 @@
"triggerType": "Manual",
"integrations": [
"Googledrive",
- "Manual",
- "Editimage"
+ "Editimage",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Googledrive, Manual, and Editimage for data processing. Uses 22 nodes.",
+ "description": "Manual workflow that orchestrates Googledrive, Editimage, and Manual for data processing. Uses 22 nodes.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -184251,11 +184281,11 @@
"triggerType": "Complex",
"integrations": [
"Wait",
- "Noop",
"Twilio",
- "Redis"
+ "Redis",
+ "Noop"
],
- "description": "Complex multi-step automation that orchestrates Wait, Noop, and Twilio for data processing. Uses 18 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Wait, Twilio, and Redis for data processing. Uses 18 nodes and integrates with 4 services.",
"steps": [
{
"name": "Twilio Trigger",
@@ -184632,10 +184662,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Manual",
- "N8N"
+ "N8N",
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Code, Manual, and N8N for data processing. Uses 13 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, N8N, and Manual for data processing. Uses 13 nodes.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -184774,10 +184804,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Googledrive",
- "Gmail"
+ "Gmail",
+ "Googledrive"
],
- "description": "Webhook-triggered automation that connects Googledrive and Gmail for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that connects Gmail and Googledrive for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Trigger - New Email",
@@ -184880,10 +184910,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Error",
- "N8N"
+ "N8N",
+ "Error"
],
- "description": "Webhook-triggered automation that orchestrates Code, Error, and N8N for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, N8N, and Error for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Error Trigger",
@@ -185099,10 +185129,10 @@
"integrations": [
"Code",
"Slack",
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Code, Slack, and Httprequest for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Code, Slack, and Schedule for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "Daily Trigger",
@@ -186506,15 +186536,15 @@
"triggerType": "Complex",
"integrations": [
"Limit",
- "Splitinbatches",
+ "Manual",
+ "Notion",
"Removeduplicates",
"Httprequest",
"Wait",
"Splitout",
- "Manual",
- "Notion"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Limit, Splitinbatches, and Removeduplicates for data processing. Uses 39 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Limit, Manual, and Notion for data processing. Uses 39 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -187538,14 +187568,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Httprequest",
- "Webhook",
"Code",
+ "Webhook",
+ "Httprequest",
+ "Noop",
"Gmail",
- "Noop"
+ "Slack"
],
- "description": "Complex multi-step automation that orchestrates Slack, Httprequest, and Webhook for data processing. Uses 39 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Httprequest for data processing. Uses 39 nodes and integrates with 6 services.",
"steps": [
{
"name": "PDFs to download",
@@ -187759,11 +187789,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Filter",
"Splitout",
- "Httprequest"
+ "Httprequest",
+ "Filter"
],
- "description": "Manual workflow that orchestrates Filter, Splitout, and Httprequest for data processing. Uses 7 nodes.",
+ "description": "Manual workflow that orchestrates Splitout, Httprequest, and Filter for data processing. Uses 7 nodes.",
"steps": [
{
"name": "Stripe | Get latest checkout sessions1",
@@ -188124,11 +188154,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
"Slack",
+ "Webhook",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Slack, and Httprequest for data processing. Uses 11 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Webhook, and Httprequest for data processing. Uses 11 nodes.",
"steps": [
{
"name": "Webhook",
@@ -188505,10 +188535,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Httprequest",
- "Splitout"
+ "Splitout",
+ "Httprequest"
],
- "description": "Manual workflow that connects Httprequest and Splitout for data processing. Uses 12 nodes.",
+ "description": "Manual workflow that connects Splitout and Httprequest for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Systeme | Get all contacts",
@@ -188754,10 +188784,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
- "Slack"
+ "Slack",
+ "Webhook"
],
- "description": "Webhook-triggered automation that connects Webhook and Slack for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that connects Slack and Webhook for data processing. Uses 10 nodes.",
"steps": [
{
"name": "Webhook to receive message",
@@ -188946,13 +188976,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Mqtt",
+ "Code",
"Ftp",
"Converttofile",
- "Schedule",
- "Code"
+ "Mqtt",
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Mqtt, Ftp, and Converttofile for data processing. Uses 6 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Code, Ftp, and Converttofile for data processing. Uses 6 nodes and integrates with 5 services.",
"steps": [
{
"name": "CRON Monday 2:45 am",
@@ -190244,16 +190274,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Splitout",
- "Manual",
- "Filter",
"Executeworkflow",
- "Googlesheets",
- "Code"
+ "Filter",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Splitout for data processing. Uses 42 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 42 nodes and integrates with 8 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -191531,16 +191561,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Httprequest",
- "Splitout",
- "Filter",
- "Manual",
- "Executeworkflow",
+ "Code",
"Googlesheets",
- "Code"
+ "Manual",
+ "Httprequest",
+ "Html",
+ "Splitout",
+ "Executeworkflow",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Splitout for data processing. Uses 37 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 37 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -192597,16 +192627,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Splitout",
- "Hackernews",
- "Filter",
- "Manual",
"Executeworkflow",
- "Googlesheets",
- "Code"
+ "Filter",
+ "Hackernews"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Splitout, and Hackernews for data processing. Uses 36 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 36 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -193185,14 +193215,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "N8N",
- "Aggregate",
- "Schedule",
- "Filter",
"Manual",
- "Gitlab"
+ "N8N",
+ "Filter",
+ "Gitlab",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates N8N, Aggregate, and Schedule for data processing. Uses 16 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, N8N, and Filter for data processing. Uses 16 nodes and integrates with 6 services.",
"steps": [
{
"name": "Backup Now - Manual Trigger",
@@ -194762,14 +194792,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Mqtt",
"Httprequest",
+ "Noop",
"Splitout",
- "Spotify",
+ "Mqtt",
"Filter",
- "Noop"
+ "Spotify"
],
- "description": "Complex multi-step automation that orchestrates Mqtt, Httprequest, and Splitout for data processing. Uses 26 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Httprequest, Noop, and Splitout for data processing. Uses 26 nodes and integrates with 6 services.",
"steps": [
{
"name": "MQTT Trigger - Remote Switch",
@@ -195540,15 +195570,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "N8N",
- "Extractfromfile",
- "Manual",
"Code",
"Gitlab",
- "Noop"
+ "Manual",
+ "Extractfromfile",
+ "Noop",
+ "N8N",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, N8N, and Extractfromfile for data processing. Uses 21 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Gitlab, and Manual for data processing. Uses 21 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking \"Test Workflow\"",
@@ -196131,15 +196161,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Html",
"Httprequest",
- "Splitout",
- "Filter",
"Noop",
- "Googledrive",
- "Gmail"
+ "Html",
+ "Splitout",
+ "Gmail",
+ "Filter",
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Splitout for data processing. Uses 13 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Httprequest, Noop, and Html for data processing. Uses 13 nodes and integrates with 7 services.",
"steps": [
{
"name": "Gmail Trigger",
@@ -196563,11 +196593,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
+ "Schedule",
"Todoist",
- "Filter",
- "Schedule"
+ "Filter"
],
- "description": "Scheduled automation that orchestrates Todoist, Filter, and Schedule for data processing. Uses 12 nodes.",
+ "description": "Scheduled automation that orchestrates Schedule, Todoist, and Filter for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Schedule Trigger",
@@ -197643,11 +197673,11 @@
"triggerType": "Complex",
"integrations": [
"Noop",
- "Respondtowebhook",
+ "Webhook",
"Slack",
- "Webhook"
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Noop, Respondtowebhook, and Slack for data processing. Uses 20 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Noop, Webhook, and Slack for data processing. Uses 20 nodes and integrates with 4 services.",
"steps": [
{
"name": "Verify Webhook",
@@ -198266,14 +198296,14 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Splitinbatches",
+ "Code",
"Httprequest",
- "N8N",
"Wait",
- "Schedule",
- "Code"
+ "N8N",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Splitinbatches, Httprequest, and N8N for data backup operations. Uses 9 nodes and integrates with 6 services.",
+ "description": "Scheduled automation that orchestrates Code, Httprequest, and Wait for data backup operations. Uses 9 nodes and integrates with 6 services.",
"steps": [
{
"name": "Run Daily at 2 AM",
@@ -198481,11 +198511,11 @@
"triggerType": "Scheduled",
"integrations": [
"Slack",
+ "Cron",
"Zendesk",
- "Manual",
- "Cron"
+ "Manual"
],
- "description": "Scheduled automation that orchestrates Slack, Zendesk, and Manual for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Slack, Cron, and Zendesk for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -199652,11 +199682,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
+ "Googlesheets",
"Telegram",
- "Executeworkflow",
- "Googlesheets"
+ "Executeworkflow"
],
- "description": "Webhook-triggered automation that orchestrates Telegram, Executeworkflow, and Googlesheets for data processing. Uses 29 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Telegram, and Executeworkflow for data processing. Uses 29 nodes.",
"steps": [
{
"name": "Trigger Data for Payment",
@@ -200597,13 +200627,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
+ "Manual",
"Datetime",
+ "Httprequest",
"Splitout",
- "Schedule",
- "Manual"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Datetime, and Splitout for data processing. Uses 29 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Datetime, and Httprequest for data processing. Uses 29 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -201154,14 +201184,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Webhook",
- "Schedule",
"Code",
+ "Webhook",
+ "Html",
"Airtable",
- "Gmail"
+ "Gmail",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Html, Webhook, and Schedule for data processing. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Html for data processing. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "Everyday at 7PM",
@@ -201904,17 +201934,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Notion",
- "Html",
- "Aggregate",
"Schedule",
"Manual",
+ "Notion",
+ "Pushover",
+ "Html",
+ "Emailsend",
"Filter",
"Sort",
- "Pushover",
- "Emailsend"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Notion, Html, and Aggregate for data processing. Uses 27 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Schedule, Manual, and Notion for data processing. Uses 27 nodes and integrates with 9 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -203149,10 +203179,10 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Notion",
- "Code"
+ "Code",
+ "Notion"
],
- "description": "Webhook-triggered automation that connects Notion and Code for data processing. Uses 24 nodes.",
+ "description": "Webhook-triggered automation that connects Code and Notion for data processing. Uses 24 nodes.",
"steps": [
{
"name": "Set input data",
@@ -203527,11 +203557,11 @@
"triggerType": "Complex",
"integrations": [
"Googledrive",
- "Manual",
"Editimage",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Googledrive, Manual, and Editimage for data processing. Uses 13 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googledrive, Editimage, and Httprequest for data processing. Uses 13 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -204301,11 +204331,11 @@
"triggerType": "Complex",
"integrations": [
"Form",
- "Respondtowebhook",
+ "Httprequest",
"S3",
- "Httprequest"
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Form, Respondtowebhook, and S3 for data processing. Uses 19 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Form, Httprequest, and S3 for data processing. Uses 19 nodes and integrates with 4 services.",
"steps": [
{
"name": "Vivid Pop Explosion",
@@ -204763,11 +204793,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Manual",
"Editimage",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Code, Manual, and Editimage for data processing. Uses 16 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Editimage, and Httprequest for data processing. Uses 16 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -205836,18 +205866,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
+ "Manual",
"Linear",
- "Splitinbatches",
"Httprequest",
"Wait",
- "Aggregate",
- "Schedule",
"Filter",
- "Manual",
- "Googlesheets",
- "Googledrive"
+ "Googledrive",
+ "Splitinbatches",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Linear, Splitinbatches, and Httprequest for data processing. Uses 34 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Linear for data processing. Uses 34 nodes and integrates with 10 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -206223,12 +206253,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Splitout",
"Googledrive",
- "Manual",
"Editimage",
- "Splitout"
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Googledrive, Manual, and Editimage for data processing. Uses 11 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Splitout, Googledrive, and Editimage for data processing. Uses 11 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -206784,16 +206814,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Compression",
"Code",
+ "Compression",
"Manual",
- "Sort",
+ "Editimage",
+ "Httprequest",
"Googledrive",
- "Editimage"
+ "Sort",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Compression for data processing. Uses 20 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Compression, and Manual for data processing. Uses 20 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -208034,15 +208064,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Httprequest",
- "Venafitlsprotectcloud",
- "Webhook",
"Respondtowebhook",
+ "Webhook",
+ "Httprequest",
+ "Noop",
"Executeworkflow",
- "Noop"
+ "Slack",
+ "Venafitlsprotectcloud"
],
- "description": "Complex multi-step automation that orchestrates Slack, Httprequest, and Venafitlsprotectcloud for data processing. Uses 38 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Webhook, and Httprequest for data processing. Uses 38 nodes and integrates with 7 services.",
"steps": [
{
"name": "Close Modal Popup",
@@ -208812,12 +208842,12 @@
"triggerType": "Complex",
"integrations": [
"Dropbox",
+ "Manual",
"Httprequest",
"Wait",
- "Manual",
"Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates Dropbox, Httprequest, and Wait for data processing. Uses 20 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Dropbox, Manual, and Httprequest for data processing. Uses 20 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -209574,16 +209604,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Openai",
+ "Code",
"Httprequest",
+ "Html",
"Wait",
"Splitout",
+ "Gmail",
"Schedule",
- "Code",
- "Gmail"
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Html, Openai, and Httprequest for data processing. Uses 21 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Html for data processing. Uses 21 nodes and integrates with 8 services.",
"steps": [
{
"name": "Schedule",
@@ -210854,19 +210884,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Strapi",
"Webflow",
- "Splitinbatches",
- "Httprequest",
- "Aggregate",
- "Wordpress",
- "Splitout",
- "Manual",
- "Executeworkflow",
"Googlesheets",
- "Googledrive"
+ "Manual",
+ "Wordpress",
+ "Httprequest",
+ "Splitout",
+ "Executeworkflow",
+ "Strapi",
+ "Googledrive",
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Strapi, Webflow, and Splitinbatches for data processing. Uses 36 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Webflow, Googlesheets, and Manual for data processing. Uses 36 nodes and integrates with 11 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -211460,14 +211490,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Httprequest",
- "Webhook",
- "Splitout",
+ "Telegram",
"Manual",
- "Telegram"
+ "Webhook",
+ "Httprequest",
+ "Splitout",
+ "Slack"
],
- "description": "Complex multi-step automation that orchestrates Slack, Httprequest, and Webhook for data processing. Uses 19 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Manual, and Webhook for data processing. Uses 19 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -212124,12 +212154,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Splitout",
"Emailreadimap",
- "Filter",
"Httprequest",
- "Splitout"
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Emailreadimap, Filter, and Httprequest for data processing. Uses 11 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Splitout, Emailreadimap, and Httprequest for data processing. Uses 11 nodes and integrates with 4 services.",
"steps": [
{
"name": "Get Mailbox IDs",
@@ -212614,10 +212644,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Code, Httprequest, and Schedule for data processing. Uses 18 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Schedule, and Httprequest for data processing. Uses 18 nodes.",
"steps": [
{
"name": "Schedule Trigger",
@@ -213176,10 +213206,10 @@
"triggerType": "Manual",
"integrations": [
"Filter",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Filter, Manual, and Httprequest for data processing. Uses 16 nodes.",
+ "description": "Manual workflow that orchestrates Filter, Httprequest, and Manual for data processing. Uses 16 nodes.",
"steps": [
{
"name": "User ID",
@@ -214603,12 +214633,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Respondtowebhook",
"Webhook",
- "Httprequest"
+ "Html",
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Html, Respondtowebhook, and Webhook for data processing. Uses 11 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Html, and Httprequest for data processing. Uses 11 nodes and integrates with 4 services.",
"steps": [
{
"name": "get all masked emails",
@@ -215144,14 +215174,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
+ "Awss3",
+ "Manual",
"Httprequest",
"Splitout",
"Schedule",
- "Awss3",
- "Manual"
+ "Stopanderror"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Httprequest, and Splitout for data processing. Uses 17 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Awss3, Manual, and Httprequest for data processing. Uses 17 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -215374,12 +215404,12 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Compression",
"Aggregate",
"Awss3",
+ "Compression",
"Manual"
],
- "description": "Manual workflow that orchestrates Compression, Aggregate, and Awss3 for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Aggregate, Awss3, and Compression for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -215954,11 +215984,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Supabase",
"Telegram",
+ "Supabase",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Supabase, Telegram, and Httprequest for data processing. Uses 17 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Telegram, Supabase, and Httprequest for data processing. Uses 17 nodes.",
"steps": [
{
"name": "Get New Message",
@@ -217303,13 +217333,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Microsoftoutlook",
"Splitinbatches",
- "Markdown",
"Manual",
- "Filter"
+ "Filter",
+ "Markdown",
+ "Microsoftoutlook"
],
- "description": "Complex multi-step automation that orchestrates Microsoftoutlook, Splitinbatches, and Markdown for data processing. Uses 36 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Splitinbatches, Manual, and Filter for data processing. Uses 36 nodes and integrates with 5 services.",
"steps": [
{
"name": "Markdown1",
@@ -217704,15 +217734,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
"Httprequest",
"Wait",
- "Schedule",
+ "Gmail",
"Filter",
- "Code",
- "Gmail"
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 12 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Wait for data processing. Uses 12 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -218704,11 +218734,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Manual",
"Editimage",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Code, Manual, and Editimage for data processing. Uses 16 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Editimage, and Httprequest for data processing. Uses 16 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -219270,12 +219300,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Googlecalendartool",
- "Gmailtool",
"Telegram",
- "Baserowtool"
+ "Baserowtool",
+ "Googlecalendartool",
+ "Gmailtool"
],
- "description": "Complex multi-step automation that orchestrates Googlecalendartool, Gmailtool, and Telegram for data processing. Uses 15 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Baserowtool, and Googlecalendartool for data processing. Uses 15 nodes and integrates with 4 services.",
"steps": [
{
"name": "Listen for incoming events",
@@ -221105,21 +221135,21 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Airtable",
- "Httprequest",
- "Airtabletool",
- "Sort",
- "Aggregate",
- "Extractfromfile",
- "Compression",
- "Converttofile",
- "Manual",
- "Executeworkflow",
"Code",
+ "Airtabletool",
+ "Compression",
+ "Manual",
"Editimage",
- "Noop"
+ "Httprequest",
+ "Noop",
+ "Extractfromfile",
+ "Airtable",
+ "Converttofile",
+ "Executeworkflow",
+ "Sort",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Airtable, Httprequest, and Airtabletool for data processing. Uses 50 nodes and integrates with 13 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Airtabletool, and Compression for data processing. Uses 50 nodes and integrates with 13 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -221869,12 +221899,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Manual",
- "Extractfromfile",
"Whatsapp",
- "Httprequest"
+ "Httprequest",
+ "Extractfromfile",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Manual, Extractfromfile, and Whatsapp for data processing. Uses 28 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Whatsapp, Httprequest, and Extractfromfile for data processing. Uses 28 nodes and integrates with 4 services.",
"steps": [
{
"name": "WhatsApp Trigger",
@@ -222978,11 +223008,11 @@
"triggerType": "Complex",
"integrations": [
"Wait",
+ "Splitout",
"Whatsapp",
- "Httprequest",
- "Splitout"
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Wait, Whatsapp, and Httprequest for data processing. Uses 35 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Wait, Splitout, and Whatsapp for data processing. Uses 35 nodes and integrates with 4 services.",
"steps": [
{
"name": "WhatsApp Trigger",
@@ -223691,18 +223721,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Manual",
+ "Editimage",
"Httprequest",
"Wait",
- "Aggregate",
- "Converttofile",
"Splitout",
- "Manual",
- "Code",
+ "Converttofile",
"Googledrive",
- "Editimage"
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 21 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Editimage for data processing. Uses 21 nodes and integrates with 10 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -224910,15 +224940,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Jiratool",
- "Aggregate",
- "Notiontool",
- "Schedule",
"Jira",
- "Executeworkflow"
+ "Notiontool",
+ "Jiratool",
+ "Executeworkflow",
+ "Slack",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Slack, Jiratool, and Aggregate for data processing. Uses 36 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Jira, Notiontool, and Jiratool for data processing. Uses 36 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -225947,16 +225977,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "N8N",
- "Schedule",
- "Itemlists",
- "Movebinarydata",
- "Filter",
"Code",
- "Googledrive"
+ "Movebinarydata",
+ "N8N",
+ "Filter",
+ "Itemlists",
+ "Googledrive",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, N8N, and Schedule for data processing. Uses 33 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Movebinarydata, and N8N for data processing. Uses 33 nodes and integrates with 8 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -226307,10 +226337,10 @@
"triggerType": "Webhook",
"integrations": [
"Webhook",
- "Respondtowebhook",
- "Httprequest"
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and Httprequest for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Httprequest, and Respondtowebhook for data processing. Uses 7 nodes.",
"steps": [
{
"name": "create random masked email",
@@ -226667,12 +226697,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
- "Noop",
"Manual",
- "Splitout"
+ "Splitout",
+ "Aggregate",
+ "Noop"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Noop, and Manual for data processing. Uses 15 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Splitout, and Aggregate for data processing. Uses 15 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -227222,14 +227252,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Splitout",
- "Filter",
- "Manual",
"Code",
- "Noop"
+ "Manual",
+ "Httprequest",
+ "Noop",
+ "Splitout",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Splitout, and Filter for data processing. Uses 19 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 19 nodes and integrates with 6 services.",
"steps": [
{
"name": "Separate",
@@ -227701,14 +227731,14 @@
"triggerType": "Complex",
"integrations": [
"Limit",
- "Splitinbatches",
+ "Manual",
"Httprequest",
+ "Noop",
"Wait",
"Splitout",
- "Manual",
- "Noop"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Limit, Splitinbatches, and Httprequest for data processing. Uses 17 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Limit, Manual, and Httprequest for data processing. Uses 17 nodes and integrates with 7 services.",
"steps": [
{
"name": "Example fields from data source",
@@ -227945,12 +227975,12 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Noop",
- "Twilio",
+ "Googlesheets",
"Cron",
- "Googlesheets"
+ "Twilio",
+ "Noop"
],
- "description": "Scheduled automation that orchestrates Noop, Twilio, and Cron for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Googlesheets, Cron, and Twilio for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "Daily Trigger",
@@ -228350,10 +228380,10 @@
"triggerType": "Scheduled",
"integrations": [
"Cron",
- "Filter",
- "Httprequest"
+ "Httprequest",
+ "Filter"
],
- "description": "Scheduled automation that orchestrates Cron, Filter, and Httprequest for data processing. Uses 17 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Httprequest, and Filter for data processing. Uses 17 nodes.",
"steps": [
{
"name": "List All Droplets",
@@ -229045,12 +229075,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Notion",
"Slack",
- "Filter",
- "Cron"
+ "Notion",
+ "Cron",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Notion, Slack, and Filter for data processing. Uses 24 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Slack, Notion, and Cron for data processing. Uses 24 nodes and integrates with 4 services.",
"steps": [
{
"name": "Schedule Mon - Friday @ 09:00am",
@@ -229938,18 +229968,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Slack",
- "Httprequest",
- "Nocodb",
- "Splitout",
- "Schedule",
- "Manual",
- "Googlesheets",
"Code",
- "Airtable"
+ "Googlesheets",
+ "Manual",
+ "Httprequest",
+ "Html",
+ "Splitout",
+ "Airtable",
+ "Nocodb",
+ "Slack",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Html, Slack, and Httprequest for data processing. Uses 33 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 33 nodes and integrates with 10 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -230320,11 +230350,11 @@
"triggerType": "Complex",
"integrations": [
"Noop",
- "Manual",
"Splitout",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Noop, Manual, and Splitout for data processing. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Noop, Splitout, and Httprequest for data processing. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "Set >=20 Keywords",
@@ -230648,13 +230678,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Filemaker",
- "Webhook",
"Crypto",
"Respondtowebhook",
- "Movebinarydata"
+ "Webhook",
+ "Movebinarydata",
+ "Filemaker"
],
- "description": "Complex multi-step automation that orchestrates Filemaker, Webhook, and Crypto for data processing. Uses 11 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Crypto, Respondtowebhook, and Webhook for data processing. Uses 11 nodes and integrates with 5 services.",
"steps": [
{
"name": "Success",
@@ -230824,11 +230854,11 @@
"triggerType": "Scheduled",
"integrations": [
"Elasticsearch",
- "Noop",
"Cron",
- "Httprequest"
+ "Httprequest",
+ "Noop"
],
- "description": "Scheduled automation that orchestrates Elasticsearch, Noop, and Cron for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Elasticsearch, Cron, and Httprequest for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Cron Trigger",
@@ -231297,10 +231327,10 @@
"integrations": [
"Noop",
"Googledrive",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Noop, Googledrive, and Manual for data processing. Uses 18 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Noop, Googledrive, and Httprequest for data processing. Uses 18 nodes and integrates with 4 services.",
"steps": [
{
"name": "Image URL",
@@ -232693,17 +232723,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
+ "Schedule",
"Limit",
"Httprequest",
+ "Noop",
"Splitout",
- "Schedule",
- "Spotify",
"Filter",
- "Googlesheets",
- "Code",
- "Noop"
+ "Spotify"
],
- "description": "Complex multi-step automation that orchestrates Limit, Httprequest, and Splitout for data processing. Uses 37 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Schedule for data processing. Uses 37 nodes and integrates with 9 services.",
"steps": [
{
"name": "Monthly Trigger",
@@ -233583,11 +233613,11 @@
"triggerType": "Complex",
"integrations": [
"Webhook",
- "Respondtowebhook",
"Executeworkflow",
- "Httprequest"
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Respondtowebhook, and Executeworkflow for data processing. Uses 23 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Executeworkflow, and Httprequest for data processing. Uses 23 nodes and integrates with 4 services.",
"steps": [
{
"name": "Close Modal Popup",
@@ -234479,16 +234509,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Slack",
- "Httprequest",
- "Wait",
"Manual",
- "Executeworkflow",
+ "Httprequest",
"Noop",
- "Xml"
+ "Wait",
+ "Xml",
+ "Executeworkflow",
+ "Slack",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Slack, and Httprequest for data processing. Uses 28 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Httprequest, and Noop for data processing. Uses 28 nodes and integrates with 8 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -235285,14 +235315,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Splitinbatches",
"Httprequest",
"Wait",
+ "Xml",
"Executeworkflow",
- "Xml"
+ "Slack",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Slack, Splitinbatches, and Httprequest for data processing. Uses 22 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Xml for data processing. Uses 22 nodes and integrates with 6 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -235679,10 +235709,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Noop",
- "Httprequest"
+ "Httprequest",
+ "Noop"
],
- "description": "Manual workflow that connects Noop and Httprequest for data processing. Uses 11 nodes.",
+ "description": "Manual workflow that connects Httprequest and Noop for data processing. Uses 11 nodes.",
"steps": [
{
"name": "Sticky Note50",
@@ -236047,13 +236077,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Manual",
"Youtube",
"Splitinbatches",
- "Comparedatasets",
"Spotify",
- "Manual"
+ "Comparedatasets"
],
- "description": "Complex multi-step automation that orchestrates Youtube, Splitinbatches, and Comparedatasets for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Youtube, and Splitinbatches for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -236299,12 +236329,12 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Noop",
"Splitinbatches",
+ "Schedule",
"Httprequest",
- "Schedule"
+ "Noop"
],
- "description": "Scheduled automation that orchestrates Noop, Splitinbatches, and Httprequest for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Splitinbatches, Schedule, and Httprequest for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -237811,16 +237841,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Aggregate",
"Code",
- "Converttofile",
- "Splitout",
"Googlesheets",
+ "Form",
+ "Splitout",
+ "Converttofile",
+ "Googledrive",
"Sort",
- "Googledrive"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Form, Aggregate, and Code for data processing. Uses 39 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Form for data processing. Uses 39 nodes and integrates with 8 services.",
"steps": [
{
"name": "receive_topic",
@@ -238160,10 +238190,10 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that connects Httprequest and Schedule for data processing. Uses 5 nodes.",
+ "description": "Scheduled automation that connects Schedule and Httprequest for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Schedule Trigger",
@@ -239123,19 +239153,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Thehiveproject",
+ "Manual",
"Httprequest",
- "N8N",
"Wait",
"Splitout",
- "Schedule",
- "Thehiveproject",
- "Filter",
- "Manual",
+ "Xml",
+ "N8N",
"Executeworkflow",
- "Xml"
+ "Filter",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and N8N for data processing. Uses 23 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Thehiveproject, Manual, and Httprequest for data processing. Uses 23 nodes and integrates with 11 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -239704,13 +239734,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "N8N",
- "Schedule",
"Code",
- "Github"
+ "Github",
+ "N8N",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, N8N, and Schedule for data backup operations. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Github, and N8N for data backup operations. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -240254,16 +240284,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Wait",
- "Webhook",
- "Respondtowebhook",
- "Manual",
"Code",
- "Noop"
+ "Manual",
+ "Respondtowebhook",
+ "Webhook",
+ "Httprequest",
+ "Noop",
+ "Wait",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 18 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Respondtowebhook for data processing. Uses 18 nodes and integrates with 8 services.",
"steps": [
{
"name": "Call Resume on Parent Workflow",
@@ -240524,13 +240554,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Httprequest",
- "Webhook",
- "Schedule",
"Code",
- "Noop"
+ "Webhook",
+ "Httprequest",
+ "Noop",
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Httprequest, Webhook, and Schedule for data processing. Uses 9 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Code, Webhook, and Httprequest for data processing. Uses 9 nodes and integrates with 5 services.",
"steps": [
{
"name": "if token is valid",
@@ -240674,12 +240704,12 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Zoom",
- "Wordpress",
"Slack",
- "Schedule"
+ "Schedule",
+ "Wordpress",
+ "Zoom"
],
- "description": "Scheduled automation that orchestrates Zoom, Wordpress, and Slack for data processing. Uses 4 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Slack, Schedule, and Wordpress for data processing. Uses 4 nodes and integrates with 4 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -241212,10 +241242,10 @@
"integrations": [
"Webhook",
"Supabase",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Supabase, and Manual for data processing. Uses 21 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Supabase, and Httprequest for data processing. Uses 21 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -242106,12 +242136,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Emailsend",
"Crypto",
+ "Googlesheets",
"Form",
- "Googlesheets"
+ "Emailsend"
],
- "description": "Complex multi-step automation that orchestrates Emailsend, Crypto, and Form for data processing. Uses 19 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Crypto, Googlesheets, and Form for data processing. Uses 19 nodes and integrates with 4 services.",
"steps": [
{
"name": "Waitlist Form",
@@ -242469,12 +242499,12 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Httprequest",
- "Manual",
"Splitout",
- "Googlesheets"
+ "Googlesheets",
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Httprequest, Manual, and Splitout for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Splitout, Googlesheets, and Httprequest for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -242731,10 +242761,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Webflow",
- "Googlesheets"
+ "Googlesheets",
+ "Webflow"
],
- "description": "Webhook-triggered automation that orchestrates Code, Webflow, and Googlesheets for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Googlesheets, and Webflow for data processing. Uses 7 nodes.",
"steps": [
{
"name": "On Form Submission",
@@ -243584,11 +243614,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
+ "Schedule",
"Discord",
- "Httprequest",
- "Schedule"
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Discord, Httprequest, and Schedule for data processing. Uses 8 nodes.",
+ "description": "Scheduled automation that orchestrates Schedule, Discord, and Httprequest for data processing. Uses 8 nodes.",
"steps": [
{
"name": "Schedule Trigger",
@@ -244895,16 +244925,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Html",
- "Webhook",
- "Splitout",
"Crypto",
+ "Googlesheets",
+ "Form",
"Respondtowebhook",
- "Redis",
- "Googlesheets"
+ "Webhook",
+ "Html",
+ "Splitout",
+ "Redis"
],
- "description": "Complex multi-step automation that orchestrates Form, Html, and Webhook for data processing. Uses 40 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Crypto, Googlesheets, and Form for data processing. Uses 40 nodes and integrates with 8 services.",
"steps": [
{
"name": "Start Interview",
@@ -245717,19 +245747,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Googlesheets",
+ "Manual",
"Removeduplicates",
"Httprequest",
"Wait",
- "Aggregate",
"Splitout",
- "Filter",
- "Manual",
"Executeworkflow",
- "Googlesheets",
- "Code"
+ "Filter",
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Removeduplicates, and Httprequest for data processing. Uses 26 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 26 nodes and integrates with 11 services.",
"steps": [
{
"name": "Starts scraper workflow",
@@ -246387,18 +246417,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Readwritefile",
+ "Extractfromfile",
"Httprequest",
"Wait",
- "Extractfromfile",
- "Converttofile",
"Splitout",
- "Schedule",
- "Code",
"Noop",
- "Readwritefile"
+ "Converttofile",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 19 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Readwritefile, and Extractfromfile for data processing. Uses 19 nodes and integrates with 10 services.",
"steps": [
{
"name": "Each 60 minutes",
@@ -246779,10 +246809,10 @@
"triggerType": "Webhook",
"integrations": [
"Datetime",
- "Rssfeedread",
- "Httprequest"
+ "Httprequest",
+ "Rssfeedread"
],
- "description": "Webhook-triggered automation that orchestrates Datetime, Rssfeedread, and Httprequest for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Datetime, Httprequest, and Rssfeedread for data processing. Uses 10 nodes.",
"steps": [
{
"name": "RSS Feed Trigger",
@@ -247105,11 +247135,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Httprequest",
"Extractfromfile",
- "Manual",
- "Httprequest"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Extractfromfile, Manual, and Httprequest for data processing. Uses 11 nodes.",
+ "description": "Manual workflow that orchestrates Httprequest, Extractfromfile, and Manual for data processing. Uses 11 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -248430,14 +248460,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Snowflake",
"Httprequest",
- "Slack",
"Splitout",
+ "Snowflake",
+ "Slack",
+ "Splitinbatches",
"Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Snowflake, and Httprequest for data processing. Uses 35 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Httprequest, Splitout, and Snowflake for data processing. Uses 35 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -253052,14 +253082,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Httprequest",
- "Webhook",
"Thehiveproject",
"Respondtowebhook",
- "Noop"
+ "Webhook",
+ "Httprequest",
+ "Noop",
+ "Slack"
],
- "description": "Complex multi-step automation that orchestrates Slack, Httprequest, and Webhook for data processing. Uses 63 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Thehiveproject, Respondtowebhook, and Webhook for data processing. Uses 63 nodes and integrates with 6 services.",
"steps": [
{
"name": "TheHive Trigger",
@@ -253750,13 +253780,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Linear",
- "Slack",
"Httprequest",
"Splitout",
- "Code"
+ "Slack"
],
- "description": "Complex multi-step automation that orchestrates Linear, Slack, and Httprequest to synchronize data. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Linear, and Httprequest to synchronize data. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "Your Linear Project 2",
@@ -254890,12 +254920,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Extractfromfile",
"Airtable",
- "Httprequest"
+ "Form",
+ "Httprequest",
+ "Extractfromfile"
],
- "description": "Complex multi-step automation that orchestrates Form, Extractfromfile, and Airtable for data processing. Uses 23 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Airtable, Form, and Httprequest for data processing. Uses 23 nodes and integrates with 4 services.",
"steps": [
{
"name": "Step 1 of 2 - Upload CV",
@@ -255700,12 +255730,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
"Googlecalendar",
- "Executeworkflow",
- "Gmail"
+ "Gmail",
+ "Form",
+ "Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates Form, Googlecalendar, and Executeworkflow for data processing. Uses 25 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlecalendar, Gmail, and Form for data processing. Uses 25 nodes and integrates with 4 services.",
"steps": [
{
"name": "n8n Form Trigger",
@@ -256522,11 +256552,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Form",
"Slack",
- "Googlesheets"
+ "Googlesheets",
+ "Form"
],
- "description": "Webhook-triggered automation that orchestrates Form, Slack, and Googlesheets for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Googlesheets, and Form for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Sign Up Form",
@@ -258447,17 +258477,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Httprequest",
- "Aggregate",
- "Splitout",
- "Schedule",
"Whatsapp",
- "Executeworkflow",
"Googlecalendar",
- "Gmail"
+ "Httprequest",
+ "Html",
+ "Splitout",
+ "Gmail",
+ "Executeworkflow",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Aggregate for data processing. Uses 61 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Whatsapp, Googlecalendar, and Httprequest for data processing. Uses 61 nodes and integrates with 9 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -259623,17 +259653,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Slack",
- "Httprequest",
- "Aggregate",
+ "Respondtowebhook",
"Webhook",
+ "Httprequest",
+ "Noop",
"S3",
"Splitout",
- "Respondtowebhook",
- "Noop"
+ "Slack",
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Slack, and Httprequest for data processing. Uses 29 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Webhook, and Httprequest for data processing. Uses 29 nodes and integrates with 9 services.",
"steps": [
{
"name": "Close Modal Popup",
@@ -260008,11 +260038,11 @@
"triggerType": "Scheduled",
"integrations": [
"Code",
- "Manual",
+ "Schedule",
"Httprequest",
- "Schedule"
+ "Manual"
],
- "description": "Scheduled automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 10 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Code, Schedule, and Httprequest for data processing. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "Friday 8pm",
@@ -260274,12 +260304,12 @@
"triggerType": "Scheduled",
"integrations": [
"Httprequest",
- "Markdown",
"Splitout",
- "Schedule",
- "Emailsend"
+ "Emailsend",
+ "Markdown",
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Httprequest, Markdown, and Splitout for data processing. Uses 8 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Httprequest, Splitout, and Emailsend for data processing. Uses 8 nodes and integrates with 5 services.",
"steps": [
{
"name": "Daily Trigger",
@@ -261636,15 +261666,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Form",
"Httprequest",
- "Aggregate",
+ "Airtable",
"Splitout",
"Filter",
- "Code",
- "Airtable"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Aggregate for data processing. Uses 34 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Httprequest for data processing. Uses 34 nodes and integrates with 7 services.",
"steps": [
{
"name": "On form submission",
@@ -263644,15 +263674,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Hubspot",
- "Splitinbatches",
- "Httprequest",
- "Postgres",
- "Schedule",
+ "Code",
"Googlesheets",
- "Code"
+ "Hubspot",
+ "Postgres",
+ "Httprequest",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Hubspot, Splitinbatches, and Httprequest for data processing. Uses 23 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Hubspot for data processing. Uses 23 nodes and integrates with 7 services.",
"steps": [
{
"name": "Code",
@@ -264766,12 +264796,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Splitout",
"Googlesheets",
"Schedule",
- "Splitout",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Googlesheets, Schedule, and Splitout for data processing. Uses 18 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Splitout, Googlesheets, and Schedule for data processing. Uses 18 nodes and integrates with 4 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -266408,17 +266438,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Form",
"Executiondata",
- "Schedule",
- "Filter",
- "Executeworkflow",
"Editimage",
- "Code",
"Airtable",
- "Gmail"
+ "Gmail",
+ "Executeworkflow",
+ "Filter",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Form, Executiondata, and Schedule for data processing. Uses 32 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Executiondata for data processing. Uses 32 nodes and integrates with 9 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -267374,15 +267404,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
"Removeduplicates",
"Httprequest",
+ "Html",
"Splitout",
- "Schedule",
"Airtable",
- "Gmail"
+ "Gmail",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Html, Removeduplicates, and Httprequest for data processing. Uses 24 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Removeduplicates, Httprequest, and Html for data processing. Uses 24 nodes and integrates with 7 services.",
"steps": [
{
"name": "Everyday @ 9am",
@@ -268231,11 +268261,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Noop",
"Calendly",
- "Splitout"
+ "Splitout",
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Noop, Calendly, and Splitout for data processing. Uses 19 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Calendly, Splitout, and Noop for data processing. Uses 19 nodes.",
"steps": [
{
"name": "Subscribe invitee booking in KlickTipp",
@@ -269150,11 +269180,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Noop",
"Calendly",
- "Splitout"
+ "Splitout",
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Noop, Calendly, and Splitout for data processing. Uses 19 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Calendly, Splitout, and Noop for data processing. Uses 19 nodes.",
"steps": [
{
"name": "Subscribe invitee booking in KlickTipp",
@@ -269469,11 +269499,11 @@
"triggerType": "Scheduled",
"integrations": [
"Noop",
- "Manual",
+ "Schedule",
"N8N",
- "Schedule"
+ "Manual"
],
- "description": "Scheduled automation that orchestrates Noop, Manual, and N8N for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Noop, Schedule, and N8N for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -270272,15 +270302,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
"Removeduplicates",
+ "Splitout",
+ "Airtable",
"Slack",
"Graphql",
- "Splitout",
- "Schedule",
- "Airtable"
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Removeduplicates, and Slack for data processing. Uses 19 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Removeduplicates, Splitout, and Airtable for data processing. Uses 19 nodes and integrates with 7 services.",
"steps": [
{
"name": "Airtable Trigger",
@@ -271012,16 +271042,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
"Limit",
- "Httprequest",
- "Aggregate",
- "Markdown",
- "Splitout",
"Manual",
- "Wordpress"
+ "Httprequest",
+ "Html",
+ "Wordpress",
+ "Splitout",
+ "Markdown",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Html, Limit, and Httprequest for data processing. Uses 27 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Limit, Manual, and Httprequest for data processing. Uses 27 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -271496,11 +271526,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Manual",
"Editimage",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Code, Manual, and Editimage for data processing. Uses 14 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Editimage, and Httprequest for data processing. Uses 14 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -272051,13 +272081,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Supabase",
- "Httprequest",
"Webhook",
"Postgres",
+ "Httprequest",
+ "Supabase",
"Postgrestool"
],
- "description": "Complex multi-step automation that orchestrates Supabase, Httprequest, and Webhook for data processing. Uses 19 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Postgres, and Httprequest for data processing. Uses 19 nodes and integrates with 5 services.",
"steps": [
{
"name": "Scenario 2 Start - Webhook",
@@ -272800,17 +272830,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "N8N",
- "Httprequest",
- "Schedule",
- "Manual",
- "Executeworkflow",
"Code",
+ "Manual",
"Github",
- "Noop"
+ "Httprequest",
+ "Noop",
+ "N8N",
+ "Executeworkflow",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, N8N, and Httprequest for data processing. Uses 23 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Github for data processing. Uses 23 nodes and integrates with 9 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -276614,21 +276644,21 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Googlesheets",
+ "Executiondata",
+ "Manual",
"Removeduplicates",
"Httprequest",
"Wait",
- "Aggregate",
- "Executiondata",
"Splitout",
- "Manual",
- "Filter",
"Executeworkflow",
- "Googlesheets",
- "Code",
- "Googledrive"
+ "Filter",
+ "Googledrive",
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Removeduplicates, and Httprequest for data processing. Uses 88 nodes and integrates with 13 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Executiondata for data processing. Uses 88 nodes and integrates with 13 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -277414,13 +277444,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
"Code",
- "Googledrive",
- "Airtable"
+ "Webhook",
+ "Httprequest",
+ "Airtable",
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Code for data processing. Uses 18 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Httprequest for data processing. Uses 18 nodes and integrates with 5 services.",
"steps": [
{
"name": "Google Drive Trigger",
@@ -278052,13 +278082,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Microsoftoutlook",
- "Httprequest",
- "Jira",
"Code",
- "Gmail"
+ "Jira",
+ "Httprequest",
+ "Gmail",
+ "Microsoftoutlook"
],
- "description": "Complex multi-step automation that orchestrates Microsoftoutlook, Httprequest, and Jira for data processing. Uses 18 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Jira, and Httprequest for data processing. Uses 18 nodes and integrates with 5 services.",
"steps": [
{
"name": "Gmail Trigger",
@@ -278954,14 +278984,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Microsoftoutlook",
- "Httprequest",
- "Converttofile",
- "Jira",
"Code",
- "Gmail"
+ "Jira",
+ "Httprequest",
+ "Gmail",
+ "Converttofile",
+ "Microsoftoutlook"
],
- "description": "Complex multi-step automation that orchestrates Microsoftoutlook, Httprequest, and Converttofile for data processing. Uses 25 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Jira, and Httprequest for data processing. Uses 25 nodes and integrates with 6 services.",
"steps": [
{
"name": "Gmail Trigger",
@@ -279998,16 +280028,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "N8N",
- "Httprequest",
- "Webhook",
- "Schedule",
- "Respondtowebhook",
"Manual",
- "Noop"
+ "Respondtowebhook",
+ "Webhook",
+ "Httprequest",
+ "Noop",
+ "N8N",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, N8N, and Httprequest for data processing. Uses 34 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Respondtowebhook, and Webhook for data processing. Uses 34 nodes and integrates with 8 services.",
"steps": [
{
"name": "Dummy Node",
@@ -281439,16 +281469,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Limit",
- "Microsoftoutlook",
- "Httprequest",
- "Aggregate",
- "Webhook",
- "Respondtowebhook",
"Code",
- "Noop"
+ "Limit",
+ "Respondtowebhook",
+ "Webhook",
+ "Httprequest",
+ "Noop",
+ "Microsoftoutlook",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Limit, Microsoftoutlook, and Httprequest for data processing. Uses 41 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Limit, and Respondtowebhook for data processing. Uses 41 nodes and integrates with 8 services.",
"steps": [
{
"name": "Trigger on New Email",
@@ -282966,16 +282996,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Limit",
- "Httprequest",
- "Aggregate",
- "Webhook",
- "Respondtowebhook",
"Code",
+ "Limit",
+ "Respondtowebhook",
+ "Webhook",
+ "Httprequest",
+ "Noop",
"Gmail",
- "Noop"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Limit, Httprequest, and Aggregate for data processing. Uses 40 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Limit, and Respondtowebhook for data processing. Uses 40 nodes and integrates with 8 services.",
"steps": [
{
"name": "Gmail Trigger",
@@ -283691,15 +283721,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
"Limit",
"Removeduplicates",
- "Strava",
"Sort",
- "Schedule",
- "Googlesheets",
- "Code"
+ "Strava",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Limit, Removeduplicates, and Strava for data processing. Uses 13 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Limit for data processing. Uses 13 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -284120,15 +284150,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Youtube",
- "Webhook",
- "Summarize",
- "Splitout",
- "Respondtowebhook",
+ "Code",
"Telegram",
- "Code"
+ "Respondtowebhook",
+ "Webhook",
+ "Youtube",
+ "Summarize",
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Youtube, Webhook, and Summarize for data processing. Uses 12 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Respondtowebhook for data processing. Uses 12 nodes and integrates with 7 services.",
"steps": [
{
"name": "Webhook",
@@ -284718,15 +284748,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Googlecalendartool",
- "Webhook",
- "Splitout",
- "Executeworkflow",
"Gmailtool",
- "Airtable"
+ "Webhook",
+ "Googlecalendartool",
+ "Httprequest",
+ "Splitout",
+ "Airtable",
+ "Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Googlecalendartool, and Webhook for data processing. Uses 18 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Gmailtool, Webhook, and Googlecalendartool for data processing. Uses 18 nodes and integrates with 7 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -284932,10 +284962,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Graphql"
+ "Graphql",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Graphql for data processing. Uses 7 nodes.",
+ "description": "Manual workflow that connects Graphql and Manual for data processing. Uses 7 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -285380,15 +285410,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Html",
+ "Code",
+ "Telegram",
"Httprequest",
- "Aggregate",
+ "Html",
"Splitout",
"Schedule",
- "Telegram",
- "Code"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Aggregate for data processing. Uses 13 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Httprequest for data processing. Uses 13 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -285773,15 +285803,15 @@
"triggerType": "Webhook",
"integrations": [
"Form",
- "Httprequest",
- "Aggregate",
"Markdown",
- "Splitout",
- "Hackernews",
+ "Httprequest",
"Noop",
- "Emailsend"
+ "Splitout",
+ "Emailsend",
+ "Hackernews",
+ "Aggregate"
],
- "description": "Webhook-triggered automation that orchestrates Form, Httprequest, and Aggregate for data processing. Uses 10 nodes and integrates with 8 services.",
+ "description": "Webhook-triggered automation that orchestrates Form, Markdown, and Httprequest for data processing. Uses 10 nodes and integrates with 8 services.",
"steps": [
{
"name": "GetTopicFromToLearn",
@@ -287249,12 +287279,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
"Airtable",
"Executeworkflow",
- "Httprequest"
+ "Httprequest",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Airtable, and Executeworkflow for data processing. Uses 41 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Airtable, Executeworkflow, and Httprequest for data processing. Uses 41 nodes and integrates with 4 services.",
"steps": [
{
"name": "When chat message received",
@@ -287652,15 +287682,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Datetime",
- "Servicenow",
- "Schedule",
"Manual",
+ "Datetime",
+ "Noop",
+ "Servicenow",
"Sort",
- "Noop"
+ "Slack",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Slack, Datetime, and Servicenow for data processing. Uses 14 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Datetime, and Noop for data processing. Uses 14 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -288495,10 +288525,10 @@
"triggerType": "Webhook",
"integrations": [
"Webhook",
- "Respondtowebhook",
- "Servicenow"
+ "Servicenow",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and Servicenow for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Servicenow, and Respondtowebhook for data processing. Uses 10 nodes.",
"steps": [
{
"name": "Webhook",
@@ -289474,17 +289504,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Respondtowebhook",
"Limit",
- "Slack",
- "Splitinbatches",
- "Httprequest",
"Webhook",
+ "Httprequest",
"Summarize",
"Servicenow",
- "Respondtowebhook",
+ "Slack",
+ "Splitinbatches",
"Sort"
],
- "description": "Complex multi-step automation that orchestrates Limit, Slack, and Splitinbatches for data processing. Uses 29 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Limit, and Webhook for data processing. Uses 29 nodes and integrates with 9 services.",
"steps": [
{
"name": "Close Modal Popup",
@@ -290166,15 +290196,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Httprequest",
- "Aggregate",
- "Extractfromfile",
- "Webhook",
+ "Code",
"Respondtowebhook",
- "Code"
+ "Webhook",
+ "Httprequest",
+ "Extractfromfile",
+ "Slack",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Slack, Httprequest, and Aggregate for data processing. Uses 17 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Webhook for data processing. Uses 17 nodes and integrates with 7 services.",
"steps": [
{
"name": "Error Response",
@@ -290417,10 +290447,10 @@
"triggerType": "Webhook",
"integrations": [
"Form",
- "Noop",
- "Httprequest"
+ "Httprequest",
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Form, Noop, and Httprequest for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Form, Httprequest, and Noop for data processing. Uses 10 nodes.",
"steps": [
{
"name": "YouTube video URL",
@@ -291018,10 +291048,10 @@
"triggerType": "Webhook",
"integrations": [
"Wait",
- "Gmailtool",
- "Gmail"
+ "Gmail",
+ "Gmailtool"
],
- "description": "Webhook-triggered automation that orchestrates Wait, Gmailtool, and Gmail for data processing. Uses 13 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Wait, Gmail, and Gmailtool for data processing. Uses 13 nodes.",
"steps": [
{
"name": "Gmail labelling agent",
@@ -292150,13 +292180,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
- "Telegram",
"Code",
+ "Telegram",
+ "Webhook",
+ "Httprequest",
"Gmail"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Telegram for data processing. Uses 35 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Webhook for data processing. Uses 35 nodes and integrates with 5 services.",
"steps": [
{
"name": "When chat message received",
@@ -292788,11 +292818,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Aggregate",
+ "Jotform",
"Splitout",
- "Jotform"
+ "Aggregate"
],
- "description": "Webhook-triggered automation that orchestrates Aggregate, Splitout, and Jotform for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Jotform, Splitout, and Aggregate for data processing. Uses 14 nodes.",
"steps": [
{
"name": "Subscribe contact in KlickTipp",
@@ -293962,15 +293992,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Microsoftoutlook",
- "Httprequest",
- "Extractfromfile",
- "Webhook",
- "Whatsapp",
"Code",
- "Erpnext"
+ "Whatsapp",
+ "Webhook",
+ "Extractfromfile",
+ "Httprequest",
+ "Erpnext",
+ "Microsoftoutlook"
],
- "description": "Complex multi-step automation that orchestrates Microsoftoutlook, Httprequest, and Extractfromfile for data processing. Uses 39 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Whatsapp, and Webhook for data processing. Uses 39 nodes and integrates with 7 services.",
"steps": [
{
"name": "Webhook",
@@ -294843,14 +294873,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Microsoftoutlook",
- "Httprequest",
- "Webhook",
- "Googledocstool",
+ "Code",
"Googlesheetstool",
- "Code"
+ "Webhook",
+ "Httprequest",
+ "Googledocstool",
+ "Microsoftoutlook"
],
- "description": "Complex multi-step automation that orchestrates Microsoftoutlook, Httprequest, and Webhook for data processing. Uses 27 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheetstool, and Webhook for data processing. Uses 27 nodes and integrates with 6 services.",
"steps": [
{
"name": "Webhook",
@@ -295213,12 +295243,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Extractfromfile",
"Googledrive",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Extractfromfile",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Extractfromfile, Googledrive, and Manual for data processing. Uses 11 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googledrive, Httprequest, and Extractfromfile for data processing. Uses 11 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking 'Test workflow'",
@@ -295776,11 +295806,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Aggregate",
+ "Splitout",
"Webhook",
- "Splitout"
+ "Aggregate"
],
- "description": "Webhook-triggered automation that orchestrates Aggregate, Webhook, and Splitout for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Splitout, Webhook, and Aggregate for data processing. Uses 14 nodes.",
"steps": [
{
"name": "Subscribe contact in KlickTipp",
@@ -297498,17 +297528,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Extractfromfile",
- "Webhook",
- "Filter",
- "Manual",
"Code",
+ "Manual",
+ "Webhook",
+ "Extractfromfile",
+ "Httprequest",
+ "Noop",
"Airtable",
- "Noop"
+ "Filter",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Extractfromfile for data processing. Uses 51 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Webhook for data processing. Uses 51 nodes and integrates with 9 services.",
"steps": [
{
"name": "Airtable Webhook",
@@ -298198,11 +298228,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Splitout",
"Aggregate",
- "Typeform",
- "Splitout"
+ "Typeform"
],
- "description": "Webhook-triggered automation that orchestrates Aggregate, Typeform, and Splitout for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Splitout, Aggregate, and Typeform for data processing. Uses 14 nodes.",
"steps": [
{
"name": "Convert and set quiz data",
@@ -298629,11 +298659,11 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Extractfromfile",
+ "Splitout",
"Googledrive",
- "Splitout"
+ "Extractfromfile"
],
- "description": "Webhook-triggered automation that orchestrates Code, Extractfromfile, and Googledrive for data processing. Uses 10 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Splitout, and Googledrive for data processing. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "Google Drive Trigger",
@@ -300004,16 +300034,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
+ "Code",
"Webhook",
"Extractfromfile",
+ "Httprequest",
+ "Noop",
"Splitout",
"Filter",
- "Code",
- "Noop"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Webhook for data processing. Uses 45 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Extractfromfile for data processing. Uses 45 nodes and integrates with 8 services.",
"steps": [
{
"name": "Update Row",
@@ -300794,13 +300824,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Microsoftoutlook",
- "Httprequest",
+ "Code",
"Respondtowebhook",
+ "Httprequest",
"Executeworkflow",
- "Code"
+ "Microsoftoutlook"
],
- "description": "Complex multi-step automation that orchestrates Microsoftoutlook, Httprequest, and Respondtowebhook for data processing. Uses 24 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Httprequest for data processing. Uses 24 nodes and integrates with 5 services.",
"steps": [
{
"name": "Respond to Webhook",
@@ -301173,13 +301203,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Strava",
- "Whatsapp",
"Code",
+ "Whatsapp",
"Gmail",
- "Emailsend"
+ "Emailsend",
+ "Strava"
],
- "description": "Complex multi-step automation that orchestrates Strava, Whatsapp, and Code for data processing. Uses 15 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Whatsapp, and Gmail for data processing. Uses 15 nodes and integrates with 5 services.",
"steps": [
{
"name": "Strava Trigger",
@@ -302393,14 +302423,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
- "Respondtowebhook",
"Googlesheets",
"Googlecalendar",
+ "Respondtowebhook",
+ "Webhook",
+ "Httprequest",
"Airtable"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Respondtowebhook for data processing. Uses 33 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Googlecalendar, and Respondtowebhook for data processing. Uses 33 nodes and integrates with 6 services.",
"steps": [
{
"name": "Ticket Created Successfully",
@@ -303586,14 +303616,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
"Code",
- "Schedule",
"Notion",
- "Noop"
+ "Httprequest",
+ "Noop",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Code for data processing. Uses 27 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Notion, and Httprequest for data processing. Uses 27 nodes and integrates with 6 services.",
"steps": [
{
"name": "Get Posts Schedule",
@@ -304064,10 +304094,10 @@
"triggerType": "Webhook",
"integrations": [
"Quickbooks",
- "Stripe",
- "Httprequest"
+ "Httprequest",
+ "Stripe"
],
- "description": "Webhook-triggered automation that orchestrates Quickbooks, Stripe, and Httprequest for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Quickbooks, Httprequest, and Stripe for data processing. Uses 10 nodes.",
"steps": [
{
"name": "New Payment",
@@ -304828,13 +304858,13 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Httprequest",
- "Filter",
- "Manual",
+ "Code",
"Googlesheets",
- "Code"
+ "Manual",
+ "Httprequest",
+ "Filter"
],
- "description": "Manual workflow that orchestrates Httprequest, Filter, and Manual for data processing. Uses 10 nodes and integrates with 5 services.",
+ "description": "Manual workflow that orchestrates Code, Googlesheets, and Manual for data processing. Uses 10 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -305586,12 +305616,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Googlesheets",
"Code",
- "Httprequest",
- "Emailsend"
+ "Googlesheets",
+ "Emailsend",
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Googlesheets, Code, and Httprequest for data processing. Uses 19 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Emailsend for data processing. Uses 19 nodes and integrates with 4 services.",
"steps": [
{
"name": "Google Sheets Trigger",
@@ -305850,10 +305880,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 6 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -306208,10 +306238,10 @@
"integrations": [
"Mongodb",
"Slack",
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Mongodb, Slack, and Httprequest for data processing. Uses 9 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Mongodb, Slack, and Schedule for data processing. Uses 9 nodes and integrates with 4 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -306791,16 +306821,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Httprequest",
- "Sort",
"Splitout",
- "Schedule",
+ "Emailsend",
+ "Sort",
"Filter",
"Ssh",
- "Code",
- "Emailsend"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Sort, and Splitout for data processing. Uses 16 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Splitout for data processing. Uses 16 nodes and integrates with 8 services.",
"steps": [
{
"name": "Scheduled Trigger",
@@ -307025,10 +307055,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -307802,15 +307832,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Zendesk",
- "Splitinbatches",
- "Extractfromfile",
- "Splitout",
"Manual",
+ "Zendesk",
+ "Extractfromfile",
"Noop",
- "Googledrive"
+ "Splitout",
+ "Googledrive",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Zendesk, Splitinbatches, and Extractfromfile for data processing. Uses 26 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Zendesk, and Extractfromfile for data processing. Uses 26 nodes and integrates with 7 services.",
"steps": [
{
"name": "When chat message received",
@@ -309611,19 +309641,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Youtube",
- "Supabase",
- "Splitinbatches",
- "Removeduplicates",
- "Wait",
- "Aggregate",
- "Comparedatasets",
"Schedule",
- "Spotify",
+ "Removeduplicates",
"Discord",
- "Noop"
+ "Youtube",
+ "Noop",
+ "Wait",
+ "Supabase",
+ "Aggregate",
+ "Splitinbatches",
+ "Spotify",
+ "Comparedatasets"
],
- "description": "Complex multi-step automation that orchestrates Youtube, Supabase, and Splitinbatches for data processing. Uses 54 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Schedule, Removeduplicates, and Discord for data processing. Uses 54 nodes and integrates with 11 services.",
"steps": [
{
"name": "Every day at noon",
@@ -310318,13 +310348,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Wait",
- "Webhook",
"Respondtowebhook",
- "Manual"
+ "Manual",
+ "Webhook",
+ "Httprequest",
+ "Wait"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Webhook for data processing. Uses 23 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Manual, and Webhook for data processing. Uses 23 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -310784,10 +310814,10 @@
"integrations": [
"Wait",
"Splitinbatches",
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Wait, Splitinbatches, and Httprequest for data processing. Uses 10 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Wait, Splitinbatches, and Schedule for data processing. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -311683,17 +311713,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "N8N",
- "Httprequest",
- "Schedule",
- "Manual",
- "Executeworkflow",
"Code",
+ "Manual",
"Github",
- "Noop"
+ "Httprequest",
+ "Noop",
+ "N8N",
+ "Executeworkflow",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, N8N, and Httprequest for data processing. Uses 25 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Github for data processing. Uses 25 nodes and integrates with 9 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -314593,21 +314623,21 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Notion",
- "Stopanderror",
- "Splitinbatches",
- "Httprequest",
- "Aggregate",
"Code",
+ "Form",
"Executiondata",
+ "Notion",
+ "Httprequest",
+ "Noop",
"Splitout",
- "Markdown",
- "Filter",
+ "Stopanderror",
"Executeworkflow",
- "Noop"
+ "Filter",
+ "Markdown",
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Form, Notion, and Stopanderror for data processing. Uses 85 nodes and integrates with 13 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Executiondata for data processing. Uses 85 nodes and integrates with 13 services.",
"steps": [
{
"name": "On form submission",
@@ -315059,15 +315089,15 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Splitinbatches",
- "N8N",
- "Converttofile",
- "Schedule",
"Manual",
+ "Converttofile",
+ "N8N",
"Filter",
- "Googledrive"
+ "Googledrive",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Splitinbatches, N8N, and Converttofile for data processing. Uses 10 nodes and integrates with 7 services.",
+ "description": "Scheduled automation that orchestrates Manual, Converttofile, and N8N for data processing. Uses 10 nodes and integrates with 7 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -315339,11 +315369,11 @@
"triggerType": "Manual",
"integrations": [
"Googledrive",
+ "Converttofile",
"Wordpress",
- "Manual",
- "Converttofile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Googledrive, Wordpress, and Manual for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Googledrive, Converttofile, and Wordpress for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -316003,13 +316033,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Form",
- "Httprequest",
- "Webhook",
"Respondtowebhook",
- "Googlesheets"
+ "Webhook",
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Webhook for data processing. Uses 16 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Form, and Respondtowebhook for data processing. Uses 16 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook",
@@ -316389,12 +316419,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Notion",
"Code",
+ "Notion",
"Splitout",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Notion, Code, and Splitout for data processing. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Notion, and Splitout for data processing. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "Notion Trigger",
@@ -316933,14 +316963,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
- "Splitout",
- "Filter",
+ "Code",
"Manual",
+ "Splitout",
"Executeworkflow",
- "Code"
+ "Filter",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Splitout, and Filter for data processing. Uses 18 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Splitout for data processing. Uses 18 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -317210,12 +317240,12 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Emailsend",
"Code",
+ "Ssh",
"Schedule",
- "Ssh"
+ "Emailsend"
],
- "description": "Scheduled automation that orchestrates Emailsend, Code, and Schedule for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Code, Ssh, and Schedule for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "List upgradable packages",
@@ -317937,11 +317967,11 @@
"triggerType": "Manual",
"integrations": [
"Wait",
+ "Googlesheets",
"Splitinbatches",
- "Manual",
- "Googlesheets"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Wait, Splitinbatches, and Manual for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Wait, Googlesheets, and Splitinbatches for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -318588,12 +318618,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Noop",
- "Googledrive",
+ "Splitout",
"Gmail",
- "Splitout"
+ "Googledrive",
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Noop, Googledrive, and Gmail for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Splitout, Gmail, and Googledrive for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "Gmail Trigger",
@@ -319260,15 +319290,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
+ "Manual",
"Limit",
"Httprequest",
- "Aggregate",
+ "Html",
"Splitout",
- "Manual",
- "Filter"
+ "Filter",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Html, Limit, and Httprequest for data processing. Uses 22 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Limit, and Httprequest for data processing. Uses 22 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -320125,11 +320155,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Form",
"Code",
- "Googledrive"
+ "Googledrive",
+ "Form"
],
- "description": "Webhook-triggered automation that orchestrates Form, Code, and Googledrive for data processing. Uses 13 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Googledrive, and Form for data processing. Uses 13 nodes.",
"steps": [
{
"name": "On form submission",
@@ -320336,10 +320366,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -321452,16 +321482,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
- "Googledrive",
- "Respondtowebhook",
- "Filter",
"Telegram",
+ "Googlecalendar",
+ "Respondtowebhook",
"Manual",
- "Googlecalendar"
+ "Webhook",
+ "Httprequest",
+ "Filter",
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Googledrive for data processing. Uses 36 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Googlecalendar, and Respondtowebhook for data processing. Uses 36 nodes and integrates with 8 services.",
"steps": [
{
"name": "n8n_rag_function",
@@ -321913,12 +321943,12 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Emailsend",
- "Typeform",
"Slack",
- "Googlesheets"
+ "Googlesheets",
+ "Emailsend",
+ "Typeform"
],
- "description": "Webhook-triggered automation that orchestrates Emailsend, Typeform, and Slack for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Googlesheets, and Emailsend for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Typeform Trigger",
@@ -322647,14 +322677,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Googledocs",
- "Extractfromfile",
- "Googledrivetool",
"Googlesheetstool",
+ "Gmailtool",
+ "Googledrivetool",
+ "Extractfromfile",
"Googledrive",
- "Gmailtool"
+ "Googledocs"
],
- "description": "Complex multi-step automation that orchestrates Googledocs, Extractfromfile, and Googledrivetool for data processing. Uses 20 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheetstool, Gmailtool, and Googledrivetool for data processing. Uses 20 nodes and integrates with 6 services.",
"steps": [
{
"name": "Google Drive - Resume CV File Created",
@@ -323561,15 +323591,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Stripe",
- "Httprequest",
- "Zoom",
"Googlesheets",
+ "Form",
+ "Zoom",
+ "Httprequest",
+ "Stripe",
"Noop",
"Gmail"
],
- "description": "Complex multi-step automation that orchestrates Form, Stripe, and Httprequest for data processing. Uses 20 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Form, and Zoom for data processing. Uses 20 nodes and integrates with 7 services.",
"steps": [
{
"name": "Config",
@@ -324604,14 +324634,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Splitout",
- "Schedule",
+ "Code",
"Googlesheets",
"Googlesheetstool",
- "Code"
+ "Httprequest",
+ "Splitout",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Splitout, and Schedule for data processing. Uses 31 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Googlesheetstool for data processing. Uses 31 nodes and integrates with 6 services.",
"steps": [
{
"name": "Trigger 2130 YogaPosesToday",
@@ -325118,10 +325148,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Extractfromfile",
- "Googledrive"
+ "Googledrive",
+ "Extractfromfile"
],
- "description": "Webhook-triggered automation that connects Extractfromfile and Googledrive for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that connects Googledrive and Extractfromfile for data processing. Uses 14 nodes.",
"steps": [
{
"name": "When chat message received",
@@ -325954,16 +325984,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
+ "Telegram",
+ "Manual",
"Youtube",
"Httprequest",
"Splitout",
- "Schedule",
"Filter",
- "Telegram",
- "Manual",
- "Googlesheets"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Youtube, Httprequest, and Splitout to update existing data. Uses 23 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Telegram, and Manual to update existing data. Uses 23 nodes and integrates with 8 services.",
"steps": [
{
"name": "0715 Trigger",
@@ -326293,14 +326323,14 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Stopanderror",
- "Splitinbatches",
- "Wait",
- "Manual",
+ "Code",
"Googlesheets",
- "Code"
+ "Manual",
+ "Wait",
+ "Splitinbatches",
+ "Stopanderror"
],
- "description": "Manual workflow that orchestrates Stopanderror, Splitinbatches, and Wait for data processing. Uses 8 nodes and integrates with 6 services.",
+ "description": "Manual workflow that orchestrates Code, Googlesheets, and Manual for data processing. Uses 8 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -326805,13 +326835,13 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Httprequest",
+ "Code",
"Executiondata",
"Manual",
- "Code",
+ "Httprequest",
"Airtable"
],
- "description": "Manual workflow that orchestrates Httprequest, Executiondata, and Manual for data processing. Uses 8 nodes and integrates with 5 services.",
+ "description": "Manual workflow that orchestrates Code, Executiondata, and Manual for data processing. Uses 8 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -327327,13 +327357,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Googledrive",
"Googlesheets",
"Noop",
+ "Gmail",
"Googleslides",
- "Gmail"
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Googledrive, Googlesheets, and Noop for data processing. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Noop, and Gmail for data processing. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "Google Sheets Trigger",
@@ -327544,11 +327574,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Telegram",
"Cron",
+ "Telegram",
"Httprequest"
],
- "description": "Scheduled automation that orchestrates Telegram, Cron, and Httprequest for data processing. Uses 3 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Telegram, and Httprequest for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Cron",
@@ -327793,12 +327823,12 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Cron",
"Noop",
- "Rssfeedread",
- "Httprequest"
+ "Cron",
+ "Httprequest",
+ "Rssfeedread"
],
- "description": "Scheduled automation that orchestrates Cron, Noop, and Rssfeedread for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Noop, Cron, and Httprequest for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "Cron",
@@ -328004,11 +328034,11 @@
"triggerType": "Scheduled",
"integrations": [
"Noop",
- "Rssfeedread",
"Telegram",
- "Cron"
+ "Cron",
+ "Rssfeedread"
],
- "description": "Scheduled automation that orchestrates Noop, Rssfeedread, and Telegram for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Noop, Telegram, and Cron for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "Cron",
@@ -328262,13 +328292,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Writebinaryfile",
- "Readbinaryfile",
"Signl4",
+ "Readbinaryfile",
+ "Cron",
"Movebinarydata",
- "Cron"
+ "Writebinaryfile"
],
- "description": "Scheduled automation that orchestrates Writebinaryfile, Readbinaryfile, and Signl4 for notifications and alerts. Uses 9 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Signl4, Readbinaryfile, and Cron for notifications and alerts. Uses 9 nodes and integrates with 5 services.",
"steps": [
{
"name": "Cron",
@@ -328447,10 +328477,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Openweathermap",
- "Telegram"
+ "Telegram",
+ "Openweathermap"
],
- "description": "Webhook-triggered automation that connects Openweathermap and Telegram for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that connects Telegram and Openweathermap for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Telegram Trigger",
@@ -328542,11 +328572,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Postgres",
"Writebinaryfile",
- "Spreadsheetfile",
- "Postgres"
+ "Spreadsheetfile"
],
- "description": "Manual workflow that orchestrates Writebinaryfile, Spreadsheetfile, and Postgres for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Postgres, Writebinaryfile, and Spreadsheetfile for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Run Query",
@@ -329561,11 +329591,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Httprequest",
"Wordpress",
- "Manual",
- "Httprequest"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Wordpress, Manual, and Httprequest for data processing. Uses 10 nodes.",
+ "description": "Manual workflow that orchestrates Httprequest, Wordpress, and Manual for data processing. Uses 10 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -330111,14 +330141,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Gong",
"Schedule",
"Manual",
- "Salesforce",
"Executeworkflow",
+ "Salesforce",
+ "Gong",
"Sort"
],
- "description": "Complex multi-step automation that orchestrates Gong, Schedule, and Manual for data processing. Uses 11 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Schedule, Manual, and Executeworkflow for data processing. Uses 11 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -330916,18 +330946,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
+ "Manual",
+ "Notion",
+ "Comparedatasets",
+ "Noop",
+ "Splitout",
+ "Executeworkflow",
"Gong",
"Splitinbatches",
- "Aggregate",
- "Comparedatasets",
- "Splitout",
- "Manual",
- "Executeworkflow",
- "Googlesheets",
- "Notion",
- "Noop"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Gong, Splitinbatches, and Aggregate for data processing. Uses 26 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Notion for data processing. Uses 26 nodes and integrates with 10 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -331815,14 +331845,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Httprequest",
- "Aggregate",
"Splitout",
- "Salesforce",
"Executeworkflow",
- "Code"
+ "Salesforce",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Splitout for data processing. Uses 23 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Splitout for data processing. Uses 23 nodes and integrates with 6 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -332682,15 +332712,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Splitinbatches",
- "Aggregate",
+ "Notion",
+ "Noop",
"Comparedatasets",
"Executeworkflow",
- "Notion",
- "Noop"
+ "Slack",
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Slack, Splitinbatches, and Aggregate for data processing. Uses 25 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Notion, Noop, and Comparedatasets for data processing. Uses 25 nodes and integrates with 7 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -333667,10 +333697,10 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Aggregate",
- "Executeworkflow"
+ "Executeworkflow",
+ "Aggregate"
],
- "description": "Webhook-triggered automation that connects Aggregate and Executeworkflow for data processing. Uses 27 nodes.",
+ "description": "Webhook-triggered automation that connects Executeworkflow and Aggregate for data processing. Uses 27 nodes.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -335025,14 +335055,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Notion",
"Httprequest",
"Wait",
- "Aggregate",
"Splitout",
"Executeworkflow",
- "Notion"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Aggregate for data processing. Uses 37 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Notion, Httprequest, and Wait for data processing. Uses 37 nodes and integrates with 6 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -335999,13 +336029,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Notion",
"Wait",
- "Aggregate",
"Splitout",
"Executeworkflow",
- "Notion"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Wait, Aggregate, and Splitout for data processing. Uses 24 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Notion, Wait, and Splitout for data processing. Uses 24 nodes and integrates with 5 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -336773,13 +336803,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Notion",
"Wait",
- "Aggregate",
"Splitout",
"Executeworkflow",
- "Notion"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Wait, Aggregate, and Splitout for data processing. Uses 19 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Notion, Wait, and Splitout for data processing. Uses 19 nodes and integrates with 5 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -337632,15 +337662,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Limit",
- "Slack",
- "Wait",
- "Summarize",
"Webhook",
- "Schedule",
- "Googlesheets"
+ "Summarize",
+ "Wait",
+ "Slack",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Limit, Slack, and Wait for data processing. Uses 21 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Limit, and Webhook for data processing. Uses 21 nodes and integrates with 7 services.",
"steps": [
{
"name": "Wait",
@@ -338429,14 +338459,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Filter",
- "Executeworkflow",
+ "Code",
"Googlesheetstool",
- "Code"
+ "Httprequest",
+ "Executeworkflow",
+ "Filter",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Filter for data processing. Uses 30 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheetstool, and Httprequest for data processing. Uses 30 nodes and integrates with 6 services.",
"steps": [
{
"name": "When chat message received",
@@ -338912,10 +338942,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Todoist",
- "Telegram"
+ "Telegram",
+ "Todoist"
],
- "description": "Webhook-triggered automation that connects Todoist and Telegram for data processing. Uses 13 nodes.",
+ "description": "Webhook-triggered automation that connects Telegram and Todoist for data processing. Uses 13 nodes.",
"steps": [
{
"name": "Receive Telegram Messages",
@@ -340074,16 +340104,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
"Airtabletool",
- "Httprequest",
- "Webhook",
- "Schedule",
"Telegram",
+ "Webhook",
+ "Httprequest",
+ "Airtable",
"Executeworkflow",
- "Airtable"
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Airtabletool, and Httprequest for data processing. Uses 35 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Airtabletool, Telegram, and Webhook for data processing. Uses 35 nodes and integrates with 8 services.",
"steps": [
{
"name": "Telegram Trigger",
@@ -340447,10 +340477,10 @@
"triggerType": "Manual",
"integrations": [
"Wait",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Wait, Manual, and Httprequest for data processing. Uses 10 nodes.",
+ "description": "Manual workflow that orchestrates Wait, Httprequest, and Manual for data processing. Uses 10 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -341042,11 +341072,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Extractfromfile",
"Telegram",
- "Httprequest"
+ "Httprequest",
+ "Extractfromfile"
],
- "description": "Webhook-triggered automation that orchestrates Extractfromfile, Telegram, and Httprequest for data processing. Uses 16 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Telegram, Httprequest, and Extractfromfile for data processing. Uses 16 nodes.",
"steps": [
{
"name": "Receive Telegram Messages",
@@ -341838,14 +341868,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Extractfromfile",
- "Splitout",
"Manual",
- "Filter"
+ "Extractfromfile",
+ "Httprequest",
+ "Splitout",
+ "Filter",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Extractfromfile for data processing. Uses 28 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Extractfromfile, and Httprequest for data processing. Uses 28 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -342231,12 +342261,12 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Youtube",
- "Splitinbatches",
"Code",
+ "Splitinbatches",
+ "Youtube",
"Manual"
],
- "description": "Manual workflow that orchestrates Youtube, Splitinbatches, and Code to update existing data. Uses 9 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Code, Splitinbatches, and Youtube to update existing data. Uses 9 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -343275,11 +343305,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
+ "Splitout",
"Schedule",
- "Httprequest",
- "Splitout"
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Code, Schedule, and Httprequest for data processing. Uses 28 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Splitout, and Schedule for data processing. Uses 28 nodes and integrates with 4 services.",
"steps": [
{
"name": "Token Request",
@@ -344480,15 +344510,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
"Code",
"Manual",
- "Filter",
+ "Httprequest",
"Noop",
"Airtable",
- "Gmail"
+ "Gmail",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Code, and Manual for data processing. Uses 38 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 38 nodes and integrates with 7 services.",
"steps": [
{
"name": "Gmail Trigger",
@@ -344785,11 +344815,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Executecommand",
"Telegram",
- "Httprequest"
+ "Httprequest",
+ "Executecommand"
],
- "description": "Webhook-triggered automation that orchestrates Executecommand, Telegram, and Httprequest for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Telegram, Httprequest, and Executecommand for data processing. Uses 7 nodes.",
"steps": [
{
"name": "HTTP Request",
@@ -344917,10 +344947,10 @@
"triggerType": "Webhook",
"integrations": [
"Mailerlite",
- "Manual",
- "Airtable"
+ "Airtable",
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Mailerlite, Manual, and Airtable to update existing data. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Mailerlite, Airtable, and Manual to update existing data. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -345622,10 +345652,10 @@
"triggerType": "Manual",
"integrations": [
"Googledrive",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Googledrive, Manual, and Httprequest for data processing. Uses 21 nodes.",
+ "description": "Manual workflow that orchestrates Googledrive, Httprequest, and Manual for data processing. Uses 21 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -345773,11 +345803,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Httprequest, and Readwritefile for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Readwritefile, Httprequest, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -347653,16 +347683,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Httprequest",
- "Splitout",
"Manual",
- "Filter",
- "Executeworkflow",
+ "Httprequest",
+ "Html",
+ "Splitout",
"Airtable",
- "Xml"
+ "Xml",
+ "Executeworkflow",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Splitout for data processing. Uses 51 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Httprequest, and Html for data processing. Uses 51 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -347977,10 +348007,10 @@
"integrations": [
"Code",
"Googledrive",
- "N8N",
- "Schedule"
+ "Schedule",
+ "N8N"
],
- "description": "Scheduled automation that orchestrates Code, Googledrive, and N8N for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Code, Googledrive, and Schedule for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -349849,13 +349879,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Executiondata",
+ "Googlesheets",
"Telegram",
- "Redis",
- "Googlesheets"
+ "Executiondata",
+ "Httprequest",
+ "Redis"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Executiondata, and Telegram for data processing. Uses 40 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Telegram, and Executiondata for data processing. Uses 40 nodes and integrates with 5 services.",
"steps": [
{
"name": "Telegram Trigger",
@@ -350678,15 +350708,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Googlecalendar",
"Removeduplicates",
"Googlecalendartool",
- "Schedule",
+ "Gmail",
"Filter",
- "Googlecalendar",
- "Gmail"
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Removeduplicates, and Googlecalendartool for data processing. Uses 22 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Googlecalendar, Removeduplicates, and Googlecalendartool for data processing. Uses 22 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -350979,12 +351009,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Form",
"Code",
"Googledrive",
+ "Form",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Form, Code, and Googledrive for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Googledrive, and Form for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "Form",
@@ -351163,11 +351193,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Googlesheets",
"Twitter",
- "Openai",
- "Googlesheets"
+ "Openai"
],
- "description": "Manual workflow that orchestrates Twitter, Openai, and Googlesheets for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Googlesheets, Twitter, and Openai for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Get Content Ideas",
@@ -352165,14 +352195,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
- "Manual",
"Code",
"Googlecalendar",
- "Gmail"
+ "Manual",
+ "Httprequest",
+ "Gmail",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Manual for data processing. Uses 12 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlecalendar, and Manual for data processing. Uses 12 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking 'Test workflow'",
@@ -352975,13 +353005,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
+ "Googletranslate",
"Googlesheets",
+ "Httprequest",
"Noop",
- "Googledrive",
- "Googletranslate"
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Googlesheets, and Noop for data processing. Uses 22 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googletranslate, Googlesheets, and Httprequest for data processing. Uses 22 nodes and integrates with 5 services.",
"steps": [
{
"name": "Google Translate",
@@ -354252,13 +354282,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Telegram",
- "Googlesheets",
"Code",
- "Googledrive",
- "Gmail"
+ "Googlesheets",
+ "Telegram",
+ "Gmail",
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Telegram, Googlesheets, and Code for data processing. Uses 37 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Telegram for data processing. Uses 37 nodes and integrates with 5 services.",
"steps": [
{
"name": "Initiate Workflow Data",
@@ -354895,16 +354925,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Readwritefile",
+ "Manual",
"Httprequest",
"Extractfromfile",
- "Converttofile",
- "Schedule",
- "Splitout",
- "Manual",
"Noop",
- "Readwritefile"
+ "Splitout",
+ "Converttofile",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Extractfromfile, and Converttofile for data processing. Uses 24 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Readwritefile, Manual, and Httprequest for data processing. Uses 24 nodes and integrates with 8 services.",
"steps": [
{
"name": "Read last breach",
@@ -355528,16 +355558,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Youtube",
- "Stopanderror",
"Httprequest",
- "Rssfeedread",
+ "Youtube",
"Splitout",
- "Schedule",
+ "Emailsend",
"Filter",
- "Emailsend"
+ "Schedule",
+ "Stopanderror",
+ "Rssfeedread"
],
- "description": "Complex multi-step automation that orchestrates Youtube, Stopanderror, and Httprequest for data processing. Uses 18 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Httprequest, Youtube, and Splitout for data processing. Uses 18 nodes and integrates with 8 services.",
"steps": [
{
"name": "Get video details",
@@ -355990,14 +356020,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Splitout",
- "Schedule",
- "Manual",
- "Googlesheets",
- "Code"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Splitout, and Schedule for data processing. Uses 11 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 11 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -357572,12 +357602,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitout",
"Code",
+ "Googlesheets",
"Gmail",
- "Googlesheets"
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Splitout, Code, and Gmail for data processing. Uses 18 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Gmail for data processing. Uses 18 nodes and integrates with 4 services.",
"steps": [
{
"name": "Email Trigger",
@@ -358029,13 +358059,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
- "Manual",
+ "Code",
"Googlesheets",
- "Code"
+ "Manual",
+ "Httprequest",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Manual for data processing. Uses 11 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 11 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -358287,13 +358317,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Splitinbatches",
- "Schedule",
- "Manual",
"Googlesheets",
- "Mailchimp"
+ "Splitinbatches",
+ "Manual",
+ "Mailchimp",
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Splitinbatches, Schedule, and Manual for data processing. Uses 6 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Googlesheets, Splitinbatches, and Manual for data processing. Uses 6 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -358828,11 +358858,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Sendinblue",
"Gmail",
- "Emailsend"
+ "Emailsend",
+ "Sendinblue"
],
- "description": "Webhook-triggered automation that orchestrates Sendinblue, Gmail, and Emailsend for data processing. Uses 16 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Gmail, Emailsend, and Sendinblue for data processing. Uses 16 nodes.",
"steps": [
{
"name": "Gmail Trigger",
@@ -359376,15 +359406,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Splitout",
- "Schedule",
"Converttofile",
- "Manual",
- "Googlesheets",
- "Code"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Splitout, and Schedule for data processing. Uses 13 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 13 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -359632,13 +359662,13 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Httprequest",
- "Splitout",
- "Manual",
"Code",
- "Readwritefile"
+ "Readwritefile",
+ "Manual",
+ "Httprequest",
+ "Splitout"
],
- "description": "Manual workflow that orchestrates Httprequest, Splitout, and Manual for data processing. Uses 7 nodes and integrates with 5 services.",
+ "description": "Manual workflow that orchestrates Code, Readwritefile, and Manual for data processing. Uses 7 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -359891,13 +359921,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "N8N",
"Executecommand",
+ "Manual",
"Splitout",
- "Schedule",
- "Manual"
+ "N8N",
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates N8N, Executecommand, and Splitout for data processing. Uses 7 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Executecommand, Manual, and Splitout for data processing. Uses 7 nodes and integrates with 5 services.",
"steps": [
{
"name": "trigger_manual",
@@ -360208,11 +360238,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Aggregate",
+ "Googlesheets",
"Telegram",
- "Googlesheets"
+ "Aggregate"
],
- "description": "Webhook-triggered automation that orchestrates Aggregate, Telegram, and Googlesheets for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Telegram, and Aggregate for data processing. Uses 10 nodes.",
"steps": [
{
"name": "AI Agent",
@@ -360574,14 +360604,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
"Shopify",
- "Schedule",
"Manual",
- "Filter"
+ "Httprequest",
+ "Filter",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Shopify for data processing. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Shopify, Manual, and Httprequest for data processing. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -361307,12 +361337,12 @@
"triggerType": "Complex",
"integrations": [
"Dropbox",
- "Webhook",
- "Nocodb",
"Respondtowebhook",
- "Executeworkflow"
+ "Webhook",
+ "Executeworkflow",
+ "Nocodb"
],
- "description": "Complex multi-step automation that orchestrates Dropbox, Webhook, and Nocodb for data processing. Uses 20 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Dropbox, Respondtowebhook, and Webhook for data processing. Uses 20 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook",
@@ -362007,12 +362037,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Form",
- "Html",
"Splitout",
- "Emailsend"
+ "Form",
+ "Emailsend",
+ "Html"
],
- "description": "Webhook-triggered automation that orchestrates Form, Html, and Splitout for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Splitout, Form, and Emailsend for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "When User Completes Form",
@@ -362367,11 +362397,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Googlebigquery",
"Code",
- "Executeworkflow",
- "Googlebigquery"
+ "Executeworkflow"
],
- "description": "Webhook-triggered automation that orchestrates Code, Executeworkflow, and Googlebigquery for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googlebigquery, Code, and Executeworkflow for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Trigger Executed by the AI Tool",
@@ -363207,11 +363237,11 @@
"triggerType": "Complex",
"integrations": [
"Wait",
- "Code",
+ "Googlesheets",
"Telegram",
- "Googlesheets"
+ "Code"
],
- "description": "Complex multi-step automation that orchestrates Wait, Code, and Telegram for data processing. Uses 23 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Wait, Googlesheets, and Telegram for data processing. Uses 23 nodes and integrates with 4 services.",
"steps": [
{
"name": "Initiate Static Data",
@@ -363702,13 +363732,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Form",
"Httprequest",
- "Aggregate",
- "Code",
- "Gmail"
+ "Gmail",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Aggregate for data processing. Uses 19 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Httprequest for data processing. Uses 19 nodes and integrates with 5 services.",
"steps": [
{
"name": "Landing Page Url",
@@ -363961,12 +363991,12 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Notion",
- "Noop",
"Slack",
- "Cron"
+ "Notion",
+ "Cron",
+ "Noop"
],
- "description": "Scheduled automation that orchestrates Notion, Noop, and Slack for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Slack, Notion, and Cron for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "If task assigned to Harshil?",
@@ -364381,14 +364411,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Manual",
"Httprequest",
"Splitout",
- "Schedule",
- "Manual",
- "Filter"
+ "Filter",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Splitout for data processing. Uses 12 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Httprequest, and Splitout for data processing. Uses 12 nodes and integrates with 6 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -364666,10 +364696,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Googledrive",
- "Googlesheets"
+ "Googlesheets",
+ "Googledrive"
],
- "description": "Webhook-triggered automation that connects Googledrive and Googlesheets for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that connects Googlesheets and Googledrive for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Google Sheets Trigger",
@@ -364866,10 +364896,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Respondtowebhook",
- "Webhook"
+ "Webhook",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Code, Respondtowebhook, and Webhook for data processing. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Webhook, and Respondtowebhook for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Webhook",
@@ -365264,10 +365294,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Gmail",
- "Googlesheets"
+ "Googlesheets",
+ "Gmail"
],
- "description": "Webhook-triggered automation that orchestrates Code, Gmail, and Googlesheets for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Googlesheets, and Gmail for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Email Received",
@@ -366628,12 +366658,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Executeworkflow",
"Code",
"Telegram",
+ "Executeworkflow",
"Redis"
],
- "description": "Complex multi-step automation that orchestrates Executeworkflow, Code, and Telegram for data processing. Uses 39 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Executeworkflow for data processing. Uses 39 nodes and integrates with 4 services.",
"steps": [
{
"name": "Handoff Subworkflow",
@@ -367686,17 +367716,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Removeduplicates",
- "Splitout",
- "Schedule",
- "Discord",
- "Filter",
- "Executeworkflow",
"Code",
- "Noop"
+ "Removeduplicates",
+ "Discord",
+ "Noop",
+ "Splitout",
+ "Executeworkflow",
+ "Filter",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Removeduplicates, and Splitout for data processing. Uses 30 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Removeduplicates, and Discord for data processing. Uses 30 nodes and integrates with 9 services.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -368204,17 +368234,17 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Removeduplicates",
- "Httprequest",
- "Markdown",
- "Schedule",
"Crypto",
"Googlesheets",
"Googledrive",
- "Gmail"
+ "Removeduplicates",
+ "Httprequest",
+ "Html",
+ "Gmail",
+ "Markdown",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Html, Removeduplicates, and Httprequest for data processing. Uses 14 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Crypto, Googlesheets, and Googledrive for data processing. Uses 14 nodes and integrates with 9 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -368459,11 +368489,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Googlesheets",
"Webhook",
- "Respondtowebhook",
- "Googlesheets"
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and Googlesheets for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Webhook, and Respondtowebhook for data processing. Uses 7 nodes.",
"steps": [
{
"name": "Webhook",
@@ -369586,16 +369616,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Jira",
"Removeduplicates",
- "Sort",
+ "Noop",
"Summarize",
"Splitout",
- "Schedule",
- "Jira",
- "Noop"
+ "Sort",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Removeduplicates, and Sort for data processing. Uses 36 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Jira, Removeduplicates, and Noop for data processing. Uses 36 nodes and integrates with 8 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -370364,19 +370394,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Microsoftoutlook",
- "Httprequest",
- "Wait",
- "Extractfromfile",
- "Markdown",
- "Schedule",
- "Microsoftexcel",
- "Filter",
"Code",
- "Noop"
+ "Splitinbatches",
+ "Microsoftexcel",
+ "Extractfromfile",
+ "Noop",
+ "Wait",
+ "Httprequest",
+ "Filter",
+ "Markdown",
+ "Microsoftoutlook",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Microsoftoutlook, and Httprequest for data processing. Uses 24 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Splitinbatches, and Microsoftexcel for data processing. Uses 24 nodes and integrates with 11 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -371018,13 +371048,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Hubspot",
"Manual",
+ "Hubspot",
"Noop",
- "Gmail"
+ "Gmail",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Hubspot, and Manual for data processing. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Hubspot, and Noop for data processing. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -371276,13 +371306,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Rssfeedread",
- "Manual",
- "Telegram",
"Awsses",
- "Cron"
+ "Telegram",
+ "Manual",
+ "Cron",
+ "Rssfeedread"
],
- "description": "Scheduled automation that orchestrates Rssfeedread, Manual, and Telegram for data processing. Uses 7 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Awsses, Telegram, and Manual for data processing. Uses 7 nodes and integrates with 5 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -371380,10 +371410,10 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Postgres",
- "Cron"
+ "Cron",
+ "Postgres"
],
- "description": "Scheduled automation that connects Postgres and Cron for data processing. Uses 3 nodes.",
+ "description": "Scheduled automation that connects Cron and Postgres for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Cron",
@@ -371660,10 +371690,10 @@
"triggerType": "Webhook",
"integrations": [
"Executeworkflow",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Executeworkflow, Manual, and Httprequest for data processing. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Executeworkflow, Httprequest, and Manual for data processing. Uses 8 nodes.",
"steps": [
{
"name": "Recieve log message",
@@ -372831,17 +372861,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Executiondata",
+ "Manual",
"Httprequest",
"Wait",
- "Aggregate",
- "Executiondata",
"Splitout",
- "Manual",
- "Filter",
"Executeworkflow",
- "Code"
+ "Filter",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Aggregate for data processing. Uses 39 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Executiondata, and Manual for data processing. Uses 39 nodes and integrates with 9 services.",
"steps": [
{
"name": "Parse response",
@@ -373330,10 +373360,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Extractfromfile",
- "Gmail"
+ "Gmail",
+ "Extractfromfile"
],
- "description": "Webhook-triggered automation that orchestrates Code, Extractfromfile, and Gmail for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Gmail, and Extractfromfile for data processing. Uses 14 nodes.",
"steps": [
{
"name": "Email Trigger",
@@ -376862,14 +376892,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Webhook",
- "Respondtowebhook",
- "Itemlists",
"Code",
"Googlecalendar",
- "Airtable"
+ "Respondtowebhook",
+ "Webhook",
+ "Airtable",
+ "Itemlists"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Respondtowebhook, and Itemlists for data processing. Uses 92 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlecalendar, and Respondtowebhook for data processing. Uses 92 nodes and integrates with 6 services.",
"steps": [
{
"name": "Respond with Error",
@@ -377588,16 +377618,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Summarize",
- "Extractfromfile",
- "Schedule",
- "Filter",
"Googlesheets",
"Googlesheetstool",
- "Gmail"
+ "Form",
+ "Extractfromfile",
+ "Summarize",
+ "Gmail",
+ "Filter",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Form, Summarize, and Extractfromfile for data processing. Uses 20 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Googlesheetstool, and Form for data processing. Uses 20 nodes and integrates with 8 services.",
"steps": [
{
"name": "On form submission",
@@ -378228,13 +378258,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Wait",
- "Webhook",
"Code",
- "Redis",
- "Noop"
+ "Webhook",
+ "Noop",
+ "Wait",
+ "Redis"
],
- "description": "Complex multi-step automation that orchestrates Wait, Webhook, and Code for data processing. Uses 18 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Noop for data processing. Uses 18 nodes and integrates with 5 services.",
"steps": [
{
"name": "Incoming Webhook Data",
@@ -379707,17 +379737,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Form",
"Limit",
- "Splitinbatches",
"Removeduplicates",
"Httprequest",
- "N8N",
"Splitout",
+ "N8N",
"Filter",
- "Code"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Form, Limit, and Splitinbatches for data processing. Uses 40 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Limit for data processing. Uses 40 nodes and integrates with 9 services.",
"steps": [
{
"name": "On form submission",
@@ -380906,18 +380936,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Splitinbatches",
+ "Microsoftexcel",
+ "Microsoftoutlook",
"Removeduplicates",
"Httprequest",
- "Microsoftoutlook",
- "Aggregate",
+ "Noop",
+ "Html",
"Splitout",
+ "Splitinbatches",
"Schedule",
- "Microsoftexcel",
- "Noop"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Html, Splitinbatches, and Removeduplicates for data processing. Uses 33 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Microsoftexcel, Microsoftoutlook, and Removeduplicates for data processing. Uses 33 nodes and integrates with 10 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -381551,12 +381581,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Slack",
"Microsoftoutlooktool",
"Webhook",
- "Respondtowebhook",
- "Slack"
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Microsoftoutlooktool, Webhook, and Respondtowebhook for data processing. Uses 16 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Slack, Microsoftoutlooktool, and Webhook for data processing. Uses 16 nodes and integrates with 4 services.",
"steps": [
{
"name": "Respond to Challenge",
@@ -382649,15 +382679,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Googlesheets",
"Wait",
"Markdown",
- "Rssfeedread",
+ "Splitinbatches",
"Schedule",
- "Googlesheets",
- "Code"
+ "Rssfeedread"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Wait, and Markdown for data processing. Uses 23 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Wait for data processing. Uses 23 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -383414,12 +383444,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Googledrive",
- "Splitinbatches",
"Gmail",
- "Googlesheets"
+ "Googlesheets",
+ "Googledrive",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Googledrive, Splitinbatches, and Gmail for data processing. Uses 19 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Gmail, Googlesheets, and Googledrive for data processing. Uses 19 nodes and integrates with 4 services.",
"steps": [
{
"name": "Gmail Trigger",
@@ -383705,12 +383735,12 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Code",
- "Manual",
"Airtop",
- "Googlesheets"
+ "Googlesheets",
+ "Code",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and Airtop for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Airtop, Googlesheets, and Code for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -384729,12 +384759,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Executeworkflow",
+ "Splitout",
"Aggregate",
"Httprequest",
- "Splitout"
+ "Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates Executeworkflow, Aggregate, and Httprequest for data processing. Uses 16 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Splitout, Aggregate, and Httprequest for data processing. Uses 16 nodes and integrates with 4 services.",
"steps": [
{
"name": "When chat message received",
@@ -385261,11 +385291,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Airtable",
+ "Airtabletool",
"Twilio",
- "Airtabletool"
+ "Airtable"
],
- "description": "Webhook-triggered automation that orchestrates Airtable, Twilio, and Airtabletool for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Airtabletool, Twilio, and Airtable for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Twilio Trigger",
@@ -385450,11 +385480,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Postgres",
"Twilio",
- "Cron"
+ "Cron",
+ "Postgres"
],
- "description": "Scheduled automation that orchestrates Postgres, Twilio, and Cron for notifications and alerts. Uses 5 nodes.",
+ "description": "Scheduled automation that orchestrates Twilio, Cron, and Postgres for notifications and alerts. Uses 5 nodes.",
"steps": [
{
"name": "Cron",
@@ -385997,13 +386027,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Googlesheets",
"Manual",
"Ghost",
- "Googlesheets",
- "Code"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Manual, and Ghost for data processing. Uses 14 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 14 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -386780,13 +386810,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Webhook",
- "Filter",
"Googlesheets",
"Notion",
- "Airtable"
+ "Webhook",
+ "Airtable",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Filter, and Googlesheets for data processing. Uses 14 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Notion, and Webhook for data processing. Uses 14 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook",
@@ -387308,15 +387338,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
"Code",
- "Converttofile",
- "Splitout",
"Manual",
- "Sort",
- "Gmail"
+ "Httprequest",
+ "Splitout",
+ "Gmail",
+ "Converttofile",
+ "Sort"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Code, and Converttofile for data processing. Uses 18 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 18 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -387613,12 +387643,12 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Linkedin",
- "Manual",
+ "Splitout",
"Gmail",
- "Splitout"
+ "Linkedin",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Linkedin, Manual, and Gmail for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Splitout, Gmail, and Linkedin for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -388388,10 +388418,10 @@
"integrations": [
"Code",
"Googledrive",
- "Filter",
- "Noop"
+ "Noop",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Code, Googledrive, and Filter for data processing. Uses 20 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googledrive, and Noop for data processing. Uses 20 nodes and integrates with 4 services.",
"steps": [
{
"name": "Google Drive Trigger",
@@ -389115,14 +389145,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Extractfromfile",
- "Manual",
- "Filter",
"Googlesheets",
- "Googledrive"
+ "Manual",
+ "Extractfromfile",
+ "Filter",
+ "Googledrive",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Extractfromfile, and Manual for data processing. Uses 19 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Extractfromfile for data processing. Uses 19 nodes and integrates with 6 services.",
"steps": [
{
"name": "Put some AI treatment here if you need it",
@@ -390313,12 +390343,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Extractfromfile",
"Code",
"Microsoftoutlook",
+ "Extractfromfile",
"Noop"
],
- "description": "Complex multi-step automation that orchestrates Extractfromfile, Code, and Microsoftoutlook for data processing. Uses 22 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Microsoftoutlook, and Extractfromfile for data processing. Uses 22 nodes and integrates with 4 services.",
"steps": [
{
"name": "Outlook Trigger",
@@ -390701,11 +390731,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Extractfromfile",
+ "Googlesheets",
"Gmail",
- "Googlesheets"
+ "Extractfromfile"
],
- "description": "Webhook-triggered automation that orchestrates Extractfromfile, Gmail, and Googlesheets for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Gmail, and Extractfromfile for data processing. Uses 7 nodes.",
"steps": [
{
"name": "Trigger on new Email Received",
@@ -390839,11 +390869,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Executecommand",
"Manual",
- "Readbinaryfiles"
+ "Readbinaryfiles",
+ "Executecommand"
],
- "description": "Manual workflow that orchestrates Executecommand, Manual, and Readbinaryfiles for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates Manual, Readbinaryfiles, and Executecommand for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Start",
@@ -391558,17 +391588,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Aggregate",
- "Splitout",
- "Schedule",
- "Filter",
"Googlesheets",
"Noop",
+ "Splitout",
+ "Gmail",
+ "Filter",
"Googledrive",
- "Gmail"
+ "Splitinbatches",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Aggregate, and Splitout for data processing. Uses 19 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Noop, and Splitout for data processing. Uses 19 nodes and integrates with 9 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -395204,11 +395234,11 @@
"triggerType": "Scheduled",
"integrations": [
"Code",
+ "Googlesheets",
"Schedule",
- "Httprequest",
- "Googlesheets"
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Code, Schedule, and Httprequest for data processing. Uses 10 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Code, Googlesheets, and Schedule for data processing. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "Trigger - 08:00 am",
@@ -396341,14 +396371,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Wait",
- "Schedule",
- "Manual",
- "Googlesheets"
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 21 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Httprequest for data processing. Uses 21 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -397126,18 +397156,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
+ "Code",
+ "Schedule",
"Httprequest",
+ "Html",
+ "Splitout",
+ "Emailsend",
+ "Filter",
"Sort",
"Aggregate",
- "Rssfeedread",
- "Splitout",
- "Schedule",
- "Filter",
- "Code",
- "Emailsend"
+ "Rssfeedread"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Sort for data processing. Uses 23 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Schedule, and Httprequest for data processing. Uses 23 nodes and integrates with 10 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -397781,13 +397811,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
"Limit",
+ "Manual",
"Httprequest",
- "Splitout",
- "Manual"
+ "Html",
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Html, Limit, and Httprequest for data processing. Uses 22 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Limit, Manual, and Httprequest for data processing. Uses 22 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -397990,11 +398020,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Googledrive",
"Quickchart",
- "Googledrive"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Quickchart, and Googledrive for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Googledrive, Quickchart, and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -398845,13 +398875,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
"Form",
"Httprequest",
- "Wait",
- "Googlesheets",
- "Code"
+ "Wait"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Wait for data processing. Uses 15 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Form for data processing. Uses 15 nodes and integrates with 5 services.",
"steps": [
{
"name": "On form submission - Discover Jobs",
@@ -399324,12 +399354,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Googlesheets",
"Code",
- "Httprequest",
- "Schedule"
+ "Googlesheets",
+ "Schedule",
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Googlesheets, Code, and Httprequest for data processing. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Schedule for data processing. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "Fetches today’s Product Hunt posts via API.",
@@ -400008,13 +400038,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Limit",
- "Splitout",
- "Telegram",
+ "Code",
"Googlesheets",
- "Code"
+ "Telegram",
+ "Limit",
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Limit, Splitout, and Telegram for data processing. Uses 23 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Telegram for data processing. Uses 23 nodes and integrates with 5 services.",
"steps": [
{
"name": "When chat message received",
@@ -400144,11 +400174,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Error",
+ "Twilio",
"Mattermost",
- "Twilio"
+ "Error"
],
- "description": "Webhook-triggered automation that orchestrates Error, Mattermost, and Twilio for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Twilio, Mattermost, and Error for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Error Trigger",
@@ -401228,13 +401258,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Form",
"Httprequest",
"Wait",
- "Splitout",
- "Googlesheets"
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Wait for data processing. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Form, and Httprequest for data processing. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "On form submission - Discover Jobs",
@@ -402689,13 +402719,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Form",
"Httprequest",
"Wait",
- "Splitout",
- "Googlesheets"
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Wait for data processing. Uses 16 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Form, and Httprequest for data processing. Uses 16 nodes and integrates with 5 services.",
"steps": [
{
"name": "On form submission - Discover Jobs",
@@ -403721,15 +403751,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Form",
"Httprequest",
"Wait",
- "Aggregate",
+ "Gmail",
"Filter",
- "Googlesheets",
- "Gmail"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Wait for data processing. Uses 18 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Form, and Httprequest for data processing. Uses 18 nodes and integrates with 7 services.",
"steps": [
{
"name": "On form submission - Discover Jobs",
@@ -404637,17 +404667,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Mysql",
- "Html",
- "Splitinbatches",
+ "Code",
"Microsoftoutlook",
"Datetime",
+ "Html",
"Wait",
- "Schedule",
"Filter",
- "Code"
+ "Mysql",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Mysql, Html, and Splitinbatches for data processing. Uses 30 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Microsoftoutlook, and Datetime for data processing. Uses 30 nodes and integrates with 9 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -404999,10 +405029,10 @@
"triggerType": "Scheduled",
"integrations": [
"Telegram",
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Telegram, Httprequest, and Schedule for data processing. Uses 9 nodes.",
+ "description": "Scheduled automation that orchestrates Telegram, Schedule, and Httprequest for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Binance 24h Price Change",
@@ -405806,14 +405836,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Form",
"Httprequest",
"Wait",
- "Aggregate",
- "Googlesheets",
- "Gmail"
+ "Gmail",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Wait for data processing. Uses 17 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Form, and Httprequest for data processing. Uses 17 nodes and integrates with 6 services.",
"steps": [
{
"name": "On form submission - Amazon Reviews",
@@ -406350,10 +406380,10 @@
"triggerType": "Webhook",
"integrations": [
"Executecommandtool",
- "Executecommand",
- "Executeworkflow"
+ "Executeworkflow",
+ "Executecommand"
],
- "description": "Webhook-triggered automation that orchestrates Executecommandtool, Executecommand, and Executeworkflow for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Executecommandtool, Executeworkflow, and Executecommand for data processing. Uses 14 nodes.",
"steps": [
{
"name": "FileSystem MCP Server",
@@ -407014,11 +407044,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Postgrestool",
"Postgres",
+ "Postgrestool",
"Executeworkflow"
],
- "description": "Webhook-triggered automation that orchestrates Postgrestool, Postgres, and Executeworkflow for data processing. Uses 15 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Postgres, Postgrestool, and Executeworkflow for data processing. Uses 15 nodes.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -408360,12 +408390,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Extractfromfile",
"Googledrive",
"Executeworkflow",
+ "Extractfromfile",
"Googledrivetool"
],
- "description": "Complex multi-step automation that orchestrates Extractfromfile, Googledrive, and Executeworkflow for data processing. Uses 17 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googledrive, Executeworkflow, and Extractfromfile for data processing. Uses 17 nodes and integrates with 4 services.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -409294,12 +409324,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
"Github",
"Executeworkflow",
- "Httprequest"
+ "Httprequest",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Github, and Executeworkflow for data processing. Uses 19 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Github, Executeworkflow, and Httprequest for data processing. Uses 19 nodes and integrates with 4 services.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -411099,15 +411129,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Splitout",
- "Filter",
+ "Code",
"Manual",
+ "Httprequest",
+ "Splitout",
"Executeworkflow",
- "Code"
+ "Filter",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Splitout for data processing. Uses 44 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 44 nodes and integrates with 7 services.",
"steps": [
{
"name": "Qdrant MCP Server",
@@ -411995,11 +412025,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Aggregate",
"Executeworkflow",
- "Httprequest"
+ "Httprequest",
+ "Aggregate"
],
- "description": "Webhook-triggered automation that orchestrates Aggregate, Executeworkflow, and Httprequest for data processing. Uses 20 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Executeworkflow, Httprequest, and Aggregate for data processing. Uses 20 nodes.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -413425,13 +413455,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Httprequest",
- "Aggregate",
- "Filter",
"Executeworkflow",
- "Googlesheets"
+ "Filter",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Filter for data processing. Uses 25 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Httprequest, and Executeworkflow for data processing. Uses 25 nodes and integrates with 5 services.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -414102,14 +414132,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Limit",
- "Splitinbatches",
- "Httprequest",
- "Manual",
+ "Code",
"Googlesheets",
- "Code"
+ "Limit",
+ "Manual",
+ "Httprequest",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Limit, Splitinbatches, and Httprequest for data processing. Uses 14 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Limit for data processing. Uses 14 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -414778,14 +414808,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Splitinbatches",
- "Httprequest",
- "Googletasks",
+ "Googlesheets",
"Manual",
- "Googlesheets"
+ "Googletasks",
+ "Httprequest",
+ "Html",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Html, Splitinbatches, and Httprequest for data processing. Uses 17 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Googletasks for data processing. Uses 17 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -416352,16 +416382,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Splitinbatches",
- "Httprequest",
- "Splitout",
- "Schedule",
- "Googlesheets",
"Code",
- "Gmail"
+ "Googlesheets",
+ "Httprequest",
+ "Html",
+ "Splitout",
+ "Gmail",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Html, Splitinbatches, and Httprequest for data processing. Uses 21 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Httprequest for data processing. Uses 21 nodes and integrates with 8 services.",
"steps": [
{
"name": "Trigger at 08:30 am",
@@ -416929,14 +416959,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
- "Manual",
"Telegram",
- "Filter",
"Gmailtool",
- "Gmail"
+ "Manual",
+ "Gmail",
+ "Filter",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Manual, and Telegram for data processing. Uses 17 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Gmailtool, and Manual for data processing. Uses 17 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -417224,11 +417254,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Mondaycom",
+ "Freshdesk",
"Telegram",
- "Freshdesk"
+ "Mondaycom"
],
- "description": "Webhook-triggered automation that orchestrates Mondaycom, Telegram, and Freshdesk for data processing. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Freshdesk, Telegram, and Mondaycom for data processing. Uses 8 nodes.",
"steps": [
{
"name": "Telegram Trigger",
@@ -417518,10 +417548,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 9 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Authentication",
@@ -417843,10 +417873,10 @@
"triggerType": "Manual",
"integrations": [
"Converttofile",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Converttofile, Manual, and Httprequest for data processing. Uses 11 nodes.",
+ "description": "Manual workflow that orchestrates Converttofile, Httprequest, and Manual for data processing. Uses 11 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -418295,13 +418325,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Webhook",
"Httprequest",
"Wait",
- "Webhook",
- "Code",
"Emailsend"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Webhook for data processing. Uses 15 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Httprequest for data processing. Uses 15 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook",
@@ -418969,13 +418999,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Converttofile",
- "Manual",
- "Googlesheets",
"Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Converttofile, and Manual for data processing. Uses 18 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Httprequest for data processing. Uses 18 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking 'Test workflow'",
@@ -419476,11 +419506,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Hubspot",
"Form",
- "Gmailtool",
- "Hubspot"
+ "Gmailtool"
],
- "description": "Webhook-triggered automation that orchestrates Form, Gmailtool, and Hubspot for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Hubspot, Form, and Gmailtool for data processing. Uses 14 nodes.",
"steps": [
{
"name": "HubSpot",
@@ -419984,10 +420014,10 @@
"integrations": [
"Code",
"Googledrive",
- "Manual",
- "Executeworkflow"
+ "Executeworkflow",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Code, Googledrive, and Manual for data processing. Uses 16 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googledrive, and Executeworkflow for data processing. Uses 16 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -420723,16 +420753,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Readpdf",
- "Webhook",
- "Respondtowebhook",
- "Filter",
"Code",
- "Googledrive",
+ "Respondtowebhook",
+ "Webhook",
+ "Noop",
"Gmail",
- "Noop"
+ "Filter",
+ "Googledrive",
+ "Readpdf"
],
- "description": "Complex multi-step automation that orchestrates Readpdf, Webhook, and Respondtowebhook for data processing. Uses 20 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Webhook for data processing. Uses 20 nodes and integrates with 8 services.",
"steps": [
{
"name": "Webhook",
@@ -421261,10 +421291,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Emailreadimap",
- "Hubspot"
+ "Hubspot",
+ "Emailreadimap"
],
- "description": "Manual workflow that connects Emailreadimap and Hubspot for data processing. Uses 13 nodes.",
+ "description": "Manual workflow that connects Hubspot and Emailreadimap for data processing. Uses 13 nodes.",
"steps": [
{
"name": "OpenAI Chat Model",
@@ -422982,14 +423012,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "N8N",
- "Aggregate",
"Splitout",
+ "N8N",
+ "Executeworkflow",
"Filter",
- "Redis",
- "Executeworkflow"
+ "Aggregate",
+ "Redis"
],
- "description": "Complex multi-step automation that orchestrates N8N, Aggregate, and Splitout for data processing. Uses 46 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Splitout, N8N, and Executeworkflow for data processing. Uses 46 nodes and integrates with 6 services.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -424460,16 +424490,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
"Form",
+ "Manual",
"Httprequest",
"Extractfromfile",
"Splitout",
- "Manual",
- "Filter",
- "Googlesheets",
- "Code"
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Extractfromfile for data processing. Uses 36 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Form for data processing. Uses 36 nodes and integrates with 8 services.",
"steps": [
{
"name": "Start here to update your field list",
@@ -425458,18 +425488,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Limit",
- "Splitinbatches",
- "N8N",
- "Executiondata",
- "Schedule",
- "Discord",
- "Executeworkflow",
"Code",
+ "Executiondata",
+ "Limit",
+ "Discord",
+ "Gmail",
+ "N8N",
+ "Executeworkflow",
"Googledrive",
- "Gmail"
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Limit, Splitinbatches, and N8N for data processing. Uses 29 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Executiondata, and Limit for data processing. Uses 29 nodes and integrates with 10 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -426885,15 +426915,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Html",
- "Httprequest",
- "Schedule",
- "Executeworkflow",
"Code",
- "Emailsend"
+ "Form",
+ "Httprequest",
+ "Html",
+ "Executeworkflow",
+ "Emailsend",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Form, Html, and Httprequest for data processing. Uses 45 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Httprequest for data processing. Uses 45 nodes and integrates with 7 services.",
"steps": [
{
"name": "Workflow Input Trigger",
@@ -427584,16 +427614,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Aggregate",
- "Markdown",
- "Splitout",
- "Filter",
"Googlecalendar",
- "Gmail"
+ "Httprequest",
+ "Splitout",
+ "Gmail",
+ "Filter",
+ "Markdown",
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Aggregate for data processing. Uses 18 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Googlecalendar, Httprequest, and Splitout for data processing. Uses 18 nodes and integrates with 8 services.",
"steps": [
{
"name": "Google Calendar Trigger",
@@ -428050,12 +428080,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Emailsend",
+ "Googlesheets",
"Webhook",
- "Httprequest",
- "Googlesheets"
+ "Emailsend",
+ "Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Emailsend, Webhook, and Httprequest for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Webhook, and Emailsend for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webhook - Lead Capture",
@@ -429863,16 +429893,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Slack",
+ "Code",
+ "Googlesheets",
"Httprequest",
"Splitout",
- "Schedule",
"Filter",
- "Googlesheets",
- "Code"
+ "Slack",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Slack, and Httprequest for data processing. Uses 35 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Httprequest for data processing. Uses 35 nodes and integrates with 8 services.",
"steps": [
{
"name": "Google Sheets Trigger",
@@ -430970,14 +431000,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Wait",
"Code",
"Manual",
- "Redis",
+ "Noop",
+ "Wait",
"Executeworkflow",
- "Noop"
+ "Redis"
],
- "description": "Complex multi-step automation that orchestrates Wait, Code, and Manual for data processing. Uses 30 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Noop for data processing. Uses 30 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -431390,13 +431420,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Respondtowebhook",
"Httprequest",
"Wait",
- "Respondtowebhook",
- "Code"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 11 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Httprequest for data processing. Uses 11 nodes and integrates with 5 services.",
"steps": [
{
"name": "Generate A-Z Queries",
@@ -432284,13 +432314,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
+ "Facebookgraphapi",
"Httprequest",
"Wait",
- "Schedule",
- "Facebookgraphapi",
- "Googlesheets"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Schedule for data processing. Uses 26 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Facebookgraphapi, and Httprequest for data processing. Uses 26 nodes and integrates with 5 services.",
"steps": [
{
"name": "Scheduled Start: Check for New Posts",
@@ -432954,11 +432984,11 @@
"complexity": "high",
"triggerType": "Manual",
"integrations": [
+ "Googlesheets",
"Reddit",
- "Manual",
- "Googlesheets"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Reddit, Manual, and Googlesheets for data processing. Uses 17 nodes.",
+ "description": "Manual workflow that orchestrates Googlesheets, Reddit, and Manual for data processing. Uses 17 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -433943,14 +433973,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Removeduplicates",
- "Aggregate",
- "Schedule",
"Jira",
- "Noop"
+ "Removeduplicates",
+ "Noop",
+ "Splitinbatches",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Removeduplicates, and Aggregate for data processing. Uses 27 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Jira, Removeduplicates, and Noop for data processing. Uses 27 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -436371,59 +436401,59 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Gumroad",
+ "Code",
+ "Executiondata",
+ "Limit",
+ "Respondtowebhook",
+ "Youtube",
+ "Noop",
"Wait",
- "Aggregate",
- "Extractfromfile",
- "Localfile",
+ "Emailsendtool",
+ "Googledrive",
+ "Googlesheets",
+ "Renamekeys",
+ "Gmailtool",
"Executecommand",
- "Markdown",
+ "Removeduplicates",
+ "Html",
+ "Localfile",
+ "Gmail",
"Splitout",
"Converttofile",
- "Redistool",
- "Calendly",
- "Googlesheets",
- "Code",
- "Googledrive",
- "Noop",
- "Pushbullet",
- "Youtube",
- "Emailreadimap",
- "Splitinbatches",
- "Removeduplicates",
- "Googlecalendartool",
- "Webhook",
- "Summarize",
- "Renamekeys",
"Schedule",
- "Respondtowebhook",
- "Manual",
- "Executeworkflow",
+ "Aggregate",
"Sort",
- "Bitly",
- "Form",
+ "Redistool",
+ "Emailreadimap",
"Dropbox",
- "Html",
- "Ftp",
- "Emailsendtool",
- "Rssfeedread",
- "Googledocstool",
- "Twitter",
- "Googlecalendar",
- "Aitransform",
- "Limit",
- "Httprequest",
- "Googledocs",
- "Datetime",
- "Executiondata",
- "Postgrestool",
- "Filter",
- "Googlesheetstool",
+ "Form",
"Reddit",
- "Gmailtool",
- "Gmail"
+ "Webhook",
+ "Datetime",
+ "Gumroad",
+ "Googlecalendartool",
+ "Extractfromfile",
+ "Httprequest",
+ "Twitter",
+ "Googledocstool",
+ "Markdown",
+ "Postgrestool",
+ "Rssfeedread",
+ "Googlecalendar",
+ "Pushbullet",
+ "Googlesheetstool",
+ "Manual",
+ "Ftp",
+ "Aitransform",
+ "Summarize",
+ "Calendly",
+ "Executeworkflow",
+ "Filter",
+ "Bitly",
+ "Splitinbatches",
+ "Googledocs"
],
- "description": "Complex multi-step automation that orchestrates Gumroad, Wait, and Aggregate for data processing. Uses 113 nodes and integrates with 51 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Executiondata, and Limit for data processing. Uses 113 nodes and integrates with 51 services.",
"steps": [
{
"name": "Replace Me",
@@ -436781,13 +436811,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Microsoftoutlook",
+ "Jira",
"Removeduplicates",
"Markdown",
- "Schedule",
- "Jira"
+ "Microsoftoutlook",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Microsoftoutlook, Removeduplicates, and Markdown for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Jira, Removeduplicates, and Markdown for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -437163,11 +437193,11 @@
"integrations": [
"Linear",
"Removeduplicates",
+ "Gmail",
"Markdown",
- "Schedule",
- "Gmail"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Linear, Removeduplicates, and Markdown for data processing. Uses 13 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Linear, Removeduplicates, and Gmail for data processing. Uses 13 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -437569,14 +437599,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Splitout",
- "Manual",
- "Googlesheets",
- "Code"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Splitout for data processing. Uses 11 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 11 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -437783,12 +437813,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Noop",
"Webhook",
- "Respondtowebhook",
"Converttofile",
- "Noop"
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and Converttofile for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Noop, Webhook, and Converttofile for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "Respond to Webhook",
@@ -439562,17 +439592,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Splitout",
- "Manual",
- "Filter",
- "Executeworkflow",
- "Googlesheets",
"Code",
+ "Googlesheets",
+ "Manual",
+ "Httprequest",
+ "Noop",
+ "Splitout",
"Gmail",
- "Noop"
+ "Executeworkflow",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Splitout, and Manual for data processing. Uses 46 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 46 nodes and integrates with 9 services.",
"steps": [
{
"name": "Search for user by link",
@@ -440299,10 +440329,10 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Telegram",
- "Gmail"
+ "Gmail",
+ "Telegram"
],
- "description": "Webhook-triggered automation that connects Telegram and Gmail for data processing. Uses 24 nodes.",
+ "description": "Webhook-triggered automation that connects Gmail and Telegram for data processing. Uses 24 nodes.",
"steps": [
{
"name": "New Email Received",
@@ -441349,13 +441379,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Executeworkflow",
- "Googlesheets",
"Code",
- "Noop"
+ "Googlesheets",
+ "Noop",
+ "Executeworkflow",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Executeworkflow, and Googlesheets for data processing. Uses 19 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Noop for data processing. Uses 19 nodes and integrates with 5 services.",
"steps": [
{
"name": "Triggered on Restaurant Chat workflow",
@@ -442106,14 +442136,14 @@
"triggerType": "Complex",
"integrations": [
"Form",
- "Html",
"Httprequest",
+ "Html",
"Extractfromfile",
- "Converttofile",
"Splitout",
- "Gmail"
+ "Gmail",
+ "Converttofile"
],
- "description": "Complex multi-step automation that orchestrates Form, Html, and Httprequest for data processing. Uses 21 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Html for data processing. Uses 21 nodes and integrates with 7 services.",
"steps": [
{
"name": "On form submission",
@@ -443179,16 +443209,16 @@
"triggerType": "Complex",
"integrations": [
"Hubspot",
- "Httprequest",
"Webhook",
+ "Httprequest",
"Googlecalendartool",
- "Markdown",
"Splitout",
- "Filter",
+ "Gmail",
"Executeworkflow",
- "Gmail"
+ "Filter",
+ "Markdown"
],
- "description": "Complex multi-step automation that orchestrates Hubspot, Httprequest, and Webhook for data processing. Uses 31 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Hubspot, Webhook, and Httprequest for data processing. Uses 31 nodes and integrates with 9 services.",
"steps": [
{
"name": "Webhook",
@@ -444825,17 +444855,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Noop",
+ "Splitout",
+ "Executeworkflow",
+ "Filter",
"Slack",
"Splitinbatches",
- "Aggregate",
- "Splitout",
"Schedule",
- "Filter",
- "Executeworkflow",
- "Code",
- "Noop"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Slack, Splitinbatches, and Aggregate for data processing. Uses 47 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Noop, and Splitout for data processing. Uses 47 nodes and integrates with 9 services.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -445398,10 +445428,10 @@
"integrations": [
"Code",
"Webhook",
- "Respondtowebhook",
- "Noop"
+ "Noop",
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Code, Webhook, and Respondtowebhook for data processing. Uses 16 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Noop for data processing. Uses 16 nodes and integrates with 4 services.",
"steps": [
{
"name": "401 Unauthorized",
@@ -445879,14 +445909,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
- "Markdown",
- "Splitout",
- "Schedule",
"Code",
- "Microsoftteams"
+ "Splitout",
+ "Microsoftteams",
+ "Markdown",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Markdown, and Splitout for data processing. Uses 17 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Splitout, and Microsoftteams for data processing. Uses 17 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -446304,11 +446334,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Respondtowebhook",
+ "Code",
"Webhook",
- "Code"
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Respondtowebhook, Webhook, and Code for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Webhook, and Respondtowebhook for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Webhook1",
@@ -448190,14 +448220,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
- "Wait",
"Manual",
- "Redis",
+ "Noop",
+ "Wait",
"Executeworkflow",
- "Noop"
+ "Stopanderror",
+ "Redis"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Wait, and Manual for data processing. Uses 43 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Noop, and Wait for data processing. Uses 43 nodes and integrates with 6 services.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -450745,14 +450775,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Supabase",
- "Webhook",
- "Itemlists",
- "Googlesheets",
"Code",
- "Gmail"
+ "Googlesheets",
+ "Webhook",
+ "Gmail",
+ "Supabase",
+ "Itemlists"
],
- "description": "Complex multi-step automation that orchestrates Supabase, Webhook, and Itemlists for data processing. Uses 51 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Webhook for data processing. Uses 51 nodes and integrates with 6 services.",
"steps": [
{
"name": "Get Approvals",
@@ -451006,12 +451036,12 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Emailsend",
- "Typeform",
"Slack",
- "Googlesheets"
+ "Googlesheets",
+ "Emailsend",
+ "Typeform"
],
- "description": "Webhook-triggered automation that orchestrates Emailsend, Typeform, and Slack for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Googlesheets, and Emailsend for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Typeform Trigger",
@@ -451180,10 +451210,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "N8N"
+ "N8N",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and N8N for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that connects N8N and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -451521,11 +451551,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Extractfromfile",
"Emailreadimap",
+ "Extractfromfile",
"Noop"
],
- "description": "Manual workflow that orchestrates Extractfromfile, Emailreadimap, and Noop for data processing. Uses 10 nodes.",
+ "description": "Manual workflow that orchestrates Emailreadimap, Extractfromfile, and Noop for data processing. Uses 10 nodes.",
"steps": [
{
"name": "Email trigger",
@@ -452198,11 +452228,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Error",
+ "N8N",
"Gmail",
- "N8N"
+ "Error"
],
- "description": "Complex multi-step automation that orchestrates Code, Error, and Gmail for notifications and alerts. Uses 13 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, N8N, and Gmail for notifications and alerts. Uses 13 nodes and integrates with 4 services.",
"steps": [
{
"name": "Error Trigger",
@@ -452979,16 +453009,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Summarize",
"Code",
- "Splitout",
- "Schedule",
"Telegram",
- "Notion",
"Quickchart",
- "Editimage"
+ "Notion",
+ "Editimage",
+ "Summarize",
+ "Splitout",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Summarize, Code, and Splitout for data processing. Uses 28 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Quickchart for data processing. Uses 28 nodes and integrates with 8 services.",
"steps": [
{
"name": "Schedule Trigger | for send chart report",
@@ -453541,15 +453571,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Limit",
- "Html",
- "Httprequest",
- "Aggregate",
- "Rssfeedread",
"Manual",
- "Code"
+ "Httprequest",
+ "Html",
+ "Aggregate",
+ "Rssfeedread"
],
- "description": "Complex multi-step automation that orchestrates Limit, Html, and Httprequest for data processing. Uses 20 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Limit, and Manual for data processing. Uses 20 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -454241,10 +454271,10 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that connects Manual and Httprequest to create new records. Uses 21 nodes.",
+ "description": "Webhook-triggered automation that connects Httprequest and Manual to create new records. Uses 21 nodes.",
"steps": [
{
"name": "Set Fields - URL and Webhook URL",
@@ -455573,13 +455603,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
+ "Code",
"Respondtowebhook",
- "Itemlists",
- "Code"
+ "Webhook",
+ "Httprequest",
+ "Itemlists"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Respondtowebhook for data processing. Uses 35 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Webhook for data processing. Uses 35 nodes and integrates with 5 services.",
"steps": [
{
"name": "Receive Headers",
@@ -456662,12 +456692,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Webhook",
- "Noop",
"Httprequest",
- "Googlesheets"
+ "Noop"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Noop, and Httprequest to synchronize data. Uses 13 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Webhook, and Httprequest to synchronize data. Uses 13 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webhook",
@@ -456796,11 +456826,11 @@
"triggerType": "Scheduled",
"integrations": [
"Lingvanex",
- "Telegram",
"Cron",
+ "Telegram",
"Httprequest"
],
- "description": "Scheduled automation that orchestrates Lingvanex, Telegram, and Cron for data processing. Uses 4 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Lingvanex, Cron, and Telegram for data processing. Uses 4 nodes and integrates with 4 services.",
"steps": [
{
"name": "Cron",
@@ -456877,10 +456907,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Mailchimp"
+ "Mailchimp",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Mailchimp for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Mailchimp and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -457434,13 +457464,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Slack",
"Manual",
"Cron",
- "Googledrive",
- "Gmail"
+ "Gmail",
+ "Slack",
+ "Googledrive"
],
- "description": "Scheduled automation that orchestrates Slack, Manual, and Cron for data processing. Uses 10 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Manual, Cron, and Gmail for data processing. Uses 10 nodes and integrates with 5 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -457937,13 +457967,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Rssfeedread",
- "Manual",
"Telegram",
- "Cron"
+ "Manual",
+ "Cron",
+ "Splitinbatches",
+ "Rssfeedread"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Rssfeedread, and Manual for data processing. Uses 18 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Manual, and Cron for data processing. Uses 18 nodes and integrates with 5 services.",
"steps": [
{
"name": "是否重复",
@@ -458110,12 +458140,12 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Datetime",
- "Mattermost",
+ "Googlesheets",
"Cron",
- "Googlesheets"
+ "Mattermost",
+ "Datetime"
],
- "description": "Scheduled automation that orchestrates Datetime, Mattermost, and Cron for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Googlesheets, Cron, and Mattermost for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Cron",
@@ -458317,11 +458347,11 @@
"triggerType": "Webhook",
"integrations": [
"Manual",
- "Thehive",
"Webhook",
- "Signl4"
+ "Signl4",
+ "Thehive"
],
- "description": "Webhook-triggered automation that orchestrates Manual, Thehive, and Webhook for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Manual, Webhook, and Signl4 for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "TheHive Webhook Request",
@@ -458520,10 +458550,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Xml"
+ "Xml",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Xml for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that connects Xml and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -459148,13 +459178,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Schedule",
- "Filter",
"Googlesheets",
- "Gmail"
+ "Gmail",
+ "Filter",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Schedule, and Filter for data processing. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Gmail, and Filter for data processing. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "Scheduled Start: Daily Churn Check",
@@ -459272,10 +459302,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Twilio"
+ "Twilio",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Twilio for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Twilio and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -459433,12 +459463,12 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Emailsend",
- "Typeform",
"Slack",
- "Googlesheets"
+ "Googlesheets",
+ "Emailsend",
+ "Typeform"
],
- "description": "Webhook-triggered automation that orchestrates Emailsend, Typeform, and Slack for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Googlesheets, and Emailsend for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Typeform Trigger",
@@ -459616,11 +459646,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Medium",
"Webhook",
+ "Medium",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Medium, Webhook, and Httprequest for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Medium, and Httprequest for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Webhook",
@@ -459804,11 +459834,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Htmlextract",
"Httprequest",
- "Htmlextract"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Httprequest, and Htmlextract for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates Htmlextract, Httprequest, and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -461083,14 +461113,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
- "Markdown",
- "Splitout",
"Manual",
- "Noop"
+ "Webhook",
+ "Httprequest",
+ "Noop",
+ "Splitout",
+ "Markdown"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Markdown for data processing. Uses 38 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Webhook, and Httprequest for data processing. Uses 38 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -461171,10 +461201,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Signl4"
+ "Signl4",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Signl4 for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Signl4 and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -461243,10 +461273,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Freshdesk"
+ "Freshdesk",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Freshdesk for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Freshdesk and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -461449,12 +461479,12 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Odoo",
"Code",
- "Filter",
- "Shopify"
+ "Odoo",
+ "Shopify",
+ "Filter"
],
- "description": "Webhook-triggered automation that orchestrates Odoo, Code, and Filter to synchronize data. Uses 5 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Odoo, and Shopify to synchronize data. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Shopify Trigger",
@@ -462106,10 +462136,10 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
- "Mautic"
+ "Mautic",
+ "Webhook"
],
- "description": "Webhook-triggered automation that connects Webhook and Mautic for data processing. Uses 17 nodes.",
+ "description": "Webhook-triggered automation that connects Mautic and Webhook for data processing. Uses 17 nodes.",
"steps": [
{
"name": "Webhook",
@@ -462261,11 +462291,11 @@
"triggerType": "Scheduled",
"integrations": [
"Bannerbear",
- "Rocketchat",
"Cron",
- "Httprequest"
+ "Httprequest",
+ "Rocketchat"
],
- "description": "Scheduled automation that orchestrates Bannerbear, Rocketchat, and Cron for data processing. Uses 4 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Bannerbear, Cron, and Httprequest for data processing. Uses 4 nodes and integrates with 4 services.",
"steps": [
{
"name": "Cron",
@@ -463307,15 +463337,15 @@
"triggerType": "Complex",
"integrations": [
"Dropbox",
- "Splitinbatches",
- "Httprequest",
"Manual",
- "Movebinarydata",
"Cron",
+ "Httprequest",
"Noop",
- "Airtable"
+ "Airtable",
+ "Movebinarydata",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Dropbox, Splitinbatches, and Httprequest for data processing. Uses 19 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Dropbox, Manual, and Cron for data processing. Uses 19 nodes and integrates with 8 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -463706,10 +463736,10 @@
"triggerType": "Scheduled",
"integrations": [
"Telegram",
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Telegram, Httprequest, and Schedule for data processing. Uses 12 nodes.",
+ "description": "Scheduled automation that orchestrates Telegram, Schedule, and Httprequest for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Trigger at 8am daily",
@@ -464538,17 +464568,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Googlechat",
- "Summarize",
- "Extractfromfile",
- "Schedule",
- "Odoo",
- "Filter",
- "Manual",
"Code",
- "Googledrive"
+ "Odoo",
+ "Manual",
+ "Googlechat",
+ "Extractfromfile",
+ "Summarize",
+ "Filter",
+ "Googledrive",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Googlechat, Summarize, and Extractfromfile for data processing. Uses 19 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Odoo, and Manual for data processing. Uses 19 nodes and integrates with 9 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -465367,11 +465397,11 @@
"triggerType": "Complex",
"integrations": [
"Webhook",
- "Respondtowebhook",
"Filter",
- "Httprequest"
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Respondtowebhook, and Filter for data processing. Uses 14 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Filter, and Httprequest for data processing. Uses 14 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webhook",
@@ -467564,14 +467594,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Limit",
"Httprequest",
"Summarize",
"Splitout",
- "Redis",
- "Code"
+ "Redis"
],
- "description": "Complex multi-step automation that orchestrates Limit, Httprequest, and Summarize for data processing. Uses 72 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Limit, and Httprequest for data processing. Uses 72 nodes and integrates with 6 services.",
"steps": [
{
"name": "Chat",
@@ -467987,10 +468017,10 @@
"integrations": [
"Code",
"Webhook",
- "Respondtowebhook",
- "Httprequest"
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Code, Webhook, and Respondtowebhook for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Webhook, and Httprequest for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "Respond to Webhook",
@@ -468523,11 +468553,11 @@
"triggerType": "Complex",
"integrations": [
"Wait",
- "Thehive",
"Emailreadimap",
- "Cortex"
+ "Cortex",
+ "Thehive"
],
- "description": "Complex multi-step automation that orchestrates Wait, Thehive, and Emailreadimap for data processing. Uses 15 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Wait, Emailreadimap, and Cortex for data processing. Uses 15 nodes and integrates with 4 services.",
"steps": [
{
"name": "IMAP Email",
@@ -468866,12 +468896,12 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Cron",
"Noop",
- "Manual",
- "Httprequest"
+ "Cron",
+ "Httprequest",
+ "Manual"
],
- "description": "Scheduled automation that orchestrates Cron, Noop, and Manual for data processing. Uses 10 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Noop, Cron, and Httprequest for data processing. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -468967,11 +468997,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Functionitem",
+ "Googlesheets",
"Telegram",
- "Googlesheets"
+ "Functionitem"
],
- "description": "Webhook-triggered automation that orchestrates Functionitem, Telegram, and Googlesheets for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Telegram, and Functionitem for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Get journal reply",
@@ -469288,12 +469318,12 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
+ "Cron",
"Zulip",
- "Manual",
"Zammad",
- "Cron"
+ "Manual"
],
- "description": "Scheduled automation that orchestrates Zulip, Manual, and Zammad for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Cron, Zulip, and Zammad for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Ticket Filtering",
@@ -469379,10 +469409,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Awssns"
+ "Awssns",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Awssns for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Awssns and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -469557,10 +469587,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Awsses"
+ "Awsses",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Awsses for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Awsses and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -469672,10 +469702,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Awslambda"
+ "Awslambda",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Awslambda for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Awslambda and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -469743,10 +469773,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Msg91"
+ "Msg91",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Msg91 for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Msg91 and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -469918,11 +469948,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Writebinaryfile",
"Googledrive",
+ "Writebinaryfile",
"Manual"
],
- "description": "Manual workflow that orchestrates Writebinaryfile, Googledrive, and Manual for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Googledrive, Writebinaryfile, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -470113,10 +470143,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Hunter"
+ "Hunter",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Hunter for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Hunter and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -470232,10 +470262,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Mailjet"
+ "Mailjet",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Mailjet for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Mailjet and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -471599,10 +471629,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Xero"
+ "Xero",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Xero for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Xero and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -471950,10 +471980,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Shopify"
+ "Shopify",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Shopify for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Shopify and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -472021,10 +472051,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Mautic"
+ "Mautic",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Mautic for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Mautic and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -472097,10 +472127,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Typeform",
- "Airtable"
+ "Airtable",
+ "Typeform"
],
- "description": "Webhook-triggered automation that connects Typeform and Airtable for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Airtable and Typeform for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Typeform Trigger",
@@ -472367,10 +472397,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Keap"
+ "Keap",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Keap for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Keap and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -472555,10 +472585,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Redis"
+ "Redis",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Redis for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Redis and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -472627,10 +472657,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Graphql"
+ "Graphql",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Graphql for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Graphql and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -472857,11 +472887,11 @@
"triggerType": "Manual",
"integrations": [
"Bannerbear",
+ "Airtable",
"Trello",
- "Manual",
- "Airtable"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Bannerbear, Trello, and Manual for data processing. Uses 4 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Bannerbear, Airtable, and Trello for data processing. Uses 4 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -472949,11 +472979,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Xml",
"Httprequest",
- "Xml"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Httprequest, and Xml for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Xml, Httprequest, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -473131,12 +473161,12 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Typeform",
"Airtable",
"Mindee",
- "Httprequest"
+ "Httprequest",
+ "Typeform"
],
- "description": "Webhook-triggered automation that orchestrates Typeform, Airtable, and Mindee for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Airtable, Mindee, and Httprequest for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Get Receipt",
@@ -473257,10 +473287,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Microsoftonedrive"
+ "Microsoftonedrive",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Microsoftonedrive for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Microsoftonedrive and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -473397,10 +473427,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Helpscout"
+ "Helpscout",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Helpscout for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Helpscout and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -473518,10 +473548,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Error",
- "Twilio"
+ "Twilio",
+ "Error"
],
- "description": "Webhook-triggered automation that connects Error and Twilio for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Twilio and Error for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Error Trigger",
@@ -473590,10 +473620,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Mandrill"
+ "Mandrill",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Mandrill for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Mandrill and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -473816,11 +473846,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
"Editimage",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Editimage, and Httprequest for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Editimage, Httprequest, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -473883,10 +473913,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Readbinaryfile"
+ "Readbinaryfile",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Readbinaryfile for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Readbinaryfile and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -473949,10 +473979,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Readbinaryfiles"
+ "Readbinaryfiles",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Readbinaryfiles for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Readbinaryfiles and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -474313,10 +474343,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Renamekeys"
+ "Renamekeys",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Renamekeys for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that connects Renamekeys and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -474379,10 +474409,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Rssfeedread"
+ "Rssfeedread",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Rssfeedread for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Rssfeedread and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -474454,10 +474484,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Emailsend"
+ "Emailsend",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Emailsend for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Emailsend and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -474541,11 +474571,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Readbinaryfile",
"Readpdf",
- "Manual",
- "Readbinaryfile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Readpdf, Manual, and Readbinaryfile for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Readbinaryfile, Readpdf, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -474631,11 +474661,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Readbinaryfile",
"Spreadsheetfile",
- "Manual",
- "Readbinaryfile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Spreadsheetfile, Manual, and Readbinaryfile for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Readbinaryfile, Spreadsheetfile, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -474746,10 +474776,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Executeworkflow"
+ "Executeworkflow",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Executeworkflow for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Executeworkflow and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -475062,10 +475092,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Cratedb"
+ "Cratedb",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Cratedb for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that connects Cratedb and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -475654,13 +475684,13 @@
"triggerType": "Scheduled",
"integrations": [
"Functionitem",
- "Httprequest",
- "Nextcloud",
- "Movebinarydata",
"Manual",
- "Cron"
+ "Cron",
+ "Httprequest",
+ "Movebinarydata",
+ "Nextcloud"
],
- "description": "Scheduled automation that orchestrates Functionitem, Httprequest, and Nextcloud for data backup operations. Uses 9 nodes and integrates with 6 services.",
+ "description": "Scheduled automation that orchestrates Functionitem, Manual, and Cron for data backup operations. Uses 9 nodes and integrates with 6 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -476071,13 +476101,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitout",
- "Facebookgraphapi",
- "Filter",
+ "Code",
"Manual",
- "Code"
+ "Facebookgraphapi",
+ "Splitout",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Splitout, Facebookgraphapi, and Filter for data processing. Uses 11 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Facebookgraphapi for data processing. Uses 11 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -477112,13 +477142,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Telegram",
"Form",
"Httprequest",
- "Aggregate",
- "Telegram",
- "Wordpress"
+ "Wordpress",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Aggregate for data processing. Uses 25 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Form, and Httprequest for data processing. Uses 25 nodes and integrates with 5 services.",
"steps": [
{
"name": "On form submission",
@@ -477717,13 +477747,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Httprequest",
- "Aggregate",
- "Markdown",
"Splitout",
- "Code"
+ "Markdown",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Markdown for data processing. Uses 19 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Splitout for data processing. Uses 19 nodes and integrates with 5 services.",
"steps": [
{
"name": "Create a simple Trigger to have the Chat button within N8N",
@@ -479247,12 +479277,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
"Code",
"Telegram",
+ "Stopanderror",
"Limit"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Code, and Telegram for data processing. Uses 20 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Stopanderror for data processing. Uses 20 nodes and integrates with 4 services.",
"steps": [
{
"name": "Telegram Trigger",
@@ -479576,10 +479606,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Googlesheets"
+ "Googlesheets",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Googlesheets to update existing data. Uses 7 nodes.",
+ "description": "Manual workflow that connects Googlesheets and Manual to update existing data. Uses 7 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -479762,10 +479792,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Github"
+ "Github",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Github for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Github and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -479910,11 +479940,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
"Slack",
+ "Webhook",
"Graphql"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Slack, and Graphql for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Webhook, and Graphql for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Webhook",
@@ -480141,10 +480171,10 @@
"triggerType": "Webhook",
"integrations": [
"Webhook",
- "Clockify",
- "Httprequest"
+ "Httprequest",
+ "Clockify"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Clockify, and Httprequest to update existing data. Uses 6 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Httprequest, and Clockify to update existing data. Uses 6 nodes.",
"steps": [
{
"name": "Webhook",
@@ -480280,10 +480310,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Googlesheets"
+ "Googlesheets",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Googlesheets for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that connects Googlesheets and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -480417,10 +480447,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -480617,10 +480647,10 @@
"triggerType": "Scheduled",
"integrations": [
"Mysql",
- "Manual",
- "Cron"
+ "Cron",
+ "Manual"
],
- "description": "Scheduled automation that orchestrates Mysql, Manual, and Cron for data processing. Uses 3 nodes.",
+ "description": "Scheduled automation that orchestrates Mysql, Cron, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -480882,10 +480912,10 @@
"triggerType": "Manual",
"integrations": [
"Dropbox",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Dropbox, Manual, and Httprequest for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Dropbox, Httprequest, and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -481082,10 +481112,10 @@
"triggerType": "Manual",
"integrations": [
"Nextcloud",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Nextcloud, Manual, and Httprequest for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Nextcloud, Httprequest, and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -481393,12 +481423,12 @@
"triggerType": "Manual",
"integrations": [
"Emailreadimap",
- "Slack",
"Readbinaryfile",
"Spreadsheetfile",
- "Emailsend"
+ "Emailsend",
+ "Slack"
],
- "description": "Manual workflow that orchestrates Emailreadimap, Slack, and Readbinaryfile for data processing. Uses 9 nodes and integrates with 5 services.",
+ "description": "Manual workflow that orchestrates Emailreadimap, Readbinaryfile, and Spreadsheetfile for data processing. Uses 9 nodes and integrates with 5 services.",
"steps": [
{
"name": "Read Harvey's Email",
@@ -481529,11 +481559,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Cron",
"Mautic",
- "Googlesheets"
+ "Googlesheets",
+ "Cron"
],
- "description": "Scheduled automation that orchestrates Cron, Mautic, and Googlesheets for data processing. Uses 4 nodes.",
+ "description": "Scheduled automation that orchestrates Mautic, Googlesheets, and Cron for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Cron",
@@ -481693,10 +481723,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Contentful"
+ "Contentful",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Contentful for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Contentful and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -481767,10 +481797,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Unleashedsoftware"
+ "Unleashedsoftware",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Unleashedsoftware for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Unleashedsoftware and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -481894,10 +481924,10 @@
"triggerType": "Manual",
"integrations": [
"S3",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates S3, Manual, and Httprequest for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates S3, Httprequest, and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -482008,12 +482038,12 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Writebinaryfile",
"Movebinarydata",
- "Manual",
- "Httprequest"
+ "Writebinaryfile",
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Writebinaryfile, Movebinarydata, and Manual for data processing. Uses 4 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Movebinarydata, Writebinaryfile, and Httprequest for data processing. Uses 4 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -482351,12 +482381,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Trello",
- "Typeform",
+ "Noop",
"Airtable",
- "Noop"
+ "Trello",
+ "Typeform"
],
- "description": "Webhook-triggered automation that orchestrates Trello, Typeform, and Airtable for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Noop, Airtable, and Trello for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "Typeform Trigger",
@@ -482853,13 +482883,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Mysql",
- "Datetime",
- "Comparedatasets",
"Pipedrive",
- "Schedule"
+ "Datetime",
+ "Mysql",
+ "Schedule",
+ "Comparedatasets"
],
- "description": "Complex multi-step automation that orchestrates Mysql, Datetime, and Comparedatasets to synchronize data. Uses 14 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Pipedrive, Datetime, and Mysql to synchronize data. Uses 14 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -483044,11 +483074,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Httprequest",
"Ftp",
- "Httprequest"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Ftp, and Httprequest for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates Httprequest, Ftp, and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -483175,10 +483205,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Salesforce"
+ "Salesforce",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Salesforce for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that connects Salesforce and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -483406,10 +483436,10 @@
"triggerType": "Manual",
"integrations": [
"Linkedin",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Linkedin, Manual, and Httprequest for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Linkedin, Httprequest, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -483755,10 +483785,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Error",
- "Gmail"
+ "Gmail",
+ "Error"
],
- "description": "Webhook-triggered automation that connects Error and Gmail for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Gmail and Error for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Error Trigger",
@@ -483884,10 +483914,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Taiga"
+ "Taiga",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Taiga to create new records. Uses 4 nodes.",
+ "description": "Manual workflow that connects Taiga and Manual to create new records. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -484035,11 +484065,11 @@
"triggerType": "Scheduled",
"integrations": [
"Noop",
- "Openweathermap",
"Twilio",
- "Cron"
+ "Cron",
+ "Openweathermap"
],
- "description": "Scheduled automation that orchestrates Noop, Openweathermap, and Twilio for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Noop, Twilio, and Cron for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Cron",
@@ -484663,10 +484693,10 @@
"integrations": [
"Code",
"Airtable",
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Code, Airtable, and Httprequest for data processing. Uses 13 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Airtable, and Schedule for data processing. Uses 13 nodes and integrates with 4 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -485048,15 +485078,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Openai",
- "Writebinaryfile",
+ "Manual",
+ "Movebinarydata",
"Spreadsheetfile",
"Itemlists",
- "Manual",
- "Movebinarydata"
+ "Splitinbatches",
+ "Writebinaryfile",
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Openai, and Writebinaryfile for data processing. Uses 11 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Movebinarydata, and Spreadsheetfile for data processing. Uses 11 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -486368,14 +486398,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Telegram",
"Telegramtool",
"Webhook",
+ "Googletaskstool",
"Converttofile",
- "Schedule",
- "Telegram",
- "Googletaskstool"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Telegramtool, Webhook, and Converttofile for data processing. Uses 38 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Telegramtool, and Webhook for data processing. Uses 38 nodes and integrates with 6 services.",
"steps": [
{
"name": "Receber Mensagem Telegram",
@@ -487450,10 +487480,10 @@
"triggerType": "Scheduled",
"integrations": [
"Airtable",
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Airtable, Httprequest, and Schedule for data processing. Uses 10 nodes.",
+ "description": "Scheduled automation that orchestrates Airtable, Schedule, and Httprequest for data processing. Uses 10 nodes.",
"steps": [
{
"name": "Morning Trigger To Pull Data At 7:00am",
@@ -487998,10 +488028,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 8 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 8 nodes.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -489327,21 +489357,21 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Limit",
- "Httprequest",
- "Aggregate",
- "Markdown",
- "Converttofile",
- "Splitout",
- "Schedule",
+ "Readwritefile",
"Telegram",
- "Executeworkflow",
- "Sort",
- "Googledrive",
+ "Schedule",
+ "Limit",
+ "Markdown",
+ "Httprequest",
+ "Splitout",
"Gmail",
- "Readwritefile"
+ "Converttofile",
+ "Executeworkflow",
+ "Googledrive",
+ "Sort",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Limit, Httprequest, and Aggregate for data processing. Uses 49 nodes and integrates with 13 services.",
+ "description": "Complex multi-step automation that orchestrates Readwritefile, Telegram, and Schedule for data processing. Uses 49 nodes and integrates with 13 services.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -490526,15 +490556,15 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Slack",
- "Postgres",
- "Cron",
"Mongodb",
- "Twitter",
+ "Cron",
+ "Postgres",
"Noop",
+ "Twitter",
+ "Slack",
"Googlecloudnaturallanguage"
],
- "description": "Scheduled automation that orchestrates Slack, Postgres, and Cron for data processing. Uses 9 nodes and integrates with 7 services.",
+ "description": "Scheduled automation that orchestrates Mongodb, Cron, and Postgres for data processing. Uses 9 nodes and integrates with 7 services.",
"steps": [
{
"name": "Cron",
@@ -490651,10 +490681,10 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Cron",
- "Googlesheets"
+ "Googlesheets",
+ "Cron"
],
- "description": "Scheduled automation that connects Cron and Googlesheets for data processing. Uses 4 nodes.",
+ "description": "Scheduled automation that connects Googlesheets and Cron for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Cron",
@@ -490889,10 +490919,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Wekan"
+ "Wekan",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Wekan for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that connects Wekan and Manual for data processing. Uses 6 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -491202,13 +491232,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Typeform",
"Googlesheets",
- "Googlecalendar",
"Mattermost",
- "Gmail"
+ "Googlecalendar",
+ "Gmail",
+ "Typeform"
],
- "description": "Webhook-triggered automation that orchestrates Typeform, Googlesheets, and Googlecalendar for data processing. Uses 10 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Mattermost, and Googlecalendar for data processing. Uses 10 nodes and integrates with 5 services.",
"steps": [
{
"name": "Attendee Registrations",
@@ -491320,11 +491350,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Mattermost",
+ "Googlesheets",
"Cron",
- "Googlesheets"
+ "Mattermost"
],
- "description": "Scheduled automation that orchestrates Mattermost, Cron, and Googlesheets for data processing. Uses 3 nodes.",
+ "description": "Scheduled automation that orchestrates Googlesheets, Cron, and Mattermost for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Cron",
@@ -491619,12 +491649,12 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Twilio",
+ "Airtable",
"Webhook",
- "Openweathermap",
- "Airtable"
+ "Twilio",
+ "Openweathermap"
],
- "description": "Webhook-triggered automation that orchestrates Twilio, Webhook, and Openweathermap for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Airtable, Webhook, and Twilio for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webhook",
@@ -491778,11 +491808,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
"Airtable",
+ "Webhook",
"Mindee"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Airtable, and Mindee for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Airtable, Webhook, and Mindee for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Webhook",
@@ -493294,21 +493324,21 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Youtube",
"Dropbox",
- "Limit",
- "Splitinbatches",
- "Httprequest",
- "Wait",
- "Linkedin",
- "S3",
- "Hackernews",
"Manual",
- "Microsoftonedrive",
+ "Limit",
+ "Googledrive",
+ "Httprequest",
+ "S3",
+ "Wait",
+ "Youtube",
"Twitter",
- "Googledrive"
+ "Linkedin",
+ "Microsoftonedrive",
+ "Hackernews",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Youtube, Dropbox, and Limit for data processing. Uses 48 nodes and integrates with 13 services.",
+ "description": "Complex multi-step automation that orchestrates Dropbox, Manual, and Limit for data processing. Uses 48 nodes and integrates with 13 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -493598,12 +493628,12 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Splitinbatches",
"Code",
"Manual",
+ "Splitinbatches",
"Rssfeedread"
],
- "description": "Manual workflow that orchestrates Splitinbatches, Code, and Manual for data processing. Uses 4 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Code, Manual, and Splitinbatches for data processing. Uses 4 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -494148,13 +494178,13 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Splitinbatches",
- "Wait",
- "Manual",
+ "Googlesheets",
"Telegram",
- "Googlesheets"
+ "Manual",
+ "Wait",
+ "Splitinbatches"
],
- "description": "Manual workflow that orchestrates Splitinbatches, Wait, and Manual for data processing. Uses 5 nodes and integrates with 5 services.",
+ "description": "Manual workflow that orchestrates Googlesheets, Telegram, and Manual for data processing. Uses 5 nodes and integrates with 5 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -494243,11 +494273,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Httprequest",
"Mindee",
- "Httprequest"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Mindee, and Httprequest for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Httprequest, Mindee, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -494448,12 +494478,12 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Coingecko",
"Noop",
"Twilio",
- "Cron"
+ "Cron",
+ "Coingecko"
],
- "description": "Scheduled automation that orchestrates Coingecko, Noop, and Twilio for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Noop, Twilio, and Cron for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Cron",
@@ -495496,10 +495526,10 @@
"triggerType": "Webhook",
"integrations": [
"Notion",
- "Gmailtool",
- "Wordpresstool"
+ "Wordpresstool",
+ "Gmailtool"
],
- "description": "Webhook-triggered automation that orchestrates Notion, Gmailtool, and Wordpresstool for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Notion, Wordpresstool, and Gmailtool for data processing. Uses 10 nodes.",
"steps": [
{
"name": "Watch Notion Updates",
@@ -495775,13 +495805,13 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Manual",
"Httprequest",
"Splitout",
- "Filter",
- "Manual",
- "Xml"
+ "Xml",
+ "Filter"
],
- "description": "Manual workflow that orchestrates Httprequest, Splitout, and Filter for data processing. Uses 10 nodes and integrates with 5 services.",
+ "description": "Manual workflow that orchestrates Manual, Httprequest, and Splitout for data processing. Uses 10 nodes and integrates with 5 services.",
"steps": [
{
"name": "‘Test workflow’ trigger",
@@ -496501,13 +496531,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
"Postgres",
"Executeworkflow",
- "Googlesheets",
- "Code",
"Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Postgres, Executeworkflow, and Googlesheets for data processing. Uses 23 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Postgres for data processing. Uses 23 nodes and integrates with 5 services.",
"steps": [
{
"name": "Google Drive Trigger",
@@ -497373,13 +497403,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Splitinbatches",
+ "Googlesheets",
+ "Manual",
"Webhook",
"Extractfromfile",
- "Manual",
- "Googlesheets"
+ "Splitinbatches"
],
- "description": "Webhook-triggered automation that orchestrates Splitinbatches, Webhook, and Extractfromfile for data processing. Uses 8 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Manual, and Webhook for data processing. Uses 8 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook",
@@ -498030,16 +498060,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Manual",
"Httprequest",
"Wait",
"Splitout",
- "Schedule",
- "Manual",
+ "Xml",
"Sort",
- "Xml"
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 21 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Httprequest, and Wait for data processing. Uses 21 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -499818,15 +499848,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Googledocs",
- "Converttofile",
- "Manual",
+ "Code",
"Googlesheets",
- "Code"
+ "Manual",
+ "Httprequest",
+ "Converttofile",
+ "Splitinbatches",
+ "Googledocs"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Googledocs for data processing. Uses 37 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 37 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -504466,14 +504496,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
"Form",
"Httprequest",
"Splitout",
- "Schedule",
- "Googlesheets",
- "Code"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Splitout for data processing. Uses 66 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Form for data processing. Uses 66 nodes and integrates with 6 services.",
"steps": [
{
"name": "On form submission",
@@ -505070,13 +505100,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
"Httprequest",
"Wait",
- "Schedule",
- "Code"
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait to create new records. Uses 20 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Wait to create new records. Uses 20 nodes and integrates with 5 services.",
"steps": [
{
"name": "Run Daily at 9 AM",
@@ -505511,14 +505541,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "N8N",
- "Extractfromfile",
- "Splitout",
"Manual",
- "Github"
+ "Github",
+ "Extractfromfile",
+ "Httprequest",
+ "Splitout",
+ "N8N"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, N8N, and Extractfromfile for data processing. Uses 11 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Github, and Extractfromfile for data processing. Uses 11 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -505826,11 +505856,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Googlecalendar",
+ "Cron",
"Mattermost",
- "Cron"
+ "Googlecalendar"
],
- "description": "Scheduled automation that orchestrates Googlecalendar, Mattermost, and Cron for data processing. Uses 6 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Mattermost, and Googlecalendar for data processing. Uses 6 nodes.",
"steps": [
{
"name": "Weekly trigger on monday",
@@ -506070,12 +506100,12 @@
"triggerType": "Scheduled",
"integrations": [
"Vonage",
- "Hackernews",
"Lingvanex",
"Cron",
- "Airtable"
+ "Airtable",
+ "Hackernews"
],
- "description": "Scheduled automation that orchestrates Vonage, Hackernews, and Lingvanex for data processing. Uses 8 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Vonage, Lingvanex, and Cron for data processing. Uses 8 nodes and integrates with 5 services.",
"steps": [
{
"name": "Daily trigger",
@@ -506331,13 +506361,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Youtube",
"Functionitem",
"Manual",
+ "Cron",
"Raindrop",
- "Cron"
+ "Youtube"
],
- "description": "Scheduled automation that orchestrates Youtube, Functionitem, and Manual for data processing. Uses 6 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Functionitem, Manual, and Cron for data processing. Uses 6 nodes and integrates with 5 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -506450,10 +506480,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Woocommerce",
- "Slack"
+ "Slack",
+ "Woocommerce"
],
- "description": "Webhook-triggered automation that connects Woocommerce and Slack for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Slack and Woocommerce for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Product Created",
@@ -506929,14 +506959,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
"Manual",
+ "Github",
"Cron",
+ "Httprequest",
"Noop",
- "Github"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Manual for data processing. Uses 16 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Github, and Cron for data processing. Uses 16 nodes and integrates with 6 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -507321,11 +507351,11 @@
"triggerType": "Scheduled",
"integrations": [
"Noop",
- "Executecommand",
"Twilio",
- "Cron"
+ "Cron",
+ "Executecommand"
],
- "description": "Scheduled automation that orchestrates Noop, Executecommand, and Twilio for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Noop, Twilio, and Cron for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Cron",
@@ -507474,10 +507504,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Woocommerce",
- "Slack"
+ "Slack",
+ "Woocommerce"
],
- "description": "Webhook-triggered automation that connects Woocommerce and Slack for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that connects Slack and Woocommerce for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Order Created",
@@ -507686,10 +507716,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Orbit",
- "Googlesheets"
+ "Googlesheets",
+ "Orbit"
],
- "description": "Manual workflow that connects Orbit and Googlesheets for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that connects Googlesheets and Orbit for data processing. Uses 6 nodes.",
"steps": [
{
"name": "Get all members",
@@ -507847,10 +507877,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Automizy"
+ "Automizy",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Automizy to create new records. Uses 5 nodes.",
+ "description": "Manual workflow that connects Automizy and Manual to create new records. Uses 5 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -508000,10 +508030,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Woocommerce",
- "Slack"
+ "Slack",
+ "Woocommerce"
],
- "description": "Webhook-triggered automation that connects Woocommerce and Slack for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that connects Slack and Woocommerce for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Order Updated",
@@ -508108,10 +508138,10 @@
"triggerType": "Scheduled",
"integrations": [
"Pushcut",
- "Openweathermap",
- "Cron"
+ "Cron",
+ "Openweathermap"
],
- "description": "Scheduled automation that orchestrates Pushcut, Openweathermap, and Cron to update existing data. Uses 3 nodes.",
+ "description": "Scheduled automation that orchestrates Pushcut, Cron, and Openweathermap to update existing data. Uses 3 nodes.",
"steps": [
{
"name": "Cron",
@@ -508811,16 +508841,16 @@
"triggerType": "Complex",
"integrations": [
"Functionitem",
- "Httprequest",
- "Writebinaryfile",
"Executecommand",
"Readbinaryfile",
- "Htmlextract",
- "Movebinarydata",
"Cron",
- "Emailsend"
+ "Httprequest",
+ "Movebinarydata",
+ "Emailsend",
+ "Writebinaryfile",
+ "Htmlextract"
],
- "description": "Complex multi-step automation that orchestrates Functionitem, Httprequest, and Writebinaryfile for data processing. Uses 25 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Functionitem, Executecommand, and Readbinaryfile for data processing. Uses 25 nodes and integrates with 9 services.",
"steps": [
{
"name": "cleanData",
@@ -509047,11 +509077,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Noop",
"Matrix",
+ "Noop",
"Manual"
],
- "description": "Manual workflow that orchestrates Noop, Matrix, and Manual to create new records. Uses 8 nodes.",
+ "description": "Manual workflow that orchestrates Matrix, Noop, and Manual to create new records. Uses 8 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -509311,10 +509341,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Woocommerce",
- "Mautic"
+ "Mautic",
+ "Woocommerce"
],
- "description": "Webhook-triggered automation that connects Woocommerce and Mautic for data processing. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that connects Mautic and Woocommerce for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Customer Created or Updated",
@@ -509600,12 +509630,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Crypto",
"Code",
+ "Crypto",
"Stopanderror",
"Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates Crypto, Code, and Stopanderror for data processing. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Crypto, and Stopanderror for data processing. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -510025,14 +510055,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Emailreadimap",
- "Slack",
- "Httprequest",
"Manual",
+ "Httprequest",
"Movebinarydata",
- "Code"
+ "Slack"
],
- "description": "Complex multi-step automation that orchestrates Emailreadimap, Slack, and Httprequest for data processing. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Emailreadimap, and Manual for data processing. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -510129,10 +510159,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Circleci"
+ "Circleci",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Circleci for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Circleci and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -510235,11 +510265,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
+ "Cron",
"Vonage",
- "Openweathermap",
- "Cron"
+ "Openweathermap"
],
- "description": "Scheduled automation that orchestrates Vonage, Openweathermap, and Cron to update existing data. Uses 3 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Vonage, and Openweathermap to update existing data. Uses 3 nodes.",
"steps": [
{
"name": "Cron",
@@ -510344,10 +510374,10 @@
"triggerType": "Webhook",
"integrations": [
"Twitter",
- "Telegram",
- "Woocommerce"
+ "Woocommerce",
+ "Telegram"
],
- "description": "Webhook-triggered automation that orchestrates Twitter, Telegram, and Woocommerce for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Twitter, Woocommerce, and Telegram for data processing. Uses 3 nodes.",
"steps": [
{
"name": "WooCommerce Trigger",
@@ -510416,10 +510446,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Messagebird"
+ "Messagebird",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Messagebird for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Messagebird and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -510541,10 +510571,10 @@
"triggerType": "Manual",
"integrations": [
"Interval",
- "Mattermost",
- "Googlesheets"
+ "Googlesheets",
+ "Mattermost"
],
- "description": "Manual workflow that orchestrates Interval, Mattermost, and Googlesheets for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates Interval, Googlesheets, and Mattermost for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Execute every 45 mins",
@@ -510755,12 +510785,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Mautic",
"Slack",
"Itemlists",
- "Onesimpleapi",
- "Mautic"
+ "Onesimpleapi"
],
- "description": "Webhook-triggered automation that orchestrates Slack, Itemlists, and Onesimpleapi for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Mautic, Slack, and Itemlists for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "If the email is suspicious",
@@ -512235,21 +512265,21 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Readwritefile",
"Form",
+ "Renamekeys",
+ "Executecommand",
"Removeduplicates",
"Httprequest",
- "N8N",
- "Sort",
"Extractfromfile",
- "Executecommand",
- "Splitout",
- "Renamekeys",
- "Filter",
- "Code",
"Noop",
- "Readwritefile"
+ "Splitout",
+ "N8N",
+ "Filter",
+ "Sort"
],
- "description": "Complex multi-step automation that orchestrates Form, Removeduplicates, and Httprequest for data processing. Uses 58 nodes and integrates with 13 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Readwritefile, and Form for data processing. Uses 58 nodes and integrates with 13 services.",
"steps": [
{
"name": "On form submission",
@@ -512879,11 +512909,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
+ "Hubspot",
"Slack",
- "Onesimpleapi",
- "Hubspot"
+ "Onesimpleapi"
],
- "description": "Webhook-triggered automation that orchestrates Slack, Onesimpleapi, and Hubspot for data processing. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Hubspot, Slack, and Onesimpleapi for data processing. Uses 5 nodes.",
"steps": [
{
"name": "If email is suspicious",
@@ -512954,10 +512984,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Openweathermap"
+ "Openweathermap",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Openweathermap for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Openweathermap and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -513043,11 +513073,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Readbinaryfile",
"Spreadsheetfile",
- "Manual",
- "Readbinaryfile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Spreadsheetfile, Manual, and Readbinaryfile for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Readbinaryfile, Spreadsheetfile, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -513307,12 +513337,12 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Datetime",
"Slack",
- "Rssfeedread",
- "Cron"
+ "Cron",
+ "Datetime",
+ "Rssfeedread"
],
- "description": "Scheduled automation that orchestrates Datetime, Slack, and Rssfeedread for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Slack, Cron, and Datetime for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "Every Morning",
@@ -513975,18 +514005,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Urlscanio",
- "Splitinbatches",
- "Slack",
+ "Code",
"Microsoftoutlook",
+ "Manual",
"Httprequest",
"Wait",
- "Schedule",
- "Manual",
"Filter",
- "Code"
+ "Slack",
+ "Splitinbatches",
+ "Schedule",
+ "Urlscanio"
],
- "description": "Complex multi-step automation that orchestrates Urlscanio, Splitinbatches, and Slack for data processing. Uses 23 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Microsoftoutlook, and Manual for data processing. Uses 23 nodes and integrates with 10 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -514451,10 +514481,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Openai",
- "Googlesheets"
+ "Googlesheets",
+ "Openai"
],
- "description": "Webhook-triggered automation that connects Openai and Googlesheets for data processing. Uses 9 nodes.",
+ "description": "Webhook-triggered automation that connects Googlesheets and Openai for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Check for new entries",
@@ -516214,13 +516244,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Extractfromfile",
+ "Telegram",
"Webhook",
- "Converttofile",
- "Telegram"
+ "Extractfromfile",
+ "Httprequest",
+ "Converttofile"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Extractfromfile, and Webhook for data processing. Uses 39 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Webhook, and Extractfromfile for data processing. Uses 39 nodes and integrates with 5 services.",
"steps": [
{
"name": "Listen for Telegram Events",
@@ -517348,12 +517378,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Googlecalendartool",
+ "Httprequest",
"Debughelper",
"Executeworkflow",
- "Httprequest"
+ "Googlecalendartool"
],
- "description": "Complex multi-step automation that orchestrates Googlecalendartool, Debughelper, and Executeworkflow for data processing. Uses 32 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Httprequest, Debughelper, and Executeworkflow for data processing. Uses 32 nodes and integrates with 4 services.",
"steps": [
{
"name": "Google Calendar MCP",
@@ -518997,13 +519027,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Httprequest",
- "Manual",
"Code",
+ "Form",
+ "Manual",
+ "Httprequest",
"Airtable"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Manual for data processing. Uses 30 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Manual for data processing. Uses 30 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -520558,17 +520588,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Googledocs",
- "Wait",
+ "Telegram",
+ "Manual",
+ "Webhook",
"Extractfromfile",
"Summarize",
- "Webhook",
- "Manual",
- "Telegram",
- "Googledrive"
+ "Wait",
+ "Googledrive",
+ "Splitinbatches",
+ "Googledocs"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Googledocs, and Wait for data processing. Uses 50 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Manual, and Webhook for data processing. Uses 50 nodes and integrates with 9 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -521477,11 +521507,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Telegram",
"Code",
+ "Telegram",
"Rssfeedread"
],
- "description": "Webhook-triggered automation that orchestrates Telegram, Code, and Rssfeedread for data processing. Uses 30 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Telegram, and Rssfeedread for data processing. Uses 30 nodes.",
"steps": [
{
"name": "Send Crypto or Company Name for Analysis",
@@ -521777,11 +521807,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Rssfeedread",
"Cron",
- "Htmlextract"
+ "Htmlextract",
+ "Rssfeedread"
],
- "description": "Scheduled automation that orchestrates Rssfeedread, Cron, and Htmlextract for data processing. Uses 5 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Htmlextract, and Rssfeedread for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Cron",
@@ -521919,10 +521949,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Mailgun",
- "Error"
+ "Error",
+ "Mailgun"
],
- "description": "Webhook-triggered automation that connects Mailgun and Error for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Error and Mailgun for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Error Trigger",
@@ -522067,12 +522097,12 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Dropbox",
- "Compression",
"Manual",
- "Httprequest"
+ "Dropbox",
+ "Httprequest",
+ "Compression"
],
- "description": "Manual workflow that orchestrates Dropbox, Compression, and Manual for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Manual, Dropbox, and Httprequest for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -522296,11 +522326,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Googlesheets",
"Emailreadimap",
- "Mindee",
- "Googlesheets"
+ "Mindee"
],
- "description": "Manual workflow that orchestrates Emailreadimap, Mindee, and Googlesheets for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that orchestrates Googlesheets, Emailreadimap, and Mindee for data processing. Uses 6 nodes.",
"steps": [
{
"name": "Check for new emails",
@@ -522567,11 +522597,11 @@
"integrations": [
"Executecommand",
"Readbinaryfile",
- "Movebinarydata",
"Manual",
- "Noop"
+ "Noop",
+ "Movebinarydata"
],
- "description": "Manual workflow that orchestrates Executecommand, Readbinaryfile, and Movebinarydata for data processing. Uses 7 nodes and integrates with 5 services.",
+ "description": "Manual workflow that orchestrates Executecommand, Readbinaryfile, and Manual for data processing. Uses 7 nodes and integrates with 5 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -522711,11 +522741,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Typeform",
"Slack",
- "Airtable"
+ "Airtable",
+ "Typeform"
],
- "description": "Webhook-triggered automation that orchestrates Typeform, Slack, and Airtable for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Airtable, and Typeform for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Typeform Trigger",
@@ -522863,10 +522893,10 @@
"triggerType": "Scheduled",
"integrations": [
"Cron",
- "Timescaledb",
- "Httprequest"
+ "Httprequest",
+ "Timescaledb"
],
- "description": "Scheduled automation that orchestrates Cron, Timescaledb, and Httprequest for data processing. Uses 4 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Httprequest, and Timescaledb for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Cron",
@@ -523183,12 +523213,12 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Emailreadimap",
"Slack",
- "Mindee",
- "Emailsend"
+ "Emailreadimap",
+ "Emailsend",
+ "Mindee"
],
- "description": "Manual workflow that orchestrates Emailreadimap, Slack, and Mindee for notifications and alerts. Uses 6 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Slack, Emailreadimap, and Emailsend for notifications and alerts. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "Check for new emails",
@@ -523293,11 +523323,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
+ "Cron",
"Pushover",
- "Openweathermap",
- "Cron"
+ "Openweathermap"
],
- "description": "Scheduled automation that orchestrates Pushover, Openweathermap, and Cron to update existing data. Uses 3 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Pushover, and Openweathermap to update existing data. Uses 3 nodes.",
"steps": [
{
"name": "Cron",
@@ -523421,10 +523451,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Securityscorecard"
+ "Securityscorecard",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Securityscorecard for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that connects Securityscorecard and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -523694,10 +523724,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Pushcut",
- "Twilio"
+ "Twilio",
+ "Pushcut"
],
- "description": "Webhook-triggered automation that connects Pushcut and Twilio for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Twilio and Pushcut for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Pushcut Trigger",
@@ -523765,10 +523795,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Googletranslate"
+ "Googletranslate",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Googletranslate for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Googletranslate and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -524014,10 +524044,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Getresponse",
- "Airtable"
+ "Airtable",
+ "Getresponse"
],
- "description": "Webhook-triggered automation that connects Getresponse and Airtable for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that connects Airtable and Getresponse for data processing. Uses 3 nodes.",
"steps": [
{
"name": "GetResponse Trigger",
@@ -524296,10 +524326,10 @@
"triggerType": "Manual",
"integrations": [
"Noop",
- "Manual",
- "Peekalink"
+ "Peekalink",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Noop, Manual, and Peekalink for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Noop, Peekalink, and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -524432,10 +524462,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Tapfiliate"
+ "Tapfiliate",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Tapfiliate for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that connects Tapfiliate and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -524564,10 +524594,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Strava"
+ "Strava",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Strava to create new records. Uses 4 nodes.",
+ "description": "Manual workflow that connects Strava and Manual to create new records. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -524643,10 +524673,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Typeform",
- "Demio"
+ "Demio",
+ "Typeform"
],
- "description": "Webhook-triggered automation that connects Typeform and Demio for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Demio and Typeform for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Typeform Trigger",
@@ -524970,10 +525000,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Affinity"
+ "Affinity",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Affinity to create new records. Uses 2 nodes.",
+ "description": "Manual workflow that connects Affinity and Manual to create new records. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -525048,10 +525078,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Twitter",
- "Strava"
+ "Strava",
+ "Twitter"
],
- "description": "Webhook-triggered automation that connects Twitter and Strava to create new records. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Strava and Twitter to create new records. Uses 2 nodes.",
"steps": [
{
"name": "Strava Trigger",
@@ -525293,12 +525323,12 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Datetime",
- "Twitter",
"Slack",
- "Cron"
+ "Twitter",
+ "Cron",
+ "Datetime"
],
- "description": "Scheduled automation that orchestrates Datetime, Twitter, and Slack for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Slack, Twitter, and Cron for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "Run Every 10 Minutes",
@@ -525670,11 +525700,11 @@
"triggerType": "Webhook",
"integrations": [
"Awscomprehend",
- "Noop",
+ "Mattermost",
"Typeform",
- "Mattermost"
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Awscomprehend, Noop, and Typeform for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Awscomprehend, Mattermost, and Typeform for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Typeform Trigger",
@@ -525859,12 +525889,12 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Manual",
"Openweathermap",
+ "Schedule",
"Signl4",
- "Schedule"
+ "Manual"
],
- "description": "Scheduled automation that orchestrates Manual, Openweathermap, and Signl4 for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Openweathermap, Schedule, and Signl4 for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -526163,10 +526193,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Agilecrm"
+ "Agilecrm",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Agilecrm to create new records. Uses 2 nodes.",
+ "description": "Manual workflow that connects Agilecrm and Manual to create new records. Uses 2 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -526271,10 +526301,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Lemlist",
- "Airtable"
+ "Airtable",
+ "Lemlist"
],
- "description": "Manual workflow that connects Lemlist and Airtable for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that connects Airtable and Lemlist for data processing. Uses 3 nodes.",
"steps": [
{
"name": "Airtable",
@@ -526352,10 +526382,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Lemlist",
- "Mattermost"
+ "Mattermost",
+ "Lemlist"
],
- "description": "Webhook-triggered automation that connects Lemlist and Mattermost for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Mattermost and Lemlist for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Lemlist Trigger",
@@ -526688,10 +526718,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Typeform",
- "Apitemplateio"
+ "Apitemplateio",
+ "Typeform"
],
- "description": "Webhook-triggered automation that connects Typeform and Apitemplateio for data processing. Uses 2 nodes.",
+ "description": "Webhook-triggered automation that connects Apitemplateio and Typeform for data processing. Uses 2 nodes.",
"steps": [
{
"name": "Typeform Trigger",
@@ -526914,11 +526944,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Kafka",
"Cron",
+ "Kafka",
"Httprequest"
],
- "description": "Scheduled automation that orchestrates Kafka, Cron, and Httprequest to update existing data. Uses 4 nodes.",
+ "description": "Scheduled automation that orchestrates Cron, Kafka, and Httprequest to update existing data. Uses 4 nodes.",
"steps": [
{
"name": "Cron",
@@ -527460,10 +527490,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Wise",
- "Airtable"
+ "Airtable",
+ "Wise"
],
- "description": "Webhook-triggered automation that connects Wise and Airtable for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that connects Airtable and Wise for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Wise Trigger",
@@ -528485,14 +528515,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Error",
- "Httprequest",
- "Writebinaryfile",
- "Readbinaryfile",
"Telegram",
- "Googledrive"
+ "Error",
+ "Readbinaryfile",
+ "Httprequest",
+ "Googledrive",
+ "Writebinaryfile"
],
- "description": "Complex multi-step automation that orchestrates Error, Httprequest, and Writebinaryfile for data processing. Uses 15 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Error, and Readbinaryfile for data processing. Uses 15 nodes and integrates with 6 services.",
"steps": [
{
"name": "Get Audio from Video",
@@ -529019,12 +529049,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Readwritefile",
"Gmail",
- "Manual",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Gmail, Manual, and Httprequest for data processing. Uses 16 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Readwritefile, Gmail, and Httprequest for data processing. Uses 16 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -529455,10 +529485,10 @@
"integrations": [
"Wait",
"Code",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Wait, Code, and Manual for data processing. Uses 10 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Wait, Code, and Httprequest for data processing. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -529770,10 +529800,10 @@
"integrations": [
"Googlecontacts",
"Slack",
- "Filter",
- "Schedule"
+ "Schedule",
+ "Filter"
],
- "description": "Scheduled automation that orchestrates Googlecontacts, Slack, and Filter for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Googlecontacts, Slack, and Schedule for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "Google Contacts",
@@ -530389,10 +530419,10 @@
"triggerType": "Manual",
"integrations": [
"Emailreadimap",
- "Markdown",
- "Emailsend"
+ "Emailsend",
+ "Markdown"
],
- "description": "Manual workflow that orchestrates Emailreadimap, Markdown, and Emailsend for data processing. Uses 16 nodes.",
+ "description": "Manual workflow that orchestrates Emailreadimap, Emailsend, and Markdown for data processing. Uses 16 nodes.",
"steps": [
{
"name": "Email Trigger (IMAP)",
@@ -530854,11 +530884,11 @@
"triggerType": "Complex",
"integrations": [
"Gmail",
- "Manual",
"Markdown",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Gmail, Manual, and Markdown for data processing. Uses 15 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Gmail, Markdown, and Httprequest for data processing. Uses 15 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -531044,10 +531074,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Googledrive",
- "Telegram"
+ "Telegram",
+ "Googledrive"
],
- "description": "Webhook-triggered automation that connects Googledrive and Telegram for data processing. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that connects Telegram and Googledrive for data processing. Uses 3 nodes.",
"steps": [
{
"name": "On new Telegram Message",
@@ -532312,15 +532342,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Extractfromfile",
- "Splitout",
"Manual",
+ "Github",
+ "Extractfromfile",
+ "Httprequest",
+ "Splitout",
"Executeworkflow",
- "Github"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Extractfromfile for data processing. Uses 27 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Github, and Extractfromfile for data processing. Uses 27 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -532900,13 +532930,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
"Limit",
+ "Manual",
"Httprequest",
- "Splitout",
- "Manual"
+ "Html",
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Html, Limit, and Httprequest for data processing. Uses 21 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Limit, Manual, and Httprequest for data processing. Uses 21 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -533191,10 +533221,10 @@
"triggerType": "Webhook",
"integrations": [
"Webhook",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Manual, and Httprequest for data processing. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Httprequest, and Manual for data processing. Uses 8 nodes.",
"steps": [
{
"name": "Webhook from Line Message",
@@ -534775,10 +534805,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Telegram",
- "Googlesheets"
+ "Googlesheets",
+ "Telegram"
],
- "description": "Webhook-triggered automation that orchestrates Code, Telegram, and Googlesheets for data processing. Uses 38 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Googlesheets, and Telegram for data processing. Uses 38 nodes.",
"steps": [
{
"name": "Get message",
@@ -535794,14 +535824,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Extractfromfile",
- "Postgres",
- "Converttofile",
+ "Readwritefile",
"Manual",
- "Executeworkflow",
- "Readwritefile"
+ "Postgres",
+ "Extractfromfile",
+ "Converttofile",
+ "Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates Extractfromfile, Postgres, and Converttofile for data processing. Uses 26 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Readwritefile, Manual, and Postgres for data processing. Uses 26 nodes and integrates with 6 services.",
"steps": [
{
"name": "Chat Trigger",
@@ -536697,15 +536727,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Extractfromfile",
- "Googledrive",
- "Splitout",
+ "Googlecalendar",
"Manual",
+ "Extractfromfile",
+ "Httprequest",
+ "Splitout",
"Executeworkflow",
- "Googlecalendar"
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Extractfromfile, and Googledrive for data processing. Uses 28 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Googlecalendar, Manual, and Extractfromfile for data processing. Uses 28 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -536944,13 +536974,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Slack",
"Trello",
- "Typeform",
"Notion",
+ "Typeform",
+ "Slack",
"Googlecloudnaturallanguage"
],
- "description": "Webhook-triggered automation that orchestrates Slack, Trello, and Typeform for data processing. Uses 6 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Trello, Notion, and Typeform for data processing. Uses 6 nodes and integrates with 5 services.",
"steps": [
{
"name": "Typeform Trigger",
@@ -537202,11 +537232,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Extractfromfile",
"Telegram",
+ "Extractfromfile",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Extractfromfile, Telegram, and Httprequest for data processing. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Telegram, Extractfromfile, and Httprequest for data processing. Uses 8 nodes.",
"steps": [
{
"name": "Telegram Trigger",
@@ -538182,14 +538212,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Httprequest",
- "Webhook",
"Code",
+ "Webhook",
+ "Httprequest",
+ "Noop",
"Gmail",
- "Noop"
+ "Slack"
],
- "description": "Complex multi-step automation that orchestrates Slack, Httprequest, and Webhook for data processing. Uses 39 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Httprequest for data processing. Uses 39 nodes and integrates with 6 services.",
"steps": [
{
"name": "PDFs to download",
@@ -539245,13 +539275,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Extractfromfile",
- "Manual",
"Code",
- "Googledrive",
- "Gmail"
+ "Manual",
+ "Extractfromfile",
+ "Gmail",
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Extractfromfile, Manual, and Code for data processing. Uses 22 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Extractfromfile for data processing. Uses 22 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -540376,19 +540406,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Slack",
- "Httprequest",
- "Datetime",
- "Webhook",
- "Markdown",
- "Schedule",
- "Manual",
"Googlesheets",
+ "Manual",
+ "Webhook",
+ "Datetime",
+ "Httprequest",
+ "Wordpress",
"Noop",
- "Wordpress"
+ "Slack",
+ "Markdown",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Slack, and Httprequest for data processing. Uses 32 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Webhook for data processing. Uses 32 nodes and integrates with 11 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -541483,15 +541513,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Googlecalendartool",
- "Webhook",
- "Splitout",
- "Executeworkflow",
"Gmailtool",
- "Airtable"
+ "Webhook",
+ "Googlecalendartool",
+ "Httprequest",
+ "Splitout",
+ "Airtable",
+ "Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Googlecalendartool, and Webhook for data processing. Uses 18 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Gmailtool, Webhook, and Googlecalendartool for data processing. Uses 18 nodes and integrates with 7 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -542018,13 +542048,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Supabase",
- "Httprequest",
"Webhook",
"Postgres",
+ "Httprequest",
+ "Supabase",
"Postgrestool"
],
- "description": "Complex multi-step automation that orchestrates Supabase, Httprequest, and Webhook for data processing. Uses 19 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Postgres, and Httprequest for data processing. Uses 19 nodes and integrates with 5 services.",
"steps": [
{
"name": "Scenario 2 Start - Webhook",
@@ -542612,11 +542642,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Executeworkflow",
"Markdown",
+ "Executeworkflow",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Executeworkflow, Markdown, and Httprequest for data processing. Uses 20 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Markdown, Executeworkflow, and Httprequest for data processing. Uses 20 nodes.",
"steps": [
{
"name": "Simplify output",
@@ -543572,14 +543602,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Manual",
+ "Extractfromfile",
+ "Httprequest",
"Supabase",
"Splitinbatches",
- "Httprequest",
- "Aggregate",
- "Extractfromfile",
- "Manual"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Supabase, Splitinbatches, and Httprequest for data processing. Uses 33 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Extractfromfile, and Httprequest for data processing. Uses 33 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -544777,13 +544807,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Webhook",
"Respondtowebhook",
- "Executeworkflow"
+ "Webhook",
+ "Httprequest",
+ "Executeworkflow",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Webhook for data processing. Uses 30 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Webhook, and Httprequest for data processing. Uses 30 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook - ChatInput",
@@ -546084,12 +546114,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Extractfromfile",
+ "Googlesheets",
"Googledrive",
- "Googlesheets"
+ "Form",
+ "Extractfromfile"
],
- "description": "Complex multi-step automation that orchestrates Form, Extractfromfile, and Googledrive for data processing. Uses 18 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Googledrive, and Form for data processing. Uses 18 nodes and integrates with 4 services.",
"steps": [
{
"name": "On form submission",
@@ -546440,11 +546470,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Hackernews",
"Code",
+ "Hackernews",
"Executeworkflow"
],
- "description": "Webhook-triggered automation that orchestrates Hackernews, Code, and Executeworkflow for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Hackernews, and Executeworkflow for data processing. Uses 12 nodes.",
"steps": [
{
"name": "On new manual Chat Message",
@@ -547123,12 +547153,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Googledrive",
+ "Manual",
"Webhook",
- "Respondtowebhook",
- "Manual"
+ "Googledrive",
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Googledrive, Webhook, and Respondtowebhook for data processing. Uses 17 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Webhook, and Googledrive for data processing. Uses 17 nodes and integrates with 4 services.",
"steps": [
{
"name": "On new manual Chat Message",
@@ -547491,11 +547521,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Googlesheets",
"Form",
- "Openai",
- "Googlesheets"
+ "Openai"
],
- "description": "Webhook-triggered automation that orchestrates Form, Openai, and Googlesheets for data processing. Uses 9 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Form, and Openai for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Submit form with customer feedback",
@@ -549159,17 +549189,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Extractfromfile",
- "Webhook",
- "Filter",
- "Manual",
"Code",
+ "Manual",
+ "Webhook",
+ "Extractfromfile",
+ "Httprequest",
+ "Noop",
"Airtable",
- "Noop"
+ "Filter",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Extractfromfile for data processing. Uses 51 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Webhook for data processing. Uses 51 nodes and integrates with 9 services.",
"steps": [
{
"name": "Airtable Webhook",
@@ -550654,16 +550684,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
+ "Code",
"Webhook",
"Extractfromfile",
+ "Httprequest",
+ "Noop",
"Splitout",
"Filter",
- "Code",
- "Noop"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Webhook for data processing. Uses 45 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Extractfromfile for data processing. Uses 45 nodes and integrates with 8 services.",
"steps": [
{
"name": "Update Row",
@@ -551042,13 +551072,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Strava",
- "Whatsapp",
"Code",
+ "Whatsapp",
"Gmail",
- "Emailsend"
+ "Emailsend",
+ "Strava"
],
- "description": "Complex multi-step automation that orchestrates Strava, Whatsapp, and Code for data processing. Uses 15 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Whatsapp, and Gmail for data processing. Uses 15 nodes and integrates with 5 services.",
"steps": [
{
"name": "Strava Trigger",
@@ -551364,12 +551394,12 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Httprequest",
- "Manual",
"Splitout",
- "Googlesheets"
+ "Googlesheets",
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Httprequest, Manual, and Splitout for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Splitout, Googlesheets, and Httprequest for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -552996,12 +553026,12 @@
"triggerType": "Complex",
"integrations": [
"Limit",
- "Httprequest",
- "Aggregate",
+ "Respondtowebhook",
"Webhook",
- "Respondtowebhook"
+ "Httprequest",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Limit, Httprequest, and Aggregate for data processing. Uses 15 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Limit, Respondtowebhook, and Webhook for data processing. Uses 15 nodes and integrates with 5 services.",
"steps": [
{
"name": "Respond to Webhook",
@@ -553652,13 +553682,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
"Respondtowebhook",
"Manual",
+ "Webhook",
+ "Httprequest",
"Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Respondtowebhook for data processing. Uses 23 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Manual, and Webhook for data processing. Uses 23 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -554453,12 +554483,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Splitinbatches",
- "Manual",
"Schedule",
- "Googlesheets"
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Manual, and Schedule for data processing. Uses 22 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Splitinbatches, and Schedule for data processing. Uses 22 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -555002,12 +555032,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Youtube",
"Code",
+ "Youtube",
"Splitinbatches",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Youtube, Code, and Splitinbatches for data processing. Uses 15 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Youtube, and Splitinbatches for data processing. Uses 15 nodes and integrates with 4 services.",
"steps": [
{
"name": "chat_message_received",
@@ -556081,19 +556111,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Slack",
- "Httprequest",
- "Datetime",
- "Webhook",
- "Markdown",
- "Schedule",
- "Manual",
"Googlesheets",
+ "Manual",
+ "Webhook",
+ "Datetime",
+ "Httprequest",
+ "Wordpress",
"Noop",
- "Wordpress"
+ "Slack",
+ "Markdown",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Slack, and Httprequest for data processing. Uses 32 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Webhook for data processing. Uses 32 nodes and integrates with 11 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -557269,15 +557299,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Microsoftoutlook",
- "Httprequest",
- "Extractfromfile",
- "Webhook",
- "Whatsapp",
"Code",
- "Erpnext"
+ "Whatsapp",
+ "Webhook",
+ "Extractfromfile",
+ "Httprequest",
+ "Erpnext",
+ "Microsoftoutlook"
],
- "description": "Complex multi-step automation that orchestrates Microsoftoutlook, Httprequest, and Extractfromfile for data processing. Uses 39 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Whatsapp, and Webhook for data processing. Uses 39 nodes and integrates with 7 services.",
"steps": [
{
"name": "Webhook",
@@ -559190,14 +559220,14 @@
"triggerType": "Complex",
"integrations": [
"Emailreadimap",
- "Httprequest",
- "Markdown",
"Manual",
- "Noop",
"Googledrive",
- "Emailsend"
+ "Httprequest",
+ "Noop",
+ "Emailsend",
+ "Markdown"
],
- "description": "Complex multi-step automation that orchestrates Emailreadimap, Httprequest, and Markdown for data processing. Uses 26 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Emailreadimap, Manual, and Googledrive for data processing. Uses 26 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -559744,12 +559774,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Emailreadimap",
- "Markdown",
"Gmail",
- "Emailsend"
+ "Emailreadimap",
+ "Emailsend",
+ "Markdown"
],
- "description": "Complex multi-step automation that orchestrates Emailreadimap, Markdown, and Gmail for data processing. Uses 17 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Gmail, Emailreadimap, and Emailsend for data processing. Uses 17 nodes and integrates with 4 services.",
"steps": [
{
"name": "Email Trigger (IMAP)",
@@ -560828,15 +560858,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Httprequest",
- "Rssfeedread",
- "Schedule",
- "Googlesheets",
"Code",
- "Noop"
+ "Googlesheets",
+ "Httprequest",
+ "Noop",
+ "Slack",
+ "Schedule",
+ "Rssfeedread"
],
- "description": "Complex multi-step automation that orchestrates Slack, Httprequest, and Rssfeedread for monitoring and reporting. Uses 31 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Httprequest for monitoring and reporting. Uses 31 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -561453,13 +561483,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Googledocs",
- "Manual",
"Googlesheets",
- "Googledrive"
+ "Manual",
+ "Googledrive",
+ "Splitinbatches",
+ "Googledocs"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Googledocs, and Manual for data processing. Uses 18 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Googledrive for data processing. Uses 18 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -562581,19 +562611,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Linkedin",
- "Wait",
- "Markdown",
- "Schedule",
- "Filter",
- "Telegram",
- "Twitter",
"Code",
+ "Telegram",
+ "Httprequest",
+ "Noop",
+ "Linkedin",
"Airtable",
- "Noop"
+ "Twitter",
+ "Wait",
+ "Filter",
+ "Markdown",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Linkedin, and Wait for data processing. Uses 26 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Httprequest for data processing. Uses 26 nodes and integrates with 11 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -563808,17 +563838,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Woocommerce",
- "Httprequest",
- "Aggregate",
- "Webhook",
- "Splitout",
+ "Code",
"Respondtowebhook",
- "Executeworkflow",
+ "Webhook",
+ "Httprequest",
+ "Splitout",
+ "Woocommerce",
"Dhl",
- "Code"
+ "Executeworkflow",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Woocommerce, Httprequest, and Aggregate for data processing. Uses 40 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Webhook for data processing. Uses 40 nodes and integrates with 9 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -564606,11 +564636,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
+ "Gmail",
"Itemlists",
- "Manual",
- "Gmail"
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Code, Itemlists, and Manual for data processing. Uses 19 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Gmail, and Itemlists for data processing. Uses 19 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -565131,16 +565161,16 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Limit",
- "Trello",
"Code",
- "Rssfeedread",
- "Schedule",
- "Filter",
+ "Trello",
+ "Limit",
+ "Gmail",
"Sort",
- "Gmail"
+ "Filter",
+ "Schedule",
+ "Rssfeedread"
],
- "description": "Complex multi-step automation that orchestrates Limit, Trello, and Code for data processing. Uses 15 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Trello, and Limit for data processing. Uses 15 nodes and integrates with 8 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -567051,15 +567081,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Wordpress",
- "Markdown",
- "Manual",
- "Telegram",
"Code",
+ "Telegram",
+ "Manual",
+ "Markdown",
+ "Wordpress",
+ "Httprequest",
"Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wordpress, and Markdown for data processing. Uses 39 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Manual for data processing. Uses 39 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -567583,12 +567613,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Googlesheetstool",
"Code",
- "Httprequest",
- "Github"
+ "Github",
+ "Googlesheetstool",
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Googlesheetstool, Code, and Httprequest for data processing. Uses 14 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Github, and Googlesheetstool for data processing. Uses 14 nodes and integrates with 4 services.",
"steps": [
{
"name": "PR Trigger",
@@ -568101,14 +568131,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Splitinbatches",
+ "Notion",
"Httprequest",
+ "Html",
"Splitout",
- "Schedule",
- "Notion"
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Html, Splitinbatches, and Httprequest for data processing. Uses 11 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Notion, Httprequest, and Html for data processing. Uses 11 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -569016,14 +569046,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Microsoftoutlook",
- "Httprequest",
- "Converttofile",
- "Jira",
"Code",
- "Gmail"
+ "Jira",
+ "Httprequest",
+ "Gmail",
+ "Converttofile",
+ "Microsoftoutlook"
],
- "description": "Complex multi-step automation that orchestrates Microsoftoutlook, Httprequest, and Converttofile for data processing. Uses 25 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Jira, and Httprequest for data processing. Uses 25 nodes and integrates with 6 services.",
"steps": [
{
"name": "Gmail Trigger",
@@ -569255,12 +569285,12 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Googlecloudnaturallanguage",
- "Typeform",
+ "Noop",
"Mattermost",
- "Noop"
+ "Googlecloudnaturallanguage",
+ "Typeform"
],
- "description": "Webhook-triggered automation that orchestrates Googlecloudnaturallanguage, Typeform, and Mattermost for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Noop, Mattermost, and Googlecloudnaturallanguage for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Typeform Trigger",
@@ -569411,11 +569441,11 @@
"triggerType": "Webhook",
"integrations": [
"Awscomprehend",
- "Noop",
+ "Mattermost",
"Typeform",
- "Mattermost"
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Awscomprehend, Noop, and Typeform for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Awscomprehend, Mattermost, and Typeform for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Typeform Trigger",
@@ -570035,13 +570065,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Microsoftoutlook",
- "Httprequest",
- "Jira",
"Code",
- "Gmail"
+ "Jira",
+ "Httprequest",
+ "Gmail",
+ "Microsoftoutlook"
],
- "description": "Complex multi-step automation that orchestrates Microsoftoutlook, Httprequest, and Jira for data processing. Uses 18 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Jira, and Httprequest for data processing. Uses 18 nodes and integrates with 5 services.",
"steps": [
{
"name": "Gmail Trigger",
@@ -570888,10 +570918,10 @@
"triggerType": "Webhook",
"integrations": [
"Wait",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Wait, Manual, and Httprequest for data processing. Uses 19 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Wait, Httprequest, and Manual for data processing. Uses 19 nodes.",
"steps": [
{
"name": "Google Gemini Chat Model",
@@ -571387,12 +571417,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Googlecalendartool",
- "Gmailtool",
"Telegram",
- "Baserowtool"
+ "Baserowtool",
+ "Googlecalendartool",
+ "Gmailtool"
],
- "description": "Complex multi-step automation that orchestrates Googlecalendartool, Gmailtool, and Telegram for data processing. Uses 15 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Baserowtool, and Googlecalendartool for data processing. Uses 15 nodes and integrates with 4 services.",
"steps": [
{
"name": "Listen for incoming events",
@@ -571835,13 +571865,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Httprequest",
- "Wait",
"Code",
- "Gmailtool"
+ "Form",
+ "Gmailtool",
+ "Httprequest",
+ "Wait"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Wait for data processing. Uses 14 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Gmailtool for data processing. Uses 14 nodes and integrates with 5 services.",
"steps": [
{
"name": "New espionage assignment",
@@ -575663,21 +575693,21 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Googlesheets",
+ "Executiondata",
+ "Manual",
"Removeduplicates",
"Httprequest",
"Wait",
- "Aggregate",
- "Executiondata",
"Splitout",
- "Manual",
- "Filter",
"Executeworkflow",
- "Googlesheets",
- "Code",
- "Googledrive"
+ "Filter",
+ "Googledrive",
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Removeduplicates, and Httprequest for data processing. Uses 88 nodes and integrates with 13 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Executiondata for data processing. Uses 88 nodes and integrates with 13 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -576150,11 +576180,11 @@
"triggerType": "Complex",
"integrations": [
"Compression",
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Compression, Manual, and Httprequest for data processing. Uses 13 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Compression, Readwritefile, and Httprequest for data processing. Uses 13 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -577923,15 +577953,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
+ "Discord",
"Httprequest",
"Wait",
- "Schedule",
- "Discord",
- "Googlesheets",
- "Code",
- "Googledrive"
+ "Googledrive",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Schedule for data processing. Uses 41 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Discord for data processing. Uses 41 nodes and integrates with 7 services.",
"steps": [
{
"name": "Set API Keys",
@@ -578133,11 +578163,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Form",
"Converttofile",
+ "Form",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Form, Converttofile, and Httprequest for data processing. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Converttofile, Form, and Httprequest for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Prompt and options",
@@ -578591,12 +578621,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
- "Respondtowebhook",
"Webhook",
- "Httprequest"
+ "Stopanderror",
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Respondtowebhook, and Webhook for data processing. Uses 16 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Stopanderror, and Httprequest for data processing. Uses 16 nodes and integrates with 4 services.",
"steps": [
{
"name": "Open Auth Webpage",
@@ -578894,12 +578924,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
- "Notion",
"Code",
- "Schedule"
+ "Notion",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Notion, and Code for data processing. Uses 11 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Notion, and Schedule for data processing. Uses 11 nodes and integrates with 4 services.",
"steps": [
{
"name": "Every day",
@@ -580881,18 +580911,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Mysql",
"Emailreadimap",
- "Slack",
+ "Renamekeys",
+ "Compression",
"Datetime",
"Extractfromfile",
- "Compression",
- "Renamekeys",
"Splitout",
+ "Xml",
"Emailsend",
- "Xml"
+ "Slack",
+ "Mysql"
],
- "description": "Complex multi-step automation that orchestrates Mysql, Emailreadimap, and Slack for data processing. Uses 20 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Emailreadimap, Renamekeys, and Compression for data processing. Uses 20 nodes and integrates with 10 services.",
"steps": [
{
"name": "Email Trigger (IMAP)",
@@ -582611,13 +582641,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
- "Manual",
+ "Code",
"Googlesheets",
- "Code"
+ "Manual",
+ "Httprequest",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Manual for data processing. Uses 35 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 35 nodes and integrates with 5 services.",
"steps": [
{
"name": "ScheduleTrigger",
@@ -584022,13 +584052,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Microsoftoutlook",
"Splitinbatches",
- "Markdown",
"Manual",
- "Filter"
+ "Filter",
+ "Markdown",
+ "Microsoftoutlook"
],
- "description": "Complex multi-step automation that orchestrates Microsoftoutlook, Splitinbatches, and Markdown for data processing. Uses 36 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Splitinbatches, Manual, and Filter for data processing. Uses 36 nodes and integrates with 5 services.",
"steps": [
{
"name": "Markdown1",
@@ -584784,11 +584814,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Aggregate",
+ "Splitout",
"Gmail",
- "Splitout"
+ "Aggregate"
],
- "description": "Webhook-triggered automation that orchestrates Aggregate, Gmail, and Splitout for data processing. Uses 19 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Splitout, Gmail, and Aggregate for data processing. Uses 19 nodes.",
"steps": [
{
"name": "Gmail trigger",
@@ -585746,17 +585776,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Aggregate",
- "Rssfeedread",
- "Splitout",
- "Filter",
- "Executeworkflow",
"Code",
- "Wordpress"
+ "Httprequest",
+ "Wordpress",
+ "Splitout",
+ "Executeworkflow",
+ "Filter",
+ "Splitinbatches",
+ "Aggregate",
+ "Rssfeedread"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Aggregate for data processing. Uses 32 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Wordpress for data processing. Uses 32 nodes and integrates with 9 services.",
"steps": [
{
"name": "RSS Feed Trigger",
@@ -586500,16 +586530,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
"Limit",
- "Httprequest",
- "Aggregate",
- "Markdown",
- "Splitout",
"Manual",
- "Wordpress"
+ "Httprequest",
+ "Html",
+ "Wordpress",
+ "Splitout",
+ "Markdown",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Html, Limit, and Httprequest for data processing. Uses 27 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Limit, Manual, and Httprequest for data processing. Uses 27 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -587195,12 +587225,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Wordpress",
- "Manual",
+ "Googlesheets",
"Httprequest",
- "Googlesheets"
+ "Wordpress",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Wordpress, Manual, and Httprequest for data processing. Uses 17 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Httprequest, and Wordpress for data processing. Uses 17 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -588390,15 +588420,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Jiratool",
- "Aggregate",
- "Notiontool",
- "Schedule",
"Jira",
- "Executeworkflow"
+ "Notiontool",
+ "Jiratool",
+ "Executeworkflow",
+ "Slack",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Slack, Jiratool, and Aggregate for data processing. Uses 36 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Jira, Notiontool, and Jiratool for data processing. Uses 36 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -588714,12 +588744,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Splitout",
"Googledrive",
- "Manual",
"Editimage",
- "Splitout"
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Googledrive, Manual, and Editimage for data processing. Uses 11 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Splitout, Googledrive, and Editimage for data processing. Uses 11 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -589124,13 +589154,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Notion",
"Httprequest",
"Linkedin",
- "Aggregate",
"Schedule",
- "Notion"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Linkedin, and Aggregate for data processing. Uses 11 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Notion, Httprequest, and Linkedin for data processing. Uses 11 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -589718,14 +589748,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
"Airtabletool",
- "Schedule",
"Code",
+ "Httprequest",
"Airtable",
- "Gmail"
+ "Gmail",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Airtabletool, and Schedule for data processing. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Airtabletool, Code, and Httprequest for data processing. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "8:00am Morning Scheduled Trigger",
@@ -591640,17 +591670,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Httprequest",
- "Aggregate",
- "Splitout",
- "Schedule",
"Whatsapp",
- "Executeworkflow",
"Googlecalendar",
- "Gmail"
+ "Httprequest",
+ "Html",
+ "Splitout",
+ "Gmail",
+ "Executeworkflow",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Aggregate for data processing. Uses 61 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Whatsapp, Googlecalendar, and Httprequest for data processing. Uses 61 nodes and integrates with 9 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -592071,10 +592101,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 9 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Manual Execution",
@@ -592860,15 +592890,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Zendesk",
- "Splitinbatches",
- "Extractfromfile",
- "Splitout",
"Manual",
+ "Zendesk",
+ "Extractfromfile",
"Noop",
- "Googledrive"
+ "Splitout",
+ "Googledrive",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Zendesk, Splitinbatches, and Extractfromfile for notifications and alerts. Uses 26 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Zendesk, and Extractfromfile for notifications and alerts. Uses 26 nodes and integrates with 7 services.",
"steps": [
{
"name": "When chat message received",
@@ -593333,13 +593363,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Strapi",
+ "Interval",
"Webhook",
"Twitter",
- "Interval",
+ "Strapi",
"Googlecloudnaturallanguage"
],
- "description": "Complex multi-step automation that orchestrates Strapi, Webhook, and Twitter for data processing. Uses 14 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Interval, Webhook, and Twitter for data processing. Uses 14 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook",
@@ -593922,14 +593952,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Slack",
- "Googledocs",
- "Extractfromfile",
"Webhook",
- "Gmail"
+ "Extractfromfile",
+ "Gmail",
+ "Slack",
+ "Splitinbatches",
+ "Googledocs"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Slack, and Googledocs for data processing. Uses 23 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Extractfromfile, and Gmail for data processing. Uses 23 nodes and integrates with 6 services.",
"steps": [
{
"name": "Wait for Request",
@@ -594586,10 +594616,10 @@
"triggerType": "Webhook",
"integrations": [
"Googledrive",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Googledrive, Manual, and Httprequest for data processing. Uses 9 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googledrive, Httprequest, and Manual for data processing. Uses 9 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -595072,11 +595102,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Executeworkflow",
"Code",
+ "Executeworkflow",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Executeworkflow, Code, and Httprequest for data processing. Uses 17 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Executeworkflow, and Httprequest for data processing. Uses 17 nodes.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -596991,16 +597021,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Googledocs",
- "Linkedin",
- "Facebookgraphapi",
- "Executeworkflow",
- "Twitter",
"Code",
- "Gmail"
+ "Facebookgraphapi",
+ "Httprequest",
+ "Linkedin",
+ "Twitter",
+ "Gmail",
+ "Executeworkflow",
+ "Googledocs"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Googledocs, and Linkedin for data processing. Uses 56 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Facebookgraphapi, and Httprequest for data processing. Uses 56 nodes and integrates with 8 services.",
"steps": [
{
"name": "When chat message received",
@@ -597611,13 +597641,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Editimage",
"Httprequest",
"Splitout",
"Googledrive",
- "Editimage"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Splitout for data processing. Uses 16 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Editimage, Httprequest, and Splitout for data processing. Uses 16 nodes and integrates with 5 services.",
"steps": [
{
"name": "Watch for new images",
@@ -598721,17 +598751,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Supabase",
+ "Manual",
"Removeduplicates",
"Httprequest",
- "Aggregate",
- "Markdown",
+ "Html",
"Splitout",
- "Manual",
- "Filter"
+ "Supabase",
+ "Filter",
+ "Markdown",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Html, Supabase, and Removeduplicates for data processing. Uses 38 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Removeduplicates, and Httprequest for data processing. Uses 38 nodes and integrates with 9 services.",
"steps": [
{
"name": "Execute workflow",
@@ -599766,17 +599796,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Youtube",
- "Slack",
- "Removeduplicates",
- "Schedule",
- "Manual",
- "Discord",
"Googlesheets",
+ "Manual",
+ "Removeduplicates",
+ "Discord",
+ "Youtube",
"Twitter",
- "Gmail"
+ "Gmail",
+ "Slack",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Youtube, Slack, and Removeduplicates for data processing. Uses 28 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Removeduplicates for data processing. Uses 28 nodes and integrates with 9 services.",
"steps": [
{
"name": "Check Every 2 Hours",
@@ -599943,10 +599973,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Googlecalendar",
- "Googlesheets"
+ "Googlesheets",
+ "Googlecalendar"
],
- "description": "Webhook-triggered automation that orchestrates Code, Googlecalendar, and Googlesheets for data processing. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Googlesheets, and Googlecalendar for data processing. Uses 5 nodes.",
"steps": [
{
"name": "New Event Entry Listener",
@@ -600279,10 +600309,10 @@
"integrations": [
"Code",
"Googledrive",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Googledrive, and Manual for data processing. Uses 10 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Code, Googledrive, and Httprequest for data processing. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -600489,10 +600519,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Telegram",
- "Gmail"
+ "Gmail",
+ "Telegram"
],
- "description": "Webhook-triggered automation that connects Telegram and Gmail for notifications and alerts. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that connects Gmail and Telegram for notifications and alerts. Uses 5 nodes.",
"steps": [
{
"name": "Incoming Email Monitor",
@@ -601140,11 +601170,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Airtabletool",
"Webhook",
- "Respondtowebhook",
- "Airtabletool"
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and Airtabletool for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Airtabletool, Webhook, and Respondtowebhook for data processing. Uses 7 nodes.",
"steps": [
{
"name": "Respond to Obsidian",
@@ -602779,13 +602809,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
- "Manual",
+ "Code",
"Googlesheets",
- "Code"
+ "Manual",
+ "Httprequest",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Manual for data processing. Uses 35 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 35 nodes and integrates with 5 services.",
"steps": [
{
"name": "ScheduleTrigger",
@@ -603353,11 +603383,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
"Slack",
+ "Webhook",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Slack, and Httprequest for data processing. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Webhook, and Httprequest for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Webhook",
@@ -604554,17 +604584,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Readwritefile",
"Limit",
"Httprequest",
- "Aggregate",
- "Converttofile",
"Splitout",
- "Filter",
+ "Converttofile",
"Executeworkflow",
+ "Filter",
"Sort",
- "Readwritefile"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Limit, Httprequest, and Aggregate for data processing. Uses 43 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Readwritefile, Limit, and Httprequest for data processing. Uses 43 nodes and integrates with 9 services.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -606052,14 +606082,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
+ "Manual",
"Bamboohr",
"Splitout",
+ "Executeworkflow",
"Filter",
- "Manual",
- "Executeworkflow"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Bamboohr, and Splitout for data processing. Uses 50 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Bamboohr, and Splitout for data processing. Uses 50 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -606465,10 +606495,10 @@
"triggerType": "Webhook",
"integrations": [
"Wait",
- "Gmailtool",
- "Gmail"
+ "Gmail",
+ "Gmailtool"
],
- "description": "Webhook-triggered automation that orchestrates Wait, Gmailtool, and Gmail for data processing. Uses 13 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Wait, Gmail, and Gmailtool for data processing. Uses 13 nodes.",
"steps": [
{
"name": "Gmail labelling agent",
@@ -607203,11 +607233,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Noop",
"Googlecalendar",
- "Executeworkflow"
+ "Executeworkflow",
+ "Noop"
],
- "description": "Complex multi-step automation that orchestrates Code, Noop, and Googlecalendar for data processing. Uses 25 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlecalendar, and Executeworkflow for data processing. Uses 25 nodes and integrates with 4 services.",
"steps": [
{
"name": "Get Availability",
@@ -607835,13 +607865,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Extractfromfile",
- "Manual",
"Code",
+ "Manual",
+ "Extractfromfile",
+ "Httprequest",
"Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Extractfromfile, and Manual for data processing. Uses 21 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Extractfromfile for data processing. Uses 21 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -610803,10 +610833,10 @@
"integrations": [
"Code",
"Webhook",
- "Respondtowebhook",
- "Ssh"
+ "Ssh",
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Code, Webhook, and Respondtowebhook for data processing. Uses 33 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Ssh for data processing. Uses 33 nodes and integrates with 4 services.",
"steps": [
{
"name": "API",
@@ -611624,11 +611654,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
+ "Googlesheets",
"Webhook",
- "Httprequest",
- "Googlesheets"
+ "Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Httprequest, and Googlesheets for data processing. Uses 17 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Webhook, and Httprequest for data processing. Uses 17 nodes.",
"steps": [
{
"name": "Line: Messaging API",
@@ -612956,16 +612986,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Wait",
- "Aggregate",
+ "Readwritefile",
"Extractfromfile",
+ "Wait",
"Localfile",
"Splitout",
"Converttofile",
- "Readwritefile"
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Wait, and Aggregate for data processing. Uses 42 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Readwritefile, Extractfromfile, and Wait for data processing. Uses 42 nodes and integrates with 8 services.",
"steps": [
{
"name": "Local File Trigger",
@@ -614871,11 +614901,11 @@
"triggerType": "Complex",
"integrations": [
"Localfile",
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Localfile, Manual, and Httprequest for data processing. Uses 29 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Localfile, Readwritefile, and Httprequest for data processing. Uses 29 nodes and integrates with 4 services.",
"steps": [
{
"name": "Local File Trigger",
@@ -616114,17 +616144,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Compression",
+ "Manual",
+ "Extractfromfile",
"Httprequest",
"Wait",
- "Extractfromfile",
- "Compression",
"Splitout",
- "Manual",
+ "Executeworkflow",
"Filter",
- "Executeworkflow"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 38 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Compression, Manual, and Extractfromfile for data processing. Uses 38 nodes and integrates with 9 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -617073,14 +617103,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Elasticsearch",
- "Splitout",
- "Filter",
"Manual",
- "Editimage"
+ "Elasticsearch",
+ "Editimage",
+ "Httprequest",
+ "Splitout",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Elasticsearch, and Splitout for data processing. Uses 17 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Elasticsearch, and Editimage for data processing. Uses 17 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -617985,15 +618015,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Extractfromfile",
- "Splitout",
"Manual",
+ "Github",
+ "Extractfromfile",
+ "Httprequest",
+ "Splitout",
"Executeworkflow",
- "Github"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Extractfromfile for data processing. Uses 27 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Github, and Extractfromfile for data processing. Uses 27 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -618731,12 +618761,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Manual",
- "Extractfromfile",
"Whatsapp",
- "Httprequest"
+ "Httprequest",
+ "Extractfromfile",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Manual, Extractfromfile, and Whatsapp for data processing. Uses 28 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Whatsapp, Httprequest, and Extractfromfile for data processing. Uses 28 nodes and integrates with 4 services.",
"steps": [
{
"name": "WhatsApp Trigger",
@@ -619480,12 +619510,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Manual",
- "Extractfromfile",
"Whatsapp",
- "Httprequest"
+ "Httprequest",
+ "Extractfromfile",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Manual, Extractfromfile, and Whatsapp for data processing. Uses 28 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Whatsapp, Httprequest, and Extractfromfile for data processing. Uses 28 nodes and integrates with 4 services.",
"steps": [
{
"name": "WhatsApp Trigger",
@@ -620201,11 +620231,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Noop",
+ "Googlesheets",
"Telegram",
- "Googlesheets"
+ "Noop"
],
- "description": "Complex multi-step automation that orchestrates Code, Noop, and Telegram for data processing. Uses 23 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Telegram for data processing. Uses 23 nodes and integrates with 4 services.",
"steps": [
{
"name": "SetResponse",
@@ -620478,12 +620508,12 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Splitout",
"Html",
- "Manual",
"Httprequest",
- "Splitout"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Html, Manual, and Httprequest for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Splitout, Html, and Httprequest for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -621717,13 +621747,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Webhook",
"Httprequest",
"Wait",
- "Webhook",
- "Code",
"Airtable"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Webhook for data processing. Uses 34 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Httprequest for data processing. Uses 34 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook",
@@ -622693,10 +622723,10 @@
"triggerType": "Scheduled",
"integrations": [
"Googlesheets",
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Googlesheets, Httprequest, and Schedule for data processing. Uses 15 nodes.",
+ "description": "Scheduled automation that orchestrates Googlesheets, Schedule, and Httprequest for data processing. Uses 15 nodes.",
"steps": [
{
"name": "Schedule Trigger",
@@ -623206,11 +623236,11 @@
"triggerType": "Manual",
"integrations": [
"Converttofile",
- "Manual",
"Zammad",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Converttofile, Manual, and Zammad to update existing data. Uses 10 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Converttofile, Zammad, and Httprequest to update existing data. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -624290,16 +624320,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Splitinbatches",
- "Httprequest",
- "Aggregate",
- "Markdown",
- "Converttofile",
"Code",
- "Gmail"
+ "Form",
+ "Httprequest",
+ "Gmail",
+ "Converttofile",
+ "Markdown",
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Form, Splitinbatches, and Httprequest for data processing. Uses 36 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Httprequest for data processing. Uses 36 nodes and integrates with 8 services.",
"steps": [
{
"name": "On form submission4",
@@ -624748,10 +624778,10 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "N8N",
- "Schedule"
+ "Schedule",
+ "N8N"
],
- "description": "Scheduled automation that connects N8N and Schedule for data processing. Uses 13 nodes.",
+ "description": "Scheduled automation that connects Schedule and N8N for data processing. Uses 13 nodes.",
"steps": [
{
"name": "Activate at 08:00 daily",
@@ -625212,10 +625242,10 @@
"triggerType": "Webhook",
"integrations": [
"Webflow",
- "Code",
- "Discord"
+ "Discord",
+ "Code"
],
- "description": "Webhook-triggered automation that orchestrates Webflow, Code, and Discord for data processing. Uses 13 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Webflow, Discord, and Code for data processing. Uses 13 nodes.",
"steps": [
{
"name": "Webflow Form Submission Trigger",
@@ -626355,11 +626385,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Filter",
+ "Googlesheets",
"Executeworkflow",
- "Googlesheets"
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Code, Filter, and Executeworkflow for data processing. Uses 19 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Executeworkflow for data processing. Uses 19 nodes and integrates with 4 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -626841,10 +626871,10 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that connects Manual and Httprequest for data processing. Uses 17 nodes.",
+ "description": "Webhook-triggered automation that connects Httprequest and Manual for data processing. Uses 17 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -629182,11 +629212,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Noop",
+ "Googlesheets",
"Telegram",
- "Googlesheets"
+ "Noop"
],
- "description": "Complex multi-step automation that orchestrates Code, Noop, and Telegram for data processing. Uses 23 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Telegram for data processing. Uses 23 nodes and integrates with 4 services.",
"steps": [
{
"name": "SetResponse",
@@ -629614,12 +629644,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Webhook",
"Code",
"Splitout",
+ "Webhook",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Code, and Splitout for data processing. Uses 14 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Splitout, and Webhook for data processing. Uses 14 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webhook",
@@ -630017,10 +630047,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that connects Manual and Httprequest for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that connects Httprequest and Manual for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Set Yelp URL with the Bright Data Zone",
@@ -630512,11 +630542,11 @@
"triggerType": "Complex",
"integrations": [
"Slack",
- "Lemlist",
"Markdown",
- "Httprequest"
+ "Httprequest",
+ "Lemlist"
],
- "description": "Complex multi-step automation that orchestrates Slack, Lemlist, and Markdown for data processing. Uses 18 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Slack, Markdown, and Httprequest for data processing. Uses 18 nodes and integrates with 4 services.",
"steps": [
{
"name": "Lemlist Trigger - On new reply",
@@ -631026,10 +631056,10 @@
"integrations": [
"Slack",
"Linear",
- "Filter",
- "Httprequest"
+ "Httprequest",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Slack, Linear, and Filter for data processing. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Slack, Linear, and Httprequest for data processing. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "Linear Trigger",
@@ -633270,14 +633300,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Limit",
- "Filter",
"Telegram",
+ "Limit",
"Manual",
- "Googledrive",
- "Gmail"
+ "Gmail",
+ "Filter",
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Limit, Filter, and Telegram for data processing. Uses 33 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Limit, and Manual for data processing. Uses 33 nodes and integrates with 6 services.",
"steps": [
{
"name": "Start Workflow",
@@ -634091,14 +634121,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
- "Respondtowebhook",
- "Manual",
"Whatsapp",
+ "Manual",
+ "Respondtowebhook",
+ "Webhook",
+ "Httprequest",
"Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Respondtowebhook for data processing. Uses 24 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Whatsapp, Manual, and Respondtowebhook for data processing. Uses 24 nodes and integrates with 6 services.",
"steps": [
{
"name": "Respond to Webhook",
@@ -634173,10 +634203,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Totp"
+ "Totp",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Totp for data processing. Uses 2 nodes.",
+ "description": "Manual workflow that connects Totp and Manual for data processing. Uses 2 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -634797,15 +634827,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Limit",
- "Splitinbatches",
- "Httprequest",
- "Markdown",
- "Schedule",
"Code",
- "Gmail"
+ "Limit",
+ "Httprequest",
+ "Gmail",
+ "Markdown",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Limit, Splitinbatches, and Httprequest for data processing. Uses 23 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Limit, and Httprequest for data processing. Uses 23 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule trigger (1 min)",
@@ -636328,16 +636358,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Html",
- "Webhook",
- "Splitout",
"Crypto",
+ "Googlesheets",
+ "Form",
"Respondtowebhook",
- "Redis",
- "Googlesheets"
+ "Webhook",
+ "Html",
+ "Splitout",
+ "Redis"
],
- "description": "Complex multi-step automation that orchestrates Form, Html, and Webhook for data processing. Uses 40 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Crypto, Googlesheets, and Form for data processing. Uses 40 nodes and integrates with 8 services.",
"steps": [
{
"name": "Start Interview",
@@ -636663,10 +636693,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 8 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 8 nodes.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -637126,14 +637156,14 @@
"triggerType": "Complex",
"integrations": [
"Limit",
- "Splitinbatches",
+ "Manual",
"Httprequest",
+ "Noop",
"Wait",
"Splitout",
- "Manual",
- "Noop"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Limit, Splitinbatches, and Httprequest for data processing. Uses 17 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Limit, Manual, and Httprequest for data processing. Uses 17 nodes and integrates with 7 services.",
"steps": [
{
"name": "Example fields from data source",
@@ -637264,10 +637294,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Googlecalendar",
- "Telegram"
+ "Telegram",
+ "Googlecalendar"
],
- "description": "Webhook-triggered automation that connects Googlecalendar and Telegram for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that connects Telegram and Googlecalendar for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Google Calendar Trigger",
@@ -638509,11 +638539,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Summarize",
"Respondtowebhook",
- "Executeworkflow"
+ "Executeworkflow",
+ "Summarize"
],
- "description": "Webhook-triggered automation that orchestrates Summarize, Respondtowebhook, and Executeworkflow for data processing. Uses 39 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Respondtowebhook, Executeworkflow, and Summarize for data processing. Uses 39 nodes.",
"steps": [
{
"name": "Query Classification",
@@ -640399,21 +640429,21 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
+ "Code",
+ "Googlesheets",
+ "Manual",
"Limit",
- "Splitinbatches",
"Removeduplicates",
"Httprequest",
"Wait",
"Splitout",
- "Schedule",
- "Manual",
- "Filter",
"Executeworkflow",
- "Googlesheets",
- "Code"
+ "Filter",
+ "Splitinbatches",
+ "Schedule",
+ "Stopanderror"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Limit, and Splitinbatches for data processing. Uses 42 nodes and integrates with 13 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 42 nodes and integrates with 13 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -641384,13 +641414,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Microsoftoutlook",
- "Httprequest",
+ "Code",
"Respondtowebhook",
+ "Httprequest",
"Executeworkflow",
- "Code"
+ "Microsoftoutlook"
],
- "description": "Complex multi-step automation that orchestrates Microsoftoutlook, Httprequest, and Respondtowebhook to create new records. Uses 24 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Httprequest to create new records. Uses 24 nodes and integrates with 5 services.",
"steps": [
{
"name": "Respond to Webhook",
@@ -642094,14 +642124,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Summarize",
- "Schedule",
- "Googleanalytics",
- "Telegram",
"Code",
- "Emailsend"
+ "Telegram",
+ "Summarize",
+ "Emailsend",
+ "Googleanalytics",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Summarize, Schedule, and Googleanalytics for data processing. Uses 14 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Summarize for data processing. Uses 14 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -642550,11 +642580,11 @@
"triggerType": "Complex",
"integrations": [
"Itemlists",
- "Manual",
"Editimage",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Itemlists, Manual, and Editimage to create new records. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Itemlists, Editimage, and Httprequest to create new records. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -643008,12 +643038,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Splitout",
"Emailreadimap",
- "Filter",
"Httprequest",
- "Splitout"
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Emailreadimap, Filter, and Httprequest to create new records. Uses 11 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Splitout, Emailreadimap, and Httprequest to create new records. Uses 11 nodes and integrates with 4 services.",
"steps": [
{
"name": "Get Mailbox IDs",
@@ -643170,11 +643200,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Humanticai",
"Httprequest",
- "Humanticai"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Httprequest, and Humanticai to create new records. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Humanticai, Httprequest, and Manual to create new records. Uses 5 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -643414,10 +643444,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
- "Slack"
+ "Slack",
+ "Webhook"
],
- "description": "Webhook-triggered automation that connects Webhook and Slack for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that connects Slack and Webhook for data processing. Uses 10 nodes.",
"steps": [
{
"name": "Webhook to receive message",
@@ -644210,13 +644240,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Splitout",
- "Schedule",
- "Manual",
- "Googlesheets"
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Httprequest, Splitout, and Schedule for data processing. Uses 8 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Googlesheets, Manual, and Httprequest for data processing. Uses 8 nodes and integrates with 5 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -645740,16 +645770,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Httprequest",
- "Splitout",
- "Filter",
- "Manual",
- "Executeworkflow",
+ "Code",
"Googlesheets",
- "Code"
+ "Manual",
+ "Httprequest",
+ "Html",
+ "Splitout",
+ "Executeworkflow",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Splitout for data processing. Uses 37 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 37 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -646310,12 +646340,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
- "Linear",
"Slack",
- "Schedule"
+ "Linear",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Linear, and Slack for data processing. Uses 19 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Slack, Linear, and Schedule for data processing. Uses 19 nodes and integrates with 4 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -646738,11 +646768,11 @@
"triggerType": "Complex",
"integrations": [
"Googledrive",
- "Manual",
"Editimage",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Googledrive, Manual, and Editimage for data processing. Uses 13 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googledrive, Editimage, and Httprequest for data processing. Uses 13 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -647065,11 +647095,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Httprequest",
"Extractfromfile",
- "Manual",
- "Httprequest"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Extractfromfile, Manual, and Httprequest for data processing. Uses 11 nodes.",
+ "description": "Manual workflow that orchestrates Httprequest, Extractfromfile, and Manual for data processing. Uses 11 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -648440,16 +648470,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
+ "Readwritefile",
+ "Manual",
+ "Executecommand",
"Httprequest",
"Wait",
- "Executecommand",
- "Manual",
- "Googlesheets",
- "Code",
- "Googledrive",
- "Readwritefile"
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Executecommand for data processing. Uses 28 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Readwritefile for data processing. Uses 28 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -650416,10 +650446,10 @@
"integrations": [
"Code",
"Webhook",
- "Respondtowebhook",
- "Ssh"
+ "Ssh",
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Code, Webhook, and Respondtowebhook for data processing. Uses 34 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Ssh for data processing. Uses 34 nodes and integrates with 4 services.",
"steps": [
{
"name": "API",
@@ -651738,19 +651768,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Manual",
+ "Respondtowebhook",
+ "Webhook",
"Html",
+ "Movebinarydata",
+ "Xml",
+ "Executeworkflow",
"N8N",
"Sort",
- "Aggregate",
- "Webhook",
- "Respondtowebhook",
- "Manual",
- "Movebinarydata",
- "Executeworkflow",
- "Code",
- "Xml"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Html, N8N, and Sort for data processing. Uses 33 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Respondtowebhook for data processing. Uses 33 nodes and integrates with 11 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -652477,18 +652507,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Summarize",
- "Markdown",
- "Splitout",
- "Manual",
- "Executeworkflow",
"Code",
+ "Manual",
"Googledrive",
- "Gmail"
+ "Httprequest",
+ "Summarize",
+ "Splitout",
+ "Gmail",
+ "Executeworkflow",
+ "Markdown",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Summarize for data processing. Uses 25 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Googledrive for data processing. Uses 25 nodes and integrates with 10 services.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -653153,13 +653183,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Manual",
"Code",
- "Readwritefile"
+ "Readwritefile",
+ "Manual",
+ "Httprequest",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Manual for data processing. Uses 20 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Readwritefile, and Manual for data processing. Uses 20 nodes and integrates with 5 services.",
"steps": [
{
"name": "Bright Data MCP Client For LinkedIn Person",
@@ -655671,13 +655701,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
+ "Code",
"Respondtowebhook",
- "Ssh",
- "Code"
+ "Webhook",
+ "Httprequest",
+ "Ssh"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Respondtowebhook for data processing. Uses 44 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Webhook for data processing. Uses 44 nodes and integrates with 5 services.",
"steps": [
{
"name": "API",
@@ -656187,11 +656217,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Googlecalendartool",
"Slack",
- "Schedule"
+ "Schedule",
+ "Googlecalendartool"
],
- "description": "Scheduled automation that orchestrates Googlecalendartool, Slack, and Schedule for data processing. Uses 9 nodes.",
+ "description": "Scheduled automation that orchestrates Slack, Schedule, and Googlecalendartool for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Schedule Trigger",
@@ -656888,16 +656918,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Openai",
+ "Code",
"Httprequest",
+ "Html",
"Wait",
"Splitout",
+ "Gmail",
"Schedule",
- "Code",
- "Gmail"
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Html, Openai, and Httprequest for data processing. Uses 21 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Html for data processing. Uses 21 nodes and integrates with 8 services.",
"steps": [
{
"name": "Schedule",
@@ -657163,10 +657193,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Gmail",
- "Googlesheets"
+ "Googlesheets",
+ "Gmail"
],
- "description": "Webhook-triggered automation that connects Gmail and Googlesheets for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that connects Googlesheets and Gmail for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Gmail Trigger",
@@ -658542,16 +658572,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
- "Extractfromfile",
- "Webhook",
- "Converttofile",
- "Splitout",
"Telegram",
+ "Baserowtool",
+ "Webhook",
+ "Extractfromfile",
+ "Splitout",
+ "Converttofile",
"Baserow",
- "Baserowtool"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Extractfromfile, and Webhook for data processing. Uses 48 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Baserowtool, and Webhook for data processing. Uses 48 nodes and integrates with 8 services.",
"steps": [
{
"name": "Listen for Telegram Events",
@@ -660227,16 +660257,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Html",
- "Splitinbatches",
- "Splitout",
- "Crypto",
"Code",
+ "Crypto",
+ "Form",
+ "Noop",
+ "Html",
"Airtable",
- "Noop"
+ "Splitout",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Form, Html, and Splitinbatches for data processing. Uses 44 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Crypto, and Form for data processing. Uses 44 nodes and integrates with 8 services.",
"steps": [
{
"name": "On form submission",
@@ -660644,12 +660674,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Manual",
- "Splitinbatches",
"Slack",
- "Gmail"
+ "Gmail",
+ "Splitinbatches",
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Manual, Splitinbatches, and Slack for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Gmail, and Splitinbatches for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "Click to Test Flow",
@@ -661587,15 +661617,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
"Removeduplicates",
"Httprequest",
+ "Html",
"Splitout",
- "Schedule",
"Airtable",
- "Gmail"
+ "Gmail",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Html, Removeduplicates, and Httprequest for data processing. Uses 24 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Removeduplicates, Httprequest, and Html for data processing. Uses 24 nodes and integrates with 7 services.",
"steps": [
{
"name": "Everyday @ 9am",
@@ -662116,14 +662146,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
- "Splitout",
- "Filter",
+ "Code",
"Manual",
+ "Splitout",
"Executeworkflow",
- "Code"
+ "Filter",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Splitout, and Filter for data processing. Uses 18 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Splitout for data processing. Uses 18 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -662856,13 +662886,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
- "Manual",
"Telegram",
+ "Manual",
"Noop",
- "Gmail"
+ "Gmail",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Manual, and Telegram for data processing. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Manual, and Noop for data processing. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -663225,13 +663255,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Openai",
+ "Manual",
"Webhook",
"Discord",
- "Manual",
- "Noop"
+ "Noop",
+ "Openai"
],
- "description": "Webhook-triggered automation that orchestrates Openai, Webhook, and Discord for data processing. Uses 9 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Manual, Webhook, and Discord for data processing. Uses 9 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -664719,18 +664749,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Mysql",
- "Googledocs",
- "Webhook",
+ "Code",
+ "Googlesheets",
"Mysqltool",
"Respondtowebhook",
"Cron",
- "Googlesheets",
+ "Webhook",
"Executeworkflow",
- "Code",
- "Googledrive"
+ "Mysql",
+ "Googledrive",
+ "Googledocs"
],
- "description": "Complex multi-step automation that orchestrates Mysql, Googledocs, and Webhook for data processing. Uses 53 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Mysqltool for data processing. Uses 53 nodes and integrates with 10 services.",
"steps": [
{
"name": "Cron",
@@ -665101,13 +665131,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Form",
"Extractfromfile",
- "Ghost",
- "Code",
- "Noop"
+ "Noop",
+ "Ghost"
],
- "description": "Complex multi-step automation that orchestrates Form, Extractfromfile, and Ghost for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Extractfromfile for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "Upload PDF",
@@ -665745,14 +665775,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Supabase",
- "Wait",
- "Aggregate",
- "Sort",
"Telegram",
- "Noop"
+ "Noop",
+ "Wait",
+ "Supabase",
+ "Sort",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Supabase, Wait, and Aggregate for data processing. Uses 22 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Noop, and Wait for data processing. Uses 22 nodes and integrates with 6 services.",
"steps": [
{
"name": "Receive Message",
@@ -666366,16 +666396,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Datetime",
- "Aggregate",
- "Webhook",
- "Converttofile",
- "Splitout",
"Respondtowebhook",
- "Gmail"
+ "Webhook",
+ "Datetime",
+ "Splitout",
+ "Gmail",
+ "Converttofile",
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Datetime, and Aggregate for data processing. Uses 19 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Webhook, and Datetime for data processing. Uses 19 nodes and integrates with 8 services.",
"steps": [
{
"name": "Respond to Obsidian",
@@ -666592,11 +666622,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Httprequest, and Readwritefile for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that orchestrates Readwritefile, Httprequest, and Manual for data processing. Uses 6 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -668111,14 +668141,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Splitout",
- "Schedule",
- "Manual",
- "Googlesheets",
- "Code"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Splitout, and Schedule for data processing. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -668643,10 +668673,10 @@
"triggerType": "Webhook",
"integrations": [
"Wait",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Wait, Manual, and Httprequest for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Wait, Httprequest, and Manual for data processing. Uses 14 nodes.",
"steps": [
{
"name": "Google Gemini Chat Model",
@@ -669327,12 +669357,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
+ "Airtabletool",
"Airtable",
"Telegram",
- "Airtabletool"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Airtable, and Telegram for data processing. Uses 18 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Airtabletool, Airtable, and Telegram for data processing. Uses 18 nodes and integrates with 4 services.",
"steps": [
{
"name": "Telegram Trigger",
@@ -670039,12 +670069,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
+ "Airtabletool",
"Airtable",
"Telegram",
- "Airtabletool"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Airtable, and Telegram for data processing. Uses 17 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Airtabletool, Airtable, and Telegram for data processing. Uses 17 nodes and integrates with 4 services.",
"steps": [
{
"name": "Telegram Trigger",
@@ -670475,15 +670505,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Httprequest",
- "Converttofile",
- "Splitout",
"Googlesheets",
- "Sort",
- "Gmail"
+ "Httprequest",
+ "Html",
+ "Splitout",
+ "Gmail",
+ "Converttofile",
+ "Sort"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Converttofile for data processing. Uses 11 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Httprequest, and Html for data processing. Uses 11 nodes and integrates with 7 services.",
"steps": [
{
"name": "Trigger- Watches For new URL in Spreadsheet",
@@ -671002,13 +671032,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Httprequest",
- "Manual",
- "Googlesheets",
"Code",
+ "Googlesheets",
+ "Manual",
+ "Httprequest",
"Googledrive"
],
- "description": "Webhook-triggered automation that orchestrates Httprequest, Manual, and Googlesheets for data processing. Uses 10 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 10 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -671366,10 +671396,10 @@
"triggerType": "Webhook",
"integrations": [
"Notion",
- "Filter",
- "Summarize"
+ "Summarize",
+ "Filter"
],
- "description": "Webhook-triggered automation that orchestrates Notion, Filter, and Summarize for data processing. Uses 9 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Notion, Summarize, and Filter for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Notion - Page Added Trigger",
@@ -672779,14 +672809,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
+ "Manual",
"Bamboohr",
"Splitout",
+ "Executeworkflow",
"Filter",
- "Manual",
- "Executeworkflow"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Bamboohr, and Splitout for data processing. Uses 50 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Bamboohr, and Splitout for data processing. Uses 50 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -673059,12 +673089,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Html",
- "Respondtowebhook",
"Webhook",
- "Httprequest"
+ "Html",
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Html, Respondtowebhook, and Webhook for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Html, and Httprequest for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "Respond to Webhook",
@@ -673301,12 +673331,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Html",
- "Respondtowebhook",
"Webhook",
- "Httprequest"
+ "Html",
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Html, Respondtowebhook, and Webhook for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Html, and Httprequest for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "Respond to Webhook",
@@ -674253,15 +674283,15 @@
"triggerType": "Complex",
"integrations": [
"Form",
- "Slack",
- "Aggregate",
- "Nocodb",
- "Schedule",
"Manual",
"Noop",
- "Emailsend"
+ "Emailsend",
+ "Nocodb",
+ "Slack",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Form, Slack, and Aggregate for data processing. Uses 27 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Form, Manual, and Noop for data processing. Uses 27 nodes and integrates with 8 services.",
"steps": [
{
"name": "Incident Form",
@@ -674785,11 +674815,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Manual",
"Editimage",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Code, Manual, and Editimage for data processing. Uses 16 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Editimage, and Httprequest for data processing. Uses 16 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -675432,14 +675462,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Schedule",
- "Manual",
"Code",
- "Github"
+ "Manual",
+ "Github",
+ "Httprequest",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Schedule for data backup operations. Uses 17 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Github for data backup operations. Uses 17 nodes and integrates with 6 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -676132,13 +676162,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
"Httprequest",
"N8N",
- "Schedule",
- "Code"
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and N8N for data backup operations. Uses 20 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and N8N for data backup operations. Uses 20 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -677108,12 +677138,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Googleslides",
- "Extractfromfile",
+ "Googlesheets",
"Googledrive",
- "Googlesheets"
+ "Googleslides",
+ "Extractfromfile"
],
- "description": "Complex multi-step automation that orchestrates Googleslides, Extractfromfile, and Googledrive to create new records. Uses 14 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Googledrive, and Googleslides to create new records. Uses 14 nodes and integrates with 4 services.",
"steps": [
{
"name": "New Leads Arrived",
@@ -678085,14 +678115,14 @@
"triggerType": "Complex",
"integrations": [
"Emailreadimap",
- "Httprequest",
- "Markdown",
"Manual",
"Googledrive",
+ "Httprequest",
"Gmail",
- "Emailsend"
+ "Emailsend",
+ "Markdown"
],
- "description": "Complex multi-step automation that orchestrates Emailreadimap, Httprequest, and Markdown for data processing. Uses 31 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Emailreadimap, Manual, and Googledrive for data processing. Uses 31 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -678598,10 +678628,10 @@
"triggerType": "Scheduled",
"integrations": [
"Nextcloud",
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Nextcloud, Httprequest, and Schedule for data processing. Uses 5 nodes.",
+ "description": "Scheduled automation that orchestrates Nextcloud, Schedule, and Httprequest for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Schedule Trigger",
@@ -680178,17 +680208,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Form",
"Executiondata",
- "Schedule",
- "Filter",
- "Executeworkflow",
"Editimage",
- "Code",
"Airtable",
- "Gmail"
+ "Gmail",
+ "Executeworkflow",
+ "Filter",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Form, Executiondata, and Schedule for data processing. Uses 32 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Executiondata for data processing. Uses 32 nodes and integrates with 9 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -681789,17 +681819,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Form",
"Executiondata",
- "Schedule",
- "Filter",
- "Executeworkflow",
"Editimage",
- "Code",
"Airtable",
- "Gmail"
+ "Gmail",
+ "Executeworkflow",
+ "Filter",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Form, Executiondata, and Schedule for data processing. Uses 32 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Executiondata for data processing. Uses 32 nodes and integrates with 9 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -682165,11 +682195,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Aggregate",
"Gmail",
- "Schedule"
+ "Schedule",
+ "Aggregate"
],
- "description": "Scheduled automation that orchestrates Aggregate, Gmail, and Schedule for data processing. Uses 9 nodes.",
+ "description": "Scheduled automation that orchestrates Gmail, Schedule, and Aggregate for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Daily 7AM Trigger",
@@ -685486,15 +685516,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
"Airtabletool",
+ "Form",
"Extractfromfile",
"Googlecalendartool",
- "Googledrive",
"Airtable",
- "Emailsend"
+ "Emailsend",
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Form, Airtabletool, and Extractfromfile for data processing. Uses 36 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Airtabletool, Form, and Extractfromfile for data processing. Uses 36 nodes and integrates with 7 services.",
"steps": [
{
"name": "On form submission",
@@ -687836,18 +687866,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Form",
- "Httprequest",
- "Wait",
- "Extractfromfile",
+ "Notion",
"Webhook",
+ "Httprequest",
+ "Extractfromfile",
+ "Wait",
"Notiontool",
"Filter",
- "Googlesheets",
- "Notion",
"Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Wait for data processing. Uses 67 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Form, and Notion for data processing. Uses 67 nodes and integrates with 10 services.",
"steps": [
{
"name": "ElevenLabs Web Hook",
@@ -688373,11 +688403,11 @@
"triggerType": "Complex",
"integrations": [
"Wait",
- "Noop",
"Twilio",
- "Redis"
+ "Redis",
+ "Noop"
],
- "description": "Complex multi-step automation that orchestrates Wait, Noop, and Twilio for data processing. Uses 18 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Wait, Twilio, and Redis for data processing. Uses 18 nodes and integrates with 4 services.",
"steps": [
{
"name": "Twilio Trigger",
@@ -689149,11 +689179,11 @@
"triggerType": "Complex",
"integrations": [
"Webhook",
- "Respondtowebhook",
"Executeworkflow",
- "Httprequest"
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Respondtowebhook, and Executeworkflow for data processing. Uses 23 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Executeworkflow, and Httprequest for data processing. Uses 23 nodes and integrates with 4 services.",
"steps": [
{
"name": "Close Modal Popup",
@@ -689901,11 +689931,11 @@
"triggerType": "Complex",
"integrations": [
"Webhook",
- "Respondtowebhook",
"Executeworkflow",
- "Httprequest"
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Respondtowebhook, and Executeworkflow for data processing. Uses 23 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Executeworkflow, and Httprequest for data processing. Uses 23 nodes and integrates with 4 services.",
"steps": [
{
"name": "Close Modal Popup",
@@ -691116,19 +691146,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Strapi",
"Webflow",
- "Splitinbatches",
- "Httprequest",
- "Aggregate",
- "Wordpress",
- "Splitout",
- "Manual",
- "Executeworkflow",
"Googlesheets",
- "Googledrive"
+ "Manual",
+ "Wordpress",
+ "Httprequest",
+ "Splitout",
+ "Executeworkflow",
+ "Strapi",
+ "Googledrive",
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Strapi, Webflow, and Splitinbatches for data processing. Uses 36 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Webflow, Googlesheets, and Manual for data processing. Uses 36 nodes and integrates with 11 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -691455,13 +691485,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Slack",
- "Httprequest",
- "Markdown",
+ "Code",
"Pipedrive",
- "Code"
+ "Httprequest",
+ "Slack",
+ "Markdown"
],
- "description": "Webhook-triggered automation that orchestrates Slack, Httprequest, and Markdown for data processing. Uses 8 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Pipedrive, and Httprequest for data processing. Uses 8 nodes and integrates with 5 services.",
"steps": [
{
"name": "Pipedrive Trigger - An Organization is created",
@@ -692477,12 +692507,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Manual",
"Airtable",
"Executeworkflow",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Manual, Airtable, and Executeworkflow for data processing. Uses 29 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Airtable, Executeworkflow, and Httprequest for data processing. Uses 29 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -693396,18 +693426,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Splitout",
- "Manual",
- "Telegram",
- "Executeworkflow",
- "Googlesheets",
"Code",
+ "Googlesheets",
+ "Telegram",
+ "Manual",
+ "Httprequest",
+ "Splitout",
+ "Gmail",
+ "Executeworkflow",
"Googledrive",
- "Gmail"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Splitout for data processing. Uses 26 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Telegram for data processing. Uses 26 nodes and integrates with 10 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -694292,12 +694322,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Form",
- "Extractfromfile",
+ "Googlesheets",
"Gmail",
- "Googlesheets"
+ "Form",
+ "Extractfromfile"
],
- "description": "Webhook-triggered automation that orchestrates Form, Extractfromfile, and Gmail for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Gmail, and Form for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "Application Form",
@@ -694605,15 +694635,15 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Slack",
- "Postgres",
- "Cron",
"Mongodb",
- "Twitter",
+ "Cron",
+ "Postgres",
"Noop",
+ "Twitter",
+ "Slack",
"Googlecloudnaturallanguage"
],
- "description": "Scheduled automation that orchestrates Slack, Postgres, and Cron for data processing. Uses 9 nodes and integrates with 7 services.",
+ "description": "Scheduled automation that orchestrates Mongodb, Cron, and Postgres for data processing. Uses 9 nodes and integrates with 7 services.",
"steps": [
{
"name": "Cron",
@@ -695060,11 +695090,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
"Airtable",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Airtable, and Httprequest for data processing. Uses 7 nodes.",
+ "description": "Manual workflow that orchestrates Airtable, Httprequest, and Manual for data processing. Uses 7 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -695325,12 +695355,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Html",
- "Respondtowebhook",
"Webhook",
- "Httprequest"
+ "Html",
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Html, Respondtowebhook, and Webhook for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Html, and Httprequest for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "Respond to Webhook",
@@ -695633,12 +695663,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Extractfromfile",
"Googledrive",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Extractfromfile",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Extractfromfile, Googledrive, and Manual for data processing. Uses 11 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googledrive, Httprequest, and Extractfromfile for data processing. Uses 11 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking 'Test workflow'",
@@ -696835,14 +696865,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Extractfromfile",
- "Converttofile",
- "Telegram",
"Code",
- "Noop"
+ "Telegram",
+ "Extractfromfile",
+ "Noop",
+ "Httprequest",
+ "Converttofile"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Extractfromfile, and Converttofile to create new records. Uses 43 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Extractfromfile to create new records. Uses 43 nodes and integrates with 6 services.",
"steps": [
{
"name": "Telegram trigger",
@@ -698554,16 +698584,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Html",
- "Splitinbatches",
- "Splitout",
- "Crypto",
"Code",
+ "Crypto",
+ "Form",
+ "Noop",
+ "Html",
"Airtable",
- "Noop"
+ "Splitout",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Form, Html, and Splitinbatches for data processing. Uses 44 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Crypto, and Form for data processing. Uses 44 nodes and integrates with 8 services.",
"steps": [
{
"name": "On form submission",
@@ -701618,13 +701648,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Extractfromfile",
- "Splitout",
"Googlesheets",
+ "Extractfromfile",
+ "Html",
+ "Splitout",
"Gmail"
],
- "description": "Complex multi-step automation that orchestrates Html, Extractfromfile, and Splitout for data processing. Uses 24 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Extractfromfile, and Html for data processing. Uses 24 nodes and integrates with 5 services.",
"steps": [
{
"name": "Extract invoice",
@@ -702149,12 +702179,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Extractfromfile",
"Googledrive",
"Converttofile",
- "Httprequest"
+ "Httprequest",
+ "Extractfromfile"
],
- "description": "Complex multi-step automation that orchestrates Extractfromfile, Googledrive, and Converttofile for data processing. Uses 16 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googledrive, Converttofile, and Httprequest for data processing. Uses 16 nodes and integrates with 4 services.",
"steps": [
{
"name": "Get PDF or Images",
@@ -703214,16 +703244,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Schedule",
- "Manual",
- "Googlesheets",
"Code",
+ "Googlesheets",
+ "Manual",
+ "Httprequest",
"Noop",
- "Xml"
+ "Xml",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Schedule for data processing. Uses 26 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 26 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -703769,13 +703799,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
+ "Code",
"Manual",
+ "Httprequest",
"Baserow",
- "Code"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Manual for data processing. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -703968,11 +703998,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Httprequest",
"Splitout",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Httprequest, Splitout, and Schedule for data processing. Uses 4 nodes.",
+ "description": "Scheduled automation that orchestrates Splitout, Schedule, and Httprequest for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Schedule Trigger",
@@ -704723,10 +704753,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Spotify",
- "Telegram"
+ "Telegram",
+ "Spotify"
],
- "description": "Webhook-triggered automation that connects Spotify and Telegram for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that connects Telegram and Spotify for data processing. Uses 14 nodes.",
"steps": [
{
"name": "Resume play",
@@ -706956,11 +706986,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Splitout",
"N8N",
- "Manual",
- "Splitout"
+ "Manual"
],
- "description": "Manual workflow that orchestrates N8N, Manual, and Splitout to create new records. Uses 7 nodes.",
+ "description": "Manual workflow that orchestrates Splitout, N8N, and Manual to create new records. Uses 7 nodes.",
"steps": [
{
"name": "Google JSON",
@@ -707482,13 +707512,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
- "Extractfromfile",
- "Manual",
"Code",
- "Github"
+ "Manual",
+ "Github",
+ "Extractfromfile",
+ "Stopanderror"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Extractfromfile, and Manual for data processing. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Github for data processing. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -708029,8 +708059,8 @@
"Form",
"Removeduplicates",
"Httprequest",
- "Converttofile",
- "Movebinarydata"
+ "Movebinarydata",
+ "Converttofile"
],
"description": "Complex multi-step automation that orchestrates Form, Removeduplicates, and Httprequest for data processing. Uses 14 nodes and integrates with 5 services.",
"steps": [
@@ -708832,11 +708862,11 @@
"triggerType": "Complex",
"integrations": [
"Form",
- "Respondtowebhook",
+ "Httprequest",
"S3",
- "Httprequest"
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Form, Respondtowebhook, and S3 for data processing. Uses 19 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Form, Httprequest, and S3 for data processing. Uses 19 nodes and integrates with 4 services.",
"steps": [
{
"name": "Vivid Pop Explosion",
@@ -709268,10 +709298,10 @@
"integrations": [
"Wait",
"Googledrive",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Wait, Googledrive, and Manual for data processing. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Wait, Googledrive, and Httprequest for data processing. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -710711,13 +710741,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Googledocs",
- "Manual",
"Googlesheets",
- "Googledrive"
+ "Manual",
+ "Googledrive",
+ "Splitinbatches",
+ "Googledocs"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Googledocs, and Manual for data processing. Uses 18 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Googledrive for data processing. Uses 18 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -711463,12 +711493,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Manual",
"Woocommercetool",
"Googledrive",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Manual, Woocommercetool, and Googledrive for data processing. Uses 25 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Woocommercetool, Googledrive, and Httprequest for data processing. Uses 25 nodes and integrates with 4 services.",
"steps": [
{
"name": "When chat message received",
@@ -712321,16 +712351,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Telegram",
"Form",
+ "Wordpress",
"Httprequest",
"Extractfromfile",
- "Markdown",
- "Telegram",
- "Code",
- "Wordpress",
- "Gmail"
+ "Gmail",
+ "Markdown"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Extractfromfile for data processing. Uses 27 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Form for data processing. Uses 27 nodes and integrates with 8 services.",
"steps": [
{
"name": "Upload PDF",
@@ -712915,14 +712945,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Splitinbatches",
+ "Notion",
"Httprequest",
+ "Html",
"Splitout",
- "Schedule",
- "Notion"
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Html, Splitinbatches, and Httprequest for data processing. Uses 11 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Notion, Httprequest, and Html for data processing. Uses 11 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -714011,11 +714041,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
"Gmail",
- "Googlesheets"
+ "Googlesheets",
+ "Webhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Gmail, and Googlesheets for data processing. Uses 24 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Gmail, Googlesheets, and Webhook for data processing. Uses 24 nodes.",
"steps": [
{
"name": "From Wordpress",
@@ -714291,11 +714321,11 @@
"complexity": "low",
"triggerType": "Scheduled",
"integrations": [
- "Slack",
"Airtop",
+ "Slack",
"Schedule"
],
- "description": "Scheduled automation that orchestrates Slack, Airtop, and Schedule for monitoring and reporting. Uses 5 nodes.",
+ "description": "Scheduled automation that orchestrates Airtop, Slack, and Schedule for monitoring and reporting. Uses 5 nodes.",
"steps": [
{
"name": "Trigger daily",
@@ -715523,14 +715553,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Httprequest",
- "Webhook",
- "Respondtowebhook",
"Googlesheets",
+ "Form",
+ "Respondtowebhook",
+ "Webhook",
+ "Httprequest",
"Emailsend"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Webhook for data processing. Uses 29 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Form, and Respondtowebhook for data processing. Uses 29 nodes and integrates with 6 services.",
"steps": [
{
"name": "Webhook",
@@ -715811,11 +715841,11 @@
"triggerType": "Manual",
"integrations": [
"Splitout",
- "Manual",
"Converttofile",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Splitout, Manual, and Converttofile for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Splitout, Converttofile, and Httprequest for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -716250,14 +716280,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
- "Manual",
- "Agilecrm",
"Code",
- "Noop"
+ "Manual",
+ "Httprequest",
+ "Noop",
+ "Agilecrm",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Manual for data processing. Uses 14 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 14 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -716762,13 +716792,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Form",
- "Googlesheets",
"Code",
+ "Googlesheets",
+ "Form",
"Airtable",
"Gmail"
],
- "description": "Webhook-triggered automation that orchestrates Form, Googlesheets, and Code for data processing. Uses 10 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Googlesheets, and Form for data processing. Uses 10 nodes and integrates with 5 services.",
"steps": [
{
"name": "n8n Form Trigger",
@@ -716999,11 +717029,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Respondtowebhook",
+ "Code",
"Webhook",
- "Code"
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Respondtowebhook, Webhook, and Code for data processing. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Webhook, and Respondtowebhook for data processing. Uses 8 nodes.",
"steps": [
{
"name": "Receive Vectors",
@@ -717576,11 +717606,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Manual",
+ "Emailsend",
"Httprequest",
- "Emailsend"
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 21 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Emailsend, and Httprequest for data processing. Uses 21 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -718093,11 +718123,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Executeworkflow",
"Code",
+ "Executeworkflow",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Executeworkflow, Code, and Httprequest for data processing. Uses 17 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Executeworkflow, and Httprequest for data processing. Uses 17 nodes.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -718426,10 +718456,10 @@
"triggerType": "Webhook",
"integrations": [
"Googledrive",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Googledrive, Manual, and Httprequest for data processing. Uses 9 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googledrive, Httprequest, and Manual for data processing. Uses 9 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -718852,10 +718882,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that connects Manual and Httprequest for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that connects Httprequest and Manual for data processing. Uses 12 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -719360,11 +719390,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Httprequest",
"Splitout",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Splitout for data processing. Uses 15 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Splitout, and Schedule for data processing. Uses 15 nodes and integrates with 4 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -720447,18 +720477,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Gotify",
- "Splitinbatches",
- "Summarize",
- "Comparedatasets",
- "Schedule",
- "Spotify",
- "Manual",
"Filter",
+ "Manual",
+ "Summarize",
+ "Noop",
+ "Gotify",
"Sort",
- "Noop"
+ "Spotify",
+ "Splitinbatches",
+ "Schedule",
+ "Comparedatasets"
],
- "description": "Complex multi-step automation that orchestrates Gotify, Splitinbatches, and Summarize to synchronize data. Uses 40 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Filter, Manual, and Summarize to synchronize data. Uses 40 nodes and integrates with 10 services.",
"steps": [
{
"name": "Start",
@@ -722225,17 +722255,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Manual",
"Limit",
- "Splitinbatches",
"Removeduplicates",
"Httprequest",
"Wait",
+ "Airtable",
"Splitout",
- "Manual",
"Filter",
- "Airtable"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Limit, Splitinbatches, and Removeduplicates for data processing. Uses 39 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Limit, and Removeduplicates for data processing. Uses 39 nodes and integrates with 9 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -723972,15 +724002,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Postgres",
- "Schedule",
- "Facebookgraphapi",
+ "Code",
"Telegram",
- "Code"
+ "Facebookgraphapi",
+ "Postgres",
+ "Httprequest",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Postgres for data processing. Uses 44 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Facebookgraphapi for data processing. Uses 44 nodes and integrates with 7 services.",
"steps": [
{
"name": "Rapid Api params",
@@ -724337,12 +724367,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
- "Noop",
"Manual",
- "Splitout"
+ "Splitout",
+ "Aggregate",
+ "Noop"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Noop, and Manual for data processing. Uses 15 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Splitout, and Aggregate for data processing. Uses 15 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -725143,14 +725173,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Mysql",
- "Extractfromfile",
- "Converttofile",
+ "Readwritefile",
"Manual",
+ "Extractfromfile",
"Noop",
- "Readwritefile"
+ "Converttofile",
+ "Mysql"
],
- "description": "Complex multi-step automation that orchestrates Mysql, Extractfromfile, and Converttofile for data processing. Uses 29 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Readwritefile, Manual, and Extractfromfile for data processing. Uses 29 nodes and integrates with 6 services.",
"steps": [
{
"name": "Chat Trigger",
@@ -725426,10 +725456,10 @@
"triggerType": "Webhook",
"integrations": [
"Webhook",
- "Respondtowebhook",
- "Httprequest"
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and Httprequest for data processing. Uses 6 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Httprequest, and Respondtowebhook for data processing. Uses 6 nodes.",
"steps": [
{
"name": "Respond to Webhook",
@@ -725976,10 +726006,10 @@
"triggerType": "Manual",
"integrations": [
"Googledrive",
- "Manual",
- "Editimage"
+ "Editimage",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Googledrive, Manual, and Editimage for data processing. Uses 22 nodes.",
+ "description": "Manual workflow that orchestrates Googledrive, Editimage, and Manual for data processing. Uses 22 nodes.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -726236,11 +726266,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Airtabletool",
"Webhook",
- "Respondtowebhook",
- "Airtabletool"
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and Airtabletool for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Airtabletool, Webhook, and Respondtowebhook for data processing. Uses 7 nodes.",
"steps": [
{
"name": "Respond to Obsidian",
@@ -727619,15 +727649,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Executecommand",
- "Manual",
- "Googlesheets",
"Code",
- "Googledrive",
- "Readwritefile"
+ "Googlesheets",
+ "Readwritefile",
+ "Manual",
+ "Executecommand",
+ "Httprequest",
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Executecommand, and Manual for data processing. Uses 23 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Readwritefile for data processing. Uses 23 nodes and integrates with 7 services.",
"steps": [
{
"name": "Start AutoClip Workflow",
@@ -728238,12 +728268,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Youtube",
"Code",
"Googledrive",
+ "Youtube",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Youtube, Code, and Googledrive for data processing. Uses 14 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googledrive, and Youtube for data processing. Uses 14 nodes and integrates with 4 services.",
"steps": [
{
"name": "New Video?",
@@ -728486,11 +728516,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "N8Ntrainingcustomerdatastore",
"Code",
+ "N8Ntrainingcustomerdatastore",
"Manual"
],
- "description": "Manual workflow that orchestrates N8Ntrainingcustomerdatastore, Code, and Manual for data processing. Uses 8 nodes.",
+ "description": "Manual workflow that orchestrates Code, N8Ntrainingcustomerdatastore, and Manual for data processing. Uses 8 nodes.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -728739,12 +728769,12 @@
"triggerType": "Scheduled",
"integrations": [
"Code",
- "Rssfeedread",
- "Schedule",
+ "Gmail",
"Todoist",
- "Gmail"
+ "Schedule",
+ "Rssfeedread"
],
- "description": "Scheduled automation that orchestrates Code, Rssfeedread, and Schedule for data processing. Uses 7 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Code, Gmail, and Todoist for data processing. Uses 7 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -729447,14 +729477,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Httprequest",
- "Aggregate",
"Summarize",
"Splitout",
"Executeworkflow",
- "Code"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Summarize for data processing. Uses 29 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Summarize for data processing. Uses 29 nodes and integrates with 6 services.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -730179,10 +730209,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Googlecalendar",
- "Microsoftoutlook"
+ "Microsoftoutlook",
+ "Googlecalendar"
],
- "description": "Webhook-triggered automation that connects Googlecalendar and Microsoftoutlook for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that connects Microsoftoutlook and Googlecalendar for data processing. Uses 7 nodes.",
"steps": [
{
"name": "Incoming Event Trigger",
@@ -730728,14 +730758,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
"Airtabletool",
- "Schedule",
"Code",
+ "Httprequest",
"Airtable",
- "Gmail"
+ "Gmail",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Airtabletool, and Schedule for data processing. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Airtabletool, Code, and Httprequest for data processing. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "8:00am Morning Scheduled Trigger",
@@ -732092,12 +732122,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Googlesheets",
"Mailerlite",
- "Httprequest",
- "Gumroad"
+ "Googlesheets",
+ "Gumroad",
+ "Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Googlesheets, Mailerlite, and Httprequest for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Mailerlite, Googlesheets, and Gumroad for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "Gumroad Sale Trigger",
@@ -733129,14 +733159,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Wait",
"Splitout",
- "Manual",
- "Googlesheets"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 18 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Httprequest for data processing. Uses 18 nodes and integrates with 6 services.",
"steps": [
{
"name": "Start",
@@ -733920,11 +733950,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
+ "Airtable",
"Webhook",
- "Respondtowebhook",
- "Airtable"
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and Airtable for data processing. Uses 18 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Airtable, Webhook, and Respondtowebhook for data processing. Uses 18 nodes.",
"steps": [
{
"name": "Respond to Webhook",
@@ -734943,17 +734973,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Reddit",
- "Httprequest",
- "Aggregate",
- "Compression",
- "Converttofile",
- "Schedule",
"Code",
- "Googledrive"
+ "Reddit",
+ "Compression",
+ "Httprequest",
+ "Converttofile",
+ "Googledrive",
+ "Splitinbatches",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Reddit, and Httprequest for data processing. Uses 29 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Reddit, and Compression for data processing. Uses 29 nodes and integrates with 9 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -736543,15 +736573,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Postgres",
- "Schedule",
- "Facebookgraphapi",
+ "Code",
"Telegram",
- "Code"
+ "Facebookgraphapi",
+ "Postgres",
+ "Httprequest",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Postgres for data processing. Uses 44 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Facebookgraphapi for data processing. Uses 44 nodes and integrates with 7 services.",
"steps": [
{
"name": "Rapid Api params",
@@ -736830,10 +736860,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that connects Manual and Httprequest for data processing. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that connects Httprequest and Manual for data processing. Uses 8 nodes.",
"steps": [
{
"name": "Set Amazon URL with the Bright Data Zone",
@@ -737212,14 +737242,14 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Limit",
- "Splitinbatches",
- "Httprequest",
- "Manual",
+ "Code",
"Googlesheets",
- "Code"
+ "Limit",
+ "Manual",
+ "Httprequest",
+ "Splitinbatches"
],
- "description": "Manual workflow that orchestrates Limit, Splitinbatches, and Httprequest for data processing. Uses 9 nodes and integrates with 6 services.",
+ "description": "Manual workflow that orchestrates Code, Googlesheets, and Limit for data processing. Uses 9 nodes and integrates with 6 services.",
"steps": [
{
"name": "Limit",
@@ -737977,15 +738007,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Manual",
"Limit",
"Httprequest",
"Splitout",
- "Filter",
- "Manual",
- "Code",
- "Airtable"
+ "Airtable",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Limit, Httprequest, and Splitout for data processing. Uses 20 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Limit for data processing. Uses 20 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -738484,15 +738514,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Html",
+ "Code",
+ "Telegram",
"Httprequest",
- "Aggregate",
+ "Html",
"Splitout",
"Schedule",
- "Telegram",
- "Code"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Aggregate for data processing. Uses 13 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Httprequest for data processing. Uses 13 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -740070,21 +740100,21 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Youtube",
"Dropbox",
- "Limit",
- "Splitinbatches",
- "Httprequest",
- "Wait",
- "Linkedin",
- "S3",
- "Hackernews",
"Manual",
- "Microsoftonedrive",
+ "Limit",
+ "Googledrive",
+ "Httprequest",
+ "S3",
+ "Wait",
+ "Youtube",
"Twitter",
- "Googledrive"
+ "Linkedin",
+ "Microsoftonedrive",
+ "Hackernews",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Youtube, Dropbox, and Limit for data processing. Uses 48 nodes and integrates with 13 services.",
+ "description": "Complex multi-step automation that orchestrates Dropbox, Manual, and Limit for data processing. Uses 48 nodes and integrates with 13 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -741930,11 +741960,11 @@
"complexity": "high",
"triggerType": "Scheduled",
"integrations": [
- "Airtable",
"Twilio",
- "Schedule"
+ "Schedule",
+ "Airtable"
],
- "description": "Scheduled automation that orchestrates Airtable, Twilio, and Schedule for data processing. Uses 36 nodes.",
+ "description": "Scheduled automation that orchestrates Twilio, Schedule, and Airtable for data processing. Uses 36 nodes.",
"steps": [
{
"name": "Twilio Trigger",
@@ -743032,12 +743062,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Extractfromfile",
"Airtable",
- "Httprequest"
+ "Form",
+ "Httprequest",
+ "Extractfromfile"
],
- "description": "Complex multi-step automation that orchestrates Form, Extractfromfile, and Airtable for data processing. Uses 23 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Airtable, Form, and Httprequest for data processing. Uses 23 nodes and integrates with 4 services.",
"steps": [
{
"name": "Step 1 of 2 - Upload CV",
@@ -744452,13 +744482,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
"Webhook",
+ "Httprequest",
"Microsoftonedrive",
"Microsoftteams",
"Microsofttodo"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Microsoftonedrive for data processing. Uses 45 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Httprequest, and Microsoftonedrive for data processing. Uses 45 nodes and integrates with 5 services.",
"steps": [
{
"name": "Line Webhook",
@@ -745002,12 +745032,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Wait",
"Code",
- "Manual",
- "Httprequest"
+ "Wait",
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Wait, Code, and Manual for data processing. Uses 13 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Wait, and Httprequest for data processing. Uses 13 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -746765,13 +746795,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Wait",
- "Telegram",
+ "Code",
"Googlesheets",
- "Code"
+ "Telegram",
+ "Httprequest",
+ "Wait"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Telegram to create new records. Uses 42 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Telegram to create new records. Uses 42 nodes and integrates with 5 services.",
"steps": [
{
"name": "Trigger Telegram Prompt or Image",
@@ -748241,14 +748271,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
+ "Code",
"Limit",
- "Httprequest",
- "Splitout",
"Manual",
- "Code"
+ "Httprequest",
+ "Html",
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Html, Limit, and Httprequest for data processing. Uses 25 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Limit, and Manual for data processing. Uses 25 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -748599,10 +748629,10 @@
"triggerType": "Manual",
"integrations": [
"Wait",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Wait, Manual, and Httprequest for data processing. Uses 10 nodes.",
+ "description": "Manual workflow that orchestrates Wait, Httprequest, and Manual for data processing. Uses 10 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -749030,14 +749060,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Hubspot",
- "Slack",
- "Wait",
"Googlesheets",
+ "Hubspot",
"Noop",
- "Gmail"
+ "Wait",
+ "Gmail",
+ "Slack"
],
- "description": "Complex multi-step automation that orchestrates Hubspot, Slack, and Wait for data processing. Uses 14 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Hubspot, and Noop for data processing. Uses 14 nodes and integrates with 6 services.",
"steps": [
{
"name": "Google Sheets Trigger",
@@ -750806,14 +750836,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
- "Respondtowebhook",
"Telegram",
- "Executeworkflow",
- "Noop"
+ "Respondtowebhook",
+ "Webhook",
+ "Httprequest",
+ "Noop",
+ "Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Respondtowebhook for data processing. Uses 47 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Respondtowebhook, and Webhook for data processing. Uses 47 nodes and integrates with 6 services.",
"steps": [
{
"name": "Webhook",
@@ -751697,15 +751727,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Manual",
"Limit",
"Httprequest",
"Splitout",
- "Filter",
- "Manual",
- "Code",
- "Airtable"
+ "Airtable",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Limit, Httprequest, and Splitout for data processing. Uses 20 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Limit for data processing. Uses 20 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -754144,17 +754174,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Notion",
- "Stopanderror",
"Limit",
- "Httprequest",
+ "Notion",
"Webhook",
+ "Clockify",
"Comparedatasets",
- "Schedule",
"Noop",
- "Clockify"
+ "Httprequest",
+ "Schedule",
+ "Stopanderror"
],
- "description": "Complex multi-step automation that orchestrates Notion, Stopanderror, and Limit to synchronize data. Uses 68 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Limit, Notion, and Webhook to synchronize data. Uses 68 nodes and integrates with 9 services.",
"steps": [
{
"name": "Webhook",
@@ -755251,12 +755281,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Extractfromfile",
- "Manual",
"Telegram",
- "Httprequest"
+ "Extractfromfile",
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Extractfromfile, Manual, and Telegram for data processing. Uses 27 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Extractfromfile, and Httprequest for data processing. Uses 27 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -758357,15 +758387,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
"Airtabletool",
+ "Form",
"Extractfromfile",
"Googlecalendartool",
- "Googledrive",
"Airtable",
- "Emailsend"
+ "Emailsend",
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Form, Airtabletool, and Extractfromfile for data processing. Uses 36 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Airtabletool, Form, and Extractfromfile for data processing. Uses 36 nodes and integrates with 7 services.",
"steps": [
{
"name": "On form submission",
@@ -759428,16 +759458,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Webhook",
- "Nocodb",
- "Schedule",
- "Respondtowebhook",
"Code",
+ "Respondtowebhook",
+ "Webhook",
+ "Html",
+ "Gmail",
+ "Nocodb",
"Googledrive",
- "Gmail"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Html, Webhook, and Nocodb for data processing. Uses 35 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Webhook for data processing. Uses 35 nodes and integrates with 8 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -759967,14 +759997,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "N8N",
- "Splitout",
- "Filter",
+ "Googlesheets",
"Manual",
- "Googlesheets"
+ "Splitout",
+ "N8N",
+ "Filter",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, N8N, and Splitout for data processing. Uses 12 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Splitout for data processing. Uses 12 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -760516,11 +760546,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Manual",
"Markdown",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Manual, Markdown, and Httprequest for data processing. Uses 15 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Markdown, Httprequest, and Manual for data processing. Uses 15 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -760777,11 +760807,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Form",
"Gmail",
+ "Form",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Form, Gmail, and Httprequest for data processing. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Gmail, Form, and Httprequest for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Get PDF From JSReport",
@@ -760996,10 +761026,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -761668,13 +761698,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
"Respondtowebhook",
"Manual",
+ "Webhook",
+ "Httprequest",
"Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Respondtowebhook for data processing. Uses 23 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Manual, and Webhook for data processing. Uses 23 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -762964,11 +762994,11 @@
"integrations": [
"Httprequest",
"Splitout",
- "Schedule",
+ "Airtable",
"Filter",
- "Airtable"
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Httprequest, Splitout, and Schedule for data processing. Uses 10 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Httprequest, Splitout, and Airtable for data processing. Uses 10 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -763593,10 +763623,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 6 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -765400,10 +765430,10 @@
"integrations": [
"Code",
"Webhook",
- "Respondtowebhook",
- "Ssh"
+ "Ssh",
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Code, Webhook, and Respondtowebhook for data processing. Uses 33 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Ssh for data processing. Uses 33 nodes and integrates with 4 services.",
"steps": [
{
"name": "API",
@@ -766139,13 +766169,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Zammad",
+ "Manual",
"Httprequest",
- "Comparedatasets",
"Splitout",
- "Manual"
+ "Zammad",
+ "Comparedatasets"
],
- "description": "Complex multi-step automation that orchestrates Zammad, Httprequest, and Comparedatasets to synchronize data. Uses 14 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Httprequest, and Splitout to synchronize data. Uses 14 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -766583,11 +766613,11 @@
"integrations": [
"Form",
"Httprequest",
- "Aggregate",
+ "Gmail",
"Markdown",
- "Gmail"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Aggregate for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Gmail for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "Landing Page Url",
@@ -766906,10 +766936,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Aggregate",
- "Telegram"
+ "Telegram",
+ "Aggregate"
],
- "description": "Webhook-triggered automation that connects Aggregate and Telegram for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that connects Telegram and Aggregate for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Telegram Trigger",
@@ -768370,15 +768400,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Jira",
"Slack",
"Httprequest",
"Wait",
- "Schedule",
- "Jira",
- "Itemlists"
+ "Itemlists",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Slack, and Httprequest to create new records. Uses 18 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Jira, Slack, and Httprequest to create new records. Uses 18 nodes and integrates with 7 services.",
"steps": [
{
"name": "Split out detections",
@@ -769327,13 +769357,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Datetime",
- "Webhook",
+ "Code",
"Respondtowebhook",
- "Code"
+ "Webhook",
+ "Datetime",
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Datetime, and Webhook for data processing. Uses 20 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Webhook for data processing. Uses 20 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook",
@@ -770755,14 +770785,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Httprequest",
"Wait",
- "Aggregate",
"Splitout",
- "Googlesheets",
- "Gmail"
+ "Gmail",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Aggregate for data processing. Uses 26 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Httprequest, and Wait for data processing. Uses 26 nodes and integrates with 6 services.",
"steps": [
{
"name": "Receiving Invoices",
@@ -771857,14 +771887,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Httprequest",
"Wait",
- "Aggregate",
"Splitout",
- "Googlesheets",
- "Gmail"
+ "Gmail",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Aggregate for data processing. Uses 26 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Httprequest, and Wait for data processing. Uses 26 nodes and integrates with 6 services.",
"steps": [
{
"name": "Receiving Invoices",
@@ -772640,12 +772670,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Extractfromfile",
+ "Googlesheets",
"Googledrive",
- "Googlesheets"
+ "Form",
+ "Extractfromfile"
],
- "description": "Complex multi-step automation that orchestrates Form, Extractfromfile, and Googledrive for data processing. Uses 17 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Googledrive, and Form for data processing. Uses 17 nodes and integrates with 4 services.",
"steps": [
{
"name": "On form submission",
@@ -773233,11 +773263,11 @@
"triggerType": "Complex",
"integrations": [
"Noop",
- "Respondtowebhook",
+ "Webhook",
"Slack",
- "Webhook"
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Noop, Respondtowebhook, and Slack for data processing. Uses 20 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Noop, Webhook, and Slack for data processing. Uses 20 nodes and integrates with 4 services.",
"steps": [
{
"name": "Verify Webhook",
@@ -773821,11 +773851,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Executeworkflow",
"Code",
+ "Executeworkflow",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Executeworkflow, Code, and Httprequest for data processing. Uses 18 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Executeworkflow, and Httprequest for data processing. Uses 18 nodes.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -775009,11 +775039,11 @@
"triggerType": "Complex",
"integrations": [
"Webflow",
- "Code",
"Airtable",
+ "Code",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Webflow, Code, and Airtable to create new records. Uses 17 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Webflow, Airtable, and Code to create new records. Uses 17 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webflow Submission Trigger",
@@ -775249,10 +775279,10 @@
"triggerType": "Manual",
"integrations": [
"Code",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and Httprequest for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that orchestrates Code, Httprequest, and Manual for data processing. Uses 6 nodes.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -775428,10 +775458,10 @@
"triggerType": "Manual",
"integrations": [
"Code",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and Httprequest for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that orchestrates Code, Httprequest, and Manual for data processing. Uses 6 nodes.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -776099,11 +776129,11 @@
"triggerType": "Complex",
"integrations": [
"Converttofile",
- "Manual",
"Zammad",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Converttofile, Manual, and Zammad for data processing. Uses 18 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Converttofile, Zammad, and Httprequest for data processing. Uses 18 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -776762,13 +776792,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Manual",
- "Googlesheets",
"Code",
+ "Googlesheets",
+ "Manual",
+ "Httprequest",
"Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Manual, and Googlesheets for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -777738,14 +777768,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
- "Supabase",
- "Httprequest",
- "Webhook",
+ "Code",
"Respondtowebhook",
- "Code"
+ "Webhook",
+ "Httprequest",
+ "Supabase",
+ "Stopanderror"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Supabase, and Httprequest for data processing. Uses 29 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Webhook for data processing. Uses 29 nodes and integrates with 6 services.",
"steps": [
{
"name": "Success",
@@ -778516,10 +778546,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Respondtowebhook",
- "Httprequest"
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Code, Respondtowebhook, and Httprequest for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Httprequest, and Respondtowebhook for data processing. Uses 14 nodes.",
"steps": [
{
"name": "When chat message received",
@@ -779272,11 +779302,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Googlecalendartool",
"Slack",
- "Schedule"
+ "Schedule",
+ "Googlecalendartool"
],
- "description": "Scheduled automation that orchestrates Googlecalendartool, Slack, and Schedule for data processing. Uses 9 nodes.",
+ "description": "Scheduled automation that orchestrates Slack, Schedule, and Googlecalendartool for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Schedule Trigger",
@@ -780204,13 +780234,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
- "Telegram",
"Googlesheets",
- "Gmail"
+ "Telegram",
+ "Httprequest",
+ "Gmail",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Telegram for notifications and alerts. Uses 21 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Telegram, and Httprequest for notifications and alerts. Uses 21 nodes and integrates with 5 services.",
"steps": [
{
"name": "Weekly Trigger",
@@ -781059,21 +781089,21 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
- "Splitinbatches",
+ "Code",
+ "Microsoftoutlooktool",
+ "Zoom",
+ "Manual",
"Httprequest",
"Extractfromfile",
"Splitout",
- "Zoom",
- "Manual",
- "Filter",
+ "Emailsend",
"Executeworkflow",
- "Microsoftoutlooktool",
- "Code",
- "Clickup",
- "Emailsend"
+ "Filter",
+ "Splitinbatches",
+ "Stopanderror",
+ "Clickup"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Splitinbatches, and Httprequest for data processing. Uses 25 nodes and integrates with 13 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Microsoftoutlooktool, and Zoom for data processing. Uses 25 nodes and integrates with 13 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -781492,14 +781522,14 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Slack",
- "Datetime",
- "Schedule",
- "Manual",
"Code",
- "Emailsend"
+ "Manual",
+ "Datetime",
+ "Emailsend",
+ "Slack",
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Slack, Datetime, and Schedule for notifications and alerts. Uses 10 nodes and integrates with 6 services.",
+ "description": "Scheduled automation that orchestrates Code, Manual, and Datetime for notifications and alerts. Uses 10 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -782314,13 +782344,13 @@
"triggerType": "Complex",
"integrations": [
"Mautic",
- "Shopify",
- "Graphql",
- "Webhook",
"Crypto",
- "Noop"
+ "Shopify",
+ "Webhook",
+ "Noop",
+ "Graphql"
],
- "description": "Complex multi-step automation that orchestrates Mautic, Shopify, and Graphql for data processing. Uses 26 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Mautic, Crypto, and Shopify for data processing. Uses 26 nodes and integrates with 6 services.",
"steps": [
{
"name": "Shopify Trigger",
@@ -782837,14 +782867,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "N8N",
- "Httprequest",
- "Schedule",
"Manual",
- "Noop"
+ "Httprequest",
+ "Noop",
+ "N8N",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, N8N, and Httprequest for data processing. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Httprequest, and Noop for data processing. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -783383,11 +783413,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Mautic",
"Webhook",
- "Noop",
- "Mautic"
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Noop, and Mautic for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Mautic, Webhook, and Noop for data processing. Uses 10 nodes.",
"steps": [
{
"name": "WordpressForm",
@@ -784269,15 +784299,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Supabase",
"Limit",
- "Splitinbatches",
- "Summarize",
- "Schedule",
"Notion",
- "Noop"
+ "Noop",
+ "Summarize",
+ "Supabase",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Supabase, Limit, and Splitinbatches for data processing. Uses 34 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Limit, Notion, and Noop for data processing. Uses 34 nodes and integrates with 7 services.",
"steps": [
{
"name": "When chat message received",
@@ -784468,11 +784498,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Gmail",
"Googledrive",
- "Manual",
- "Gmail"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Googledrive, Manual, and Gmail for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Gmail, Googledrive, and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -785114,12 +785144,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Gmail",
"Code",
+ "Gmail",
"Gitlab",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Gmail, Code, and Gitlab for data processing. Uses 23 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Gmail, and Gitlab for data processing. Uses 23 nodes and integrates with 4 services.",
"steps": [
{
"name": "GitLab Trigger",
@@ -785850,17 +785880,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
- "Httprequest",
+ "Github",
"Extractfromfile",
"Comparedatasets",
- "Splitout",
- "Schedule",
- "Filter",
"Clockify",
- "Github"
+ "Splitout",
+ "Httprequest",
+ "Filter",
+ "Schedule",
+ "Stopanderror"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Httprequest, and Extractfromfile for data backup operations. Uses 21 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Github, Extractfromfile, and Comparedatasets for data backup operations. Uses 21 nodes and integrates with 9 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -786816,14 +786846,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
- "Googleanalytics",
+ "Code",
"Manual",
+ "Httprequest",
+ "Googleanalytics",
"Baserow",
- "Code"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Googleanalytics for data processing. Uses 22 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 22 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -794547,30 +794577,30 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Wait",
- "Aggregate",
- "Splitout",
- "Crypto",
"Code",
- "Noop",
- "Splitinbatches",
- "Webhook",
- "Comparedatasets",
- "Schedule",
- "Respondtowebhook",
- "Executeworkflow",
- "Form",
- "Stopanderror",
- "Html",
- "Redis",
- "Todoist",
- "Notion",
- "Httprequest",
"Executiondata",
+ "Respondtowebhook",
+ "Notion",
+ "Noop",
+ "Wait",
+ "Todoist",
+ "Html",
+ "Splitout",
+ "Gmail",
+ "Schedule",
+ "Aggregate",
+ "Comparedatasets",
+ "Redis",
+ "Stopanderror",
+ "Form",
+ "Webhook",
+ "Httprequest",
+ "Crypto",
+ "Executeworkflow",
"Filter",
- "Gmail"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Wait, Aggregate, and Splitout to synchronize data. Uses 246 nodes and integrates with 22 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Executiondata, and Respondtowebhook to synchronize data. Uses 246 nodes and integrates with 22 services.",
"steps": [
{
"name": "OAuth redirect",
@@ -795762,15 +795792,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Googledocs",
- "Extractfromfile",
- "Splitout",
"Manual",
- "Googledrive"
+ "Extractfromfile",
+ "Httprequest",
+ "Splitout",
+ "Googledrive",
+ "Splitinbatches",
+ "Googledocs"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Googledocs for data processing. Uses 19 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Extractfromfile, and Httprequest for data processing. Uses 19 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -796444,16 +796474,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Googledocs",
+ "Code",
+ "Telegram",
+ "Respondtowebhook",
"Webhook",
"Summarize",
"Splitout",
"Googledocstool",
- "Respondtowebhook",
- "Telegram",
- "Code"
+ "Googledocs"
],
- "description": "Complex multi-step automation that orchestrates Googledocs, Webhook, and Summarize for data processing. Uses 22 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Respondtowebhook for data processing. Uses 22 nodes and integrates with 8 services.",
"steps": [
{
"name": "Trigger on Telegram Message",
@@ -797541,14 +797571,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Webhook",
- "Splitout",
"Code",
- "Airtable"
+ "Webhook",
+ "Httprequest",
+ "Airtable",
+ "Splitout",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Webhook for data processing. Uses 12 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Httprequest for data processing. Uses 12 nodes and integrates with 6 services.",
"steps": [
{
"name": "Receive Keyword",
@@ -799620,17 +799650,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Limit",
- "Httprequest",
- "Aggregate",
- "Webhook",
- "Telegram",
"Googlesheets",
+ "Telegram",
+ "Limit",
+ "Webhook",
+ "Httprequest",
"Noop",
+ "Gmail",
"Googledrive",
- "Gmail"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Limit, Httprequest, and Aggregate for data processing. Uses 54 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Telegram, and Limit for data processing. Uses 54 nodes and integrates with 9 services.",
"steps": [
{
"name": "Webhook",
@@ -800368,13 +800398,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Zammad",
+ "Manual",
"Httprequest",
- "Comparedatasets",
"Splitout",
- "Manual"
+ "Zammad",
+ "Comparedatasets"
],
- "description": "Complex multi-step automation that orchestrates Zammad, Httprequest, and Comparedatasets to synchronize data. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Httprequest, and Splitout to synchronize data. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "Select Entra Zammad default Group",
@@ -802430,17 +802460,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Telegram",
+ "Facebookgraphapi",
"Httprequest",
"Summarize",
- "Schedule",
- "Facebookgraphapi",
"Googleanalytics",
- "Telegram",
"Executeworkflow",
- "Code",
- "Emailsend"
+ "Emailsend",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Summarize, and Schedule for data processing. Uses 51 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Facebookgraphapi for data processing. Uses 51 nodes and integrates with 9 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -803870,12 +803900,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Wait",
"Code",
- "Manual",
- "Httprequest"
+ "Wait",
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Wait, Code, and Manual for data processing. Uses 13 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Wait, and Httprequest for data processing. Uses 13 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -806073,17 +806103,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
+ "Readbinaryfile",
+ "Discord",
"Httprequest",
"Wait",
- "Writebinaryfile",
- "Readbinaryfile",
+ "Googledrive",
"Schedule",
- "Discord",
- "Googlesheets",
- "Code",
- "Googledrive"
+ "Writebinaryfile"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Writebinaryfile for data processing. Uses 51 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Readbinaryfile for data processing. Uses 51 nodes and integrates with 9 services.",
"steps": [
{
"name": "Set API Keys",
@@ -808109,15 +808139,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Limit",
- "Httprequest",
- "Webhook",
- "Converttofile",
+ "Code",
"Respondtowebhook",
- "Code"
+ "Limit",
+ "Webhook",
+ "Httprequest",
+ "Html",
+ "Converttofile"
],
- "description": "Complex multi-step automation that orchestrates Html, Limit, and Httprequest for data processing. Uses 63 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Limit for data processing. Uses 63 nodes and integrates with 7 services.",
"steps": [
{
"name": "Clean Webdriver ",
@@ -808319,11 +808349,11 @@
"triggerType": "Scheduled",
"integrations": [
"Filter",
- "Manual",
+ "Schedule",
"N8N",
- "Schedule"
+ "Manual"
],
- "description": "Scheduled automation that orchestrates Filter, Manual, and N8N for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Filter, Schedule, and N8N for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -808855,12 +808885,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
"Wordpresstool",
- "Gmailtool",
- "Httprequest"
+ "Form",
+ "Httprequest",
+ "Gmailtool"
],
- "description": "Complex multi-step automation that orchestrates Form, Wordpresstool, and Gmailtool for data processing. Uses 17 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Wordpresstool, Form, and Httprequest for data processing. Uses 17 nodes and integrates with 4 services.",
"steps": [
{
"name": "When chat message received",
@@ -809299,10 +809329,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Extractfromfile",
- "Googledrive"
+ "Googledrive",
+ "Extractfromfile"
],
- "description": "Webhook-triggered automation that orchestrates Code, Extractfromfile, and Googledrive for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Googledrive, and Extractfromfile for data processing. Uses 14 nodes.",
"steps": [
{
"name": "Monitor Google Drive for New Files",
@@ -809796,12 +809826,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Webhook",
"Code",
+ "Webhook",
"Slack",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Code, and Slack for data processing. Uses 17 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Slack for data processing. Uses 17 nodes and integrates with 4 services.",
"steps": [
{
"name": "CRM New Lead Webhook",
@@ -810162,15 +810192,15 @@
"triggerType": "Webhook",
"integrations": [
"Form",
- "Httprequest",
- "Aggregate",
"Markdown",
- "Splitout",
- "Hackernews",
+ "Httprequest",
"Noop",
- "Emailsend"
+ "Splitout",
+ "Emailsend",
+ "Hackernews",
+ "Aggregate"
],
- "description": "Webhook-triggered automation that orchestrates Form, Httprequest, and Aggregate for data processing. Uses 10 nodes and integrates with 8 services.",
+ "description": "Webhook-triggered automation that orchestrates Form, Markdown, and Httprequest for data processing. Uses 10 nodes and integrates with 8 services.",
"steps": [
{
"name": "GetTopicFromToLearn",
@@ -810520,12 +810550,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Extractfromfile",
"Discord",
- "Rssfeedread",
- "Httprequest"
+ "Extractfromfile",
+ "Httprequest",
+ "Rssfeedread"
],
- "description": "Webhook-triggered automation that orchestrates Extractfromfile, Discord, and Rssfeedread for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Discord, Extractfromfile, and Httprequest for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "YouTube Video Trigger",
@@ -811472,11 +811502,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Form",
"Googlesheets",
+ "Form",
"Emailsend"
],
- "description": "Webhook-triggered automation that orchestrates Form, Googlesheets, and Emailsend for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Form, and Emailsend for data processing. Uses 14 nodes.",
"steps": [
{
"name": "On form submission",
@@ -812373,14 +812403,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Httprequest",
- "Markdown",
"Code",
- "Googledrive",
- "Gmail"
+ "Form",
+ "Markdown",
+ "Httprequest",
+ "Gmail",
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Markdown for data processing. Uses 33 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Markdown for data processing. Uses 33 nodes and integrates with 6 services.",
"steps": [
{
"name": "Start Workflow",
@@ -812714,12 +812744,12 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Code",
- "Manual",
"Airtop",
- "Googlesheets"
+ "Googlesheets",
+ "Code",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and Airtop for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Airtop, Googlesheets, and Code for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Search profile",
@@ -813227,12 +813257,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Webhook",
- "Gmailtool",
"Googlecalendartool",
- "Httprequest"
+ "Webhook",
+ "Httprequest",
+ "Gmailtool"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Gmailtool, and Googlecalendartool for data processing. Uses 14 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlecalendartool, Webhook, and Httprequest for data processing. Uses 14 nodes and integrates with 4 services.",
"steps": [
{
"name": "Line Receiving",
@@ -814214,14 +814244,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
- "Extractfromfile",
"Code",
- "Splitout",
"Telegram",
- "Openweathermaptool"
+ "Openweathermaptool",
+ "Extractfromfile",
+ "Splitout",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Extractfromfile, and Code for data processing. Uses 28 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Openweathermaptool for data processing. Uses 28 nodes and integrates with 6 services.",
"steps": [
{
"name": "Aggregate",
@@ -815559,11 +815589,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Airtable",
"Markdown",
- "Webhook",
- "Airtable"
+ "Webhook"
],
- "description": "Webhook-triggered automation that orchestrates Markdown, Webhook, and Airtable for data processing. Uses 9 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Airtable, Markdown, and Webhook for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Airtable sync video description",
@@ -816202,11 +816232,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Splitinbatches",
"Telegram",
+ "Splitinbatches",
"Noop"
],
- "description": "Complex multi-step automation that orchestrates Code, Splitinbatches, and Telegram for data processing. Uses 20 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Splitinbatches for data processing. Uses 20 nodes and integrates with 4 services.",
"steps": [
{
"name": "Telegram Trigger",
@@ -816649,14 +816679,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Httprequest",
- "Webhook",
- "Code",
"Jira",
- "Noop"
+ "Code",
+ "Webhook",
+ "Httprequest",
+ "Noop",
+ "Slack"
],
- "description": "Complex multi-step automation that orchestrates Slack, Httprequest, and Webhook to create new records. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Jira, Code, and Webhook to create new records. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "Receive Sublime Security Alert",
@@ -817826,11 +817856,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Form",
"Asana",
- "Whatsapp"
+ "Whatsapp",
+ "Form"
],
- "description": "Webhook-triggered automation that orchestrates Form, Asana, and Whatsapp for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Asana, Whatsapp, and Form for data processing. Uses 7 nodes.",
"steps": [
{
"name": "n8n Form Trigger",
@@ -818141,14 +818171,14 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Openai",
- "Aggregate",
- "Markdown",
- "Manual",
"Googlesheets",
- "Gmail"
+ "Manual",
+ "Gmail",
+ "Markdown",
+ "Aggregate",
+ "Openai"
],
- "description": "Manual workflow that orchestrates Openai, Aggregate, and Markdown for data processing. Uses 10 nodes and integrates with 6 services.",
+ "description": "Manual workflow that orchestrates Googlesheets, Manual, and Gmail for data processing. Uses 10 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -818686,10 +818716,10 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Httprequesttool",
- "Discordtool"
+ "Discordtool",
+ "Httprequesttool"
],
- "description": "Webhook-triggered automation that connects Httprequesttool and Discordtool for data processing. Uses 16 nodes.",
+ "description": "Webhook-triggered automation that connects Discordtool and Httprequesttool for data processing. Uses 16 nodes.",
"steps": [
{
"name": "Discord MCP Server Trigger",
@@ -819643,11 +819673,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Aggregate",
"Gmail",
- "Schedule"
+ "Schedule",
+ "Aggregate"
],
- "description": "Scheduled automation that orchestrates Aggregate, Gmail, and Schedule for data processing. Uses 9 nodes.",
+ "description": "Scheduled automation that orchestrates Gmail, Schedule, and Aggregate for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Daily 7AM Trigger",
@@ -820936,11 +820966,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Manual",
+ "Splitout",
"Httprequest",
- "Splitout"
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 48 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Splitout, and Httprequest for data processing. Uses 48 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -821605,13 +821635,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Httprequest",
- "Aggregate",
- "Markdown",
"Splitout",
- "Code"
+ "Markdown",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Markdown for data processing. Uses 19 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Splitout for data processing. Uses 19 nodes and integrates with 5 services.",
"steps": [
{
"name": "Create a simple Trigger to have the Chat button within N8N",
@@ -822285,12 +822315,12 @@
"triggerType": "Complex",
"integrations": [
"Dropbox",
+ "Manual",
"Httprequest",
"Wait",
- "Manual",
"Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates Dropbox, Httprequest, and Wait for data processing. Uses 20 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Dropbox, Manual, and Httprequest for data processing. Uses 20 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -822737,13 +822767,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Notion",
"Httprequest",
"Linkedin",
- "Aggregate",
"Schedule",
- "Notion"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Linkedin, and Aggregate for data processing. Uses 11 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Notion, Httprequest, and Linkedin for data processing. Uses 11 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -823824,12 +823854,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Wordpress",
- "Manual",
+ "Googlesheets",
"Httprequest",
- "Googlesheets"
+ "Wordpress",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Wordpress, Manual, and Httprequest for data processing. Uses 21 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Httprequest, and Wordpress for data processing. Uses 21 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -826218,12 +826248,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Wait",
"Code",
- "Manual",
- "Httprequest"
+ "Wait",
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Wait, Code, and Manual to create new records. Uses 51 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Wait, and Httprequest to create new records. Uses 51 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking Test workflow",
@@ -827650,15 +827680,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Microsoftoutlook",
"Splitinbatches",
- "Markdown",
- "Schedule",
"Manual",
- "Mondaycom",
- "Airtable"
+ "Airtable",
+ "Markdown",
+ "Microsoftoutlook",
+ "Schedule",
+ "Mondaycom"
],
- "description": "Complex multi-step automation that orchestrates Microsoftoutlook, Splitinbatches, and Markdown for data processing. Uses 28 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Splitinbatches, Manual, and Airtable for data processing. Uses 28 nodes and integrates with 7 services.",
"steps": [
{
"name": "Convert to Markdown",
@@ -828019,12 +828049,12 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Splitout",
"Html",
- "Manual",
"Httprequest",
- "Splitout"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Html, Manual, and Httprequest for data processing. Uses 9 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Splitout, Html, and Httprequest for data processing. Uses 9 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -828313,11 +828343,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Splitout",
"Summarize",
- "Manual",
- "Splitout"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Summarize, Manual, and Splitout for data processing. Uses 9 nodes.",
+ "description": "Manual workflow that orchestrates Splitout, Summarize, and Manual for data processing. Uses 9 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -829308,14 +829338,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
- "Googledrive",
- "Respondtowebhook",
+ "Googlecalendar",
"Manual",
- "Googlecalendar"
+ "Respondtowebhook",
+ "Webhook",
+ "Httprequest",
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Googledrive for data processing. Uses 34 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlecalendar, Manual, and Respondtowebhook for data processing. Uses 34 nodes and integrates with 6 services.",
"steps": [
{
"name": "n8n_order",
@@ -829742,14 +829772,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Manual",
"Httprequest",
"Splitout",
"Converttofile",
- "Mondaycom",
- "Manual",
- "Code"
+ "Mondaycom"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Splitout, and Converttofile for data processing. Uses 14 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 14 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -830288,12 +830318,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Wait",
"Code",
- "Manual",
- "Httprequest"
+ "Wait",
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Wait, Code, and Manual for data processing. Uses 14 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Wait, and Httprequest for data processing. Uses 14 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking Test workflow",
@@ -831323,12 +831353,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Telegram",
+ "Splitout",
"Markdown",
- "Httprequest",
- "Splitout"
+ "Telegram",
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Telegram, Markdown, and Httprequest for data processing. Uses 16 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Splitout, Markdown, and Telegram for data processing. Uses 16 nodes and integrates with 4 services.",
"steps": [
{
"name": "When chat message received",
@@ -832293,11 +832323,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Form",
"Googlesheets",
+ "Form",
"Emailsend"
],
- "description": "Webhook-triggered automation that orchestrates Form, Googlesheets, and Emailsend for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Form, and Emailsend for data processing. Uses 14 nodes.",
"steps": [
{
"name": "On form submission",
@@ -833987,17 +834017,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
+ "Schedule",
"Limit",
"Httprequest",
+ "Noop",
"Splitout",
- "Schedule",
- "Spotify",
"Filter",
- "Googlesheets",
- "Code",
- "Noop"
+ "Spotify"
],
- "description": "Complex multi-step automation that orchestrates Limit, Httprequest, and Splitout for data processing. Uses 37 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Schedule for data processing. Uses 37 nodes and integrates with 9 services.",
"steps": [
{
"name": "Monthly Trigger",
@@ -835108,13 +835138,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
- "Googlesheets",
"Code",
+ "Googlesheets",
+ "Webhook",
+ "Httprequest",
"Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Googlesheets for data processing. Uses 27 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Webhook for data processing. Uses 27 nodes and integrates with 5 services.",
"steps": [
{
"name": "LINE Webhook Listener",
@@ -836825,11 +836855,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Httprequest, and Readwritefile for data processing. Uses 7 nodes.",
+ "description": "Manual workflow that orchestrates Readwritefile, Httprequest, and Manual for data processing. Uses 7 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -837039,10 +837069,10 @@
"integrations": [
"Webhook",
"Telegram",
- "Httprequest",
- "Emailsend"
+ "Emailsend",
+ "Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Telegram, and Httprequest for data processing. Uses 6 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Telegram, and Emailsend for data processing. Uses 6 nodes and integrates with 4 services.",
"steps": [
{
"name": "Receive Feedback",
@@ -837955,14 +837985,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
+ "Readwritefile",
+ "Odoo",
"Extractfromfile",
"Converttofile",
"Schedule",
- "Odoo",
- "Readwritefile"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Extractfromfile, and Converttofile for data processing. Uses 16 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Readwritefile, Odoo, and Extractfromfile for data processing. Uses 16 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -838617,18 +838647,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Manual",
+ "Editimage",
"Httprequest",
"Wait",
- "Aggregate",
- "Converttofile",
"Splitout",
- "Manual",
- "Code",
+ "Converttofile",
"Googledrive",
- "Editimage"
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 21 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Editimage for data processing. Uses 21 nodes and integrates with 10 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -839079,14 +839109,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Manual",
"Httprequest",
"Splitout",
"Converttofile",
- "Manual",
- "Code",
"Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Splitout, and Converttofile for data processing. Uses 12 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 12 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -839413,13 +839443,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Httprequest",
- "Schedule",
- "Redis",
"Code",
- "Microsoftteams"
+ "Httprequest",
+ "Microsoftteams",
+ "Schedule",
+ "Redis"
],
- "description": "Scheduled automation that orchestrates Httprequest, Schedule, and Redis for notifications and alerts. Uses 8 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Code, Httprequest, and Microsoftteams for notifications and alerts. Uses 8 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -840847,14 +840877,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Aggregate",
+ "Code",
"Webhook",
- "Nocodb",
"Splitout",
- "Code"
+ "Nocodb",
+ "Slack",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Slack, Aggregate, and Webhook for data processing. Uses 34 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Splitout for data processing. Uses 34 nodes and integrates with 6 services.",
"steps": [
{
"name": "Get Input from NocoDB",
@@ -842552,16 +842582,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Shopify",
- "Splitout",
- "Schedule",
- "Filter",
"Code",
- "Noop"
+ "Shopify",
+ "Httprequest",
+ "Noop",
+ "Splitout",
+ "Filter",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Shopify for data processing. Uses 39 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Shopify, and Httprequest for data processing. Uses 39 nodes and integrates with 8 services.",
"steps": [
{
"name": "Create Sales Order",
@@ -843232,13 +843262,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Rssfeedread",
- "Markdown",
"Splitout",
+ "Gmail",
+ "Markdown",
"Schedule",
- "Gmail"
+ "Rssfeedread"
],
- "description": "Complex multi-step automation that orchestrates Rssfeedread, Markdown, and Splitout for data processing. Uses 24 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Splitout, Gmail, and Markdown for data processing. Uses 24 nodes and integrates with 5 services.",
"steps": [
{
"name": "Get Articles Daily",
@@ -843664,10 +843694,10 @@
"integrations": [
"Wait",
"Googledrive",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Wait, Googledrive, and Manual for data processing. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Wait, Googledrive, and Httprequest for data processing. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -844862,13 +844892,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Extractfromfile",
- "Splitout",
"Googlesheets",
+ "Extractfromfile",
+ "Html",
+ "Splitout",
"Gmail"
],
- "description": "Complex multi-step automation that orchestrates Html, Extractfromfile, and Splitout for data processing. Uses 24 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Extractfromfile, and Html for data processing. Uses 24 nodes and integrates with 5 services.",
"steps": [
{
"name": "Extract invoice",
@@ -845786,14 +845816,14 @@
"triggerType": "Complex",
"integrations": [
"Emailreadimap",
- "Httprequest",
- "Markdown",
"Manual",
"Googledrive",
+ "Httprequest",
"Gmail",
- "Emailsend"
+ "Emailsend",
+ "Markdown"
],
- "description": "Complex multi-step automation that orchestrates Emailreadimap, Httprequest, and Markdown for data processing. Uses 31 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Emailreadimap, Manual, and Googledrive for data processing. Uses 31 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -846630,14 +846660,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
- "Respondtowebhook",
- "Manual",
"Whatsapp",
+ "Manual",
+ "Respondtowebhook",
+ "Webhook",
+ "Httprequest",
"Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Respondtowebhook for data processing. Uses 28 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Whatsapp, Manual, and Respondtowebhook for data processing. Uses 28 nodes and integrates with 6 services.",
"steps": [
{
"name": "Respond to Webhook",
@@ -846995,13 +847025,13 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Spreadsheetfile",
- "Filter",
- "Manual",
- "Googlesheets"
+ "Filter"
],
- "description": "Manual workflow that orchestrates Httprequest, Spreadsheetfile, and Filter for data processing. Uses 7 nodes and integrates with 5 services.",
+ "description": "Manual workflow that orchestrates Googlesheets, Manual, and Httprequest for data processing. Uses 7 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -847489,12 +847519,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Wait",
- "Gmail",
"Airtop",
- "Schedule"
+ "Gmail",
+ "Schedule",
+ "Wait"
],
- "description": "Complex multi-step automation that orchestrates Wait, Gmail, and Airtop for data processing. Uses 15 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Airtop, Gmail, and Schedule for data processing. Uses 15 nodes and integrates with 4 services.",
"steps": [
{
"name": "Extract Costs",
@@ -848228,13 +848258,13 @@
"triggerType": "Complex",
"integrations": [
"Form",
- "Html",
"Limit",
+ "Html",
"Splitout",
- "Filter",
- "Emailsend"
+ "Emailsend",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Form, Html, and Limit for data processing. Uses 19 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Form, Limit, and Html for data processing. Uses 19 nodes and integrates with 6 services.",
"steps": [
{
"name": "When User Completes Form",
@@ -848963,14 +848993,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
+ "Telegram",
+ "Manual",
+ "Gmail",
"Markdown",
"Schedule",
- "Manual",
- "Telegram",
- "Gmail"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Markdown, and Schedule for data processing. Uses 24 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Manual, and Gmail for data processing. Uses 24 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -849782,10 +849812,10 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Notion",
- "Code"
+ "Code",
+ "Notion"
],
- "description": "Webhook-triggered automation that connects Notion and Code for data processing. Uses 24 nodes.",
+ "description": "Webhook-triggered automation that connects Code and Notion for data processing. Uses 24 nodes.",
"steps": [
{
"name": "Set input data",
@@ -850523,10 +850553,10 @@
"triggerType": "Webhook",
"integrations": [
"Notion",
- "Filter",
- "Summarize"
+ "Summarize",
+ "Filter"
],
- "description": "Webhook-triggered automation that orchestrates Notion, Filter, and Summarize for data processing. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Notion, Summarize, and Filter for data processing. Uses 8 nodes.",
"steps": [
{
"name": "Notion - Page Added Trigger",
@@ -850945,14 +850975,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Notion",
"Httprequest",
"Linkedin",
- "Aggregate",
- "Code",
"Schedule",
- "Notion"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Linkedin, and Aggregate for data processing. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Notion, and Httprequest for data processing. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -851900,13 +851930,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Splitout",
"Manual",
- "Airtable"
+ "Httprequest",
+ "Airtable",
+ "Splitout",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Splitout for data processing. Uses 16 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Httprequest, and Airtable for data processing. Uses 16 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -852140,10 +852170,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Odoo",
- "Gmail"
+ "Gmail",
+ "Odoo"
],
- "description": "Webhook-triggered automation that connects Odoo and Gmail for data processing. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that connects Gmail and Odoo for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Received Emails with Sales Label",
@@ -852401,11 +852431,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Googlecalendar",
"Telegram",
+ "Googlecalendar",
"Schedule"
],
- "description": "Scheduled automation that orchestrates Googlecalendar, Telegram, and Schedule for data processing. Uses 8 nodes.",
+ "description": "Scheduled automation that orchestrates Telegram, Googlecalendar, and Schedule for data processing. Uses 8 nodes.",
"steps": [
{
"name": "Every morning @ 6",
@@ -852879,10 +852909,10 @@
"triggerType": "Manual",
"integrations": [
"Emailreadimap",
- "Markdown",
- "Emailsend"
+ "Emailsend",
+ "Markdown"
],
- "description": "Manual workflow that orchestrates Emailreadimap, Markdown, and Emailsend for data processing. Uses 16 nodes.",
+ "description": "Manual workflow that orchestrates Emailreadimap, Emailsend, and Markdown for data processing. Uses 16 nodes.",
"steps": [
{
"name": "Email Trigger (IMAP)",
@@ -853608,14 +853638,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Wait",
- "Schedule",
+ "Googlesheets",
"Whatsapp",
+ "Wait",
"Filter",
- "Googlesheets"
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Wait, and Schedule for data processing. Uses 15 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Whatsapp, and Wait for data processing. Uses 15 nodes and integrates with 6 services.",
"steps": [
{
"name": "WhatsApp Trigger",
@@ -853866,11 +853896,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
+ "Slack",
"Webhook",
- "Googlecalendar",
- "Slack"
+ "Googlecalendar"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Googlecalendar, and Slack for data processing. Uses 9 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Webhook, and Googlecalendar for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Webhook",
@@ -854472,18 +854502,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Limit",
- "Splitinbatches",
- "N8N",
"Code",
- "Converttofile",
- "Schedule",
- "Manual",
"Telegram",
+ "Manual",
+ "Limit",
"Noop",
- "Googledrive"
+ "Converttofile",
+ "N8N",
+ "Googledrive",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Limit, Splitinbatches, and N8N for data backup operations. Uses 22 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Manual for data backup operations. Uses 22 nodes and integrates with 10 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -856427,19 +856457,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Supabase",
- "Splitinbatches",
- "Httprequest",
- "Aggregate",
- "Postgres",
- "Markdown",
- "Schedule",
"Respondtowebhook",
"Manual",
+ "Postgres",
+ "Wordpress",
+ "Httprequest",
+ "Supabase",
"Filter",
- "Wordpress"
+ "Markdown",
+ "Splitinbatches",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Supabase, Splitinbatches, and Httprequest for data processing. Uses 53 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Manual, and Postgres for data processing. Uses 53 nodes and integrates with 11 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -856686,11 +856716,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Youtube",
"Twitter",
- "Schedule"
+ "Schedule",
+ "Youtube"
],
- "description": "Scheduled automation that orchestrates Youtube, Twitter, and Schedule for data processing. Uses 6 nodes.",
+ "description": "Scheduled automation that orchestrates Twitter, Schedule, and Youtube for data processing. Uses 6 nodes.",
"steps": [
{
"name": "Check Every 30 Min",
@@ -857515,14 +857545,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Webhook",
- "Respondtowebhook",
+ "Code",
"Googlesheets",
- "Code"
+ "Respondtowebhook",
+ "Webhook",
+ "Httprequest",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Webhook for data processing. Uses 23 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Respondtowebhook for data processing. Uses 23 nodes and integrates with 6 services.",
"steps": [
{
"name": "Webhook GET Note",
@@ -858530,14 +858560,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
"Telegramtool",
- "Woocommercetool",
"Manual",
+ "Httprequest",
+ "Woocommercetool",
"Executeworkflow",
"Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Telegramtool, and Woocommercetool for data processing. Uses 31 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Telegramtool, Manual, and Httprequest for data processing. Uses 31 nodes and integrates with 6 services.",
"steps": [
{
"name": "When chat message received",
@@ -859085,13 +859115,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Readwritefile",
+ "Manual",
"Httprequest",
"Wait",
- "Aggregate",
- "Manual",
- "Readwritefile"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Aggregate for data processing. Uses 16 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Readwritefile, Manual, and Httprequest for data processing. Uses 16 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -859449,11 +859479,11 @@
"triggerType": "Scheduled",
"integrations": [
"Github",
- "Filter",
"Telegram",
- "Schedule"
+ "Schedule",
+ "Filter"
],
- "description": "Scheduled automation that orchestrates Github, Filter, and Telegram for data processing. Uses 9 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Github, Telegram, and Schedule for data processing. Uses 9 nodes and integrates with 4 services.",
"steps": [
{
"name": "Run every 10 minutes",
@@ -859719,10 +859749,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Microsoftoutlook",
- "Telegram"
+ "Telegram",
+ "Microsoftoutlook"
],
- "description": "Webhook-triggered automation that orchestrates Code, Microsoftoutlook, and Telegram for data processing. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Telegram, and Microsoftoutlook for data processing. Uses 8 nodes.",
"steps": [
{
"name": "receive file message from telegram bot",
@@ -860561,14 +860591,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Webhook",
- "Splitout",
+ "Code",
"Respondtowebhook",
- "Code"
+ "Webhook",
+ "Httprequest",
+ "Splitout",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Webhook for data processing. Uses 24 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Webhook for data processing. Uses 24 nodes and integrates with 6 services.",
"steps": [
{
"name": "Webhook",
@@ -861287,13 +861317,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Editimage",
"Httprequest",
"Splitout",
"Googledrive",
- "Editimage"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Splitout for data processing. Uses 16 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Editimage, Httprequest, and Splitout for data processing. Uses 16 nodes and integrates with 5 services.",
"steps": [
{
"name": "Watch for new images",
@@ -861704,11 +861734,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Aggregate",
"Code",
+ "Aggregate",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Aggregate, Code, and Httprequest for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Aggregate, and Httprequest for data processing. Uses 14 nodes.",
"steps": [
{
"name": "When chat message received",
@@ -863457,10 +863487,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Summarize",
- "Executeworkflow"
+ "Executeworkflow",
+ "Summarize"
],
- "description": "Webhook-triggered automation that orchestrates Code, Summarize, and Executeworkflow for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Executeworkflow, and Summarize for data processing. Uses 14 nodes.",
"steps": [
{
"name": "On new manual Chat Message",
@@ -864499,14 +864529,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Openai",
- "Httprequest",
+ "Code",
"Manual",
+ "Httprequest",
+ "Html",
"Readbinaryfiles",
- "Code"
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Html, Openai, and Httprequest for data processing. Uses 27 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 27 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -864762,11 +864792,11 @@
"triggerType": "Manual",
"integrations": [
"Functionitem",
- "Manual",
"Airtable",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Functionitem, Manual, and Airtable for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Functionitem, Airtable, and Httprequest for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -865910,14 +865940,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Splitout",
- "Manual",
- "Googlesheets",
- "Code"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Splitout to update existing data. Uses 26 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual to update existing data. Uses 26 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -866634,10 +866664,10 @@
"triggerType": "Webhook",
"integrations": [
"Localfile",
- "Executecommand",
- "Splitout"
+ "Splitout",
+ "Executecommand"
],
- "description": "Webhook-triggered automation that orchestrates Localfile, Executecommand, and Splitout for data processing. Uses 16 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Localfile, Splitout, and Executecommand for data processing. Uses 16 nodes.",
"steps": [
{
"name": "Local File Trigger",
@@ -867196,12 +867226,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Emailreadimap",
- "Markdown",
"Gmail",
- "Emailsend"
+ "Emailreadimap",
+ "Emailsend",
+ "Markdown"
],
- "description": "Complex multi-step automation that orchestrates Emailreadimap, Markdown, and Gmail for data processing. Uses 17 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Gmail, Emailreadimap, and Emailsend for data processing. Uses 17 nodes and integrates with 4 services.",
"steps": [
{
"name": "Email Trigger (IMAP)",
@@ -867913,14 +867943,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Httprequest",
- "Wait",
- "Webhook",
"Respondtowebhook",
+ "Webhook",
+ "Httprequest",
+ "Html",
+ "Wait",
"Noop"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Wait for data processing. Uses 18 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Webhook, and Httprequest for data processing. Uses 18 nodes and integrates with 6 services.",
"steps": [
{
"name": "Respond to Webhook",
@@ -868050,10 +868080,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Error",
- "Telegram"
+ "Telegram",
+ "Error"
],
- "description": "Webhook-triggered automation that connects Error and Telegram for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that connects Telegram and Error for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Error Trigger",
@@ -868836,14 +868866,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Mysql",
- "Extractfromfile",
- "Converttofile",
+ "Readwritefile",
"Manual",
+ "Extractfromfile",
"Noop",
- "Readwritefile"
+ "Converttofile",
+ "Mysql"
],
- "description": "Complex multi-step automation that orchestrates Mysql, Extractfromfile, and Converttofile for data processing. Uses 29 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Readwritefile, Manual, and Extractfromfile for data processing. Uses 29 nodes and integrates with 6 services.",
"steps": [
{
"name": "Chat Trigger",
@@ -869490,12 +869520,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Wordpress",
- "Manual",
+ "Googlesheets",
"Httprequest",
- "Googlesheets"
+ "Wordpress",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Wordpress, Manual, and Httprequest for data processing. Uses 17 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Httprequest, and Wordpress for data processing. Uses 17 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -870623,10 +870653,10 @@
"integrations": [
"Gmail",
"Telegram",
- "Executeworkflow",
- "Googledocs"
+ "Googledocs",
+ "Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates Gmail, Telegram, and Executeworkflow for data processing. Uses 39 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Gmail, Telegram, and Googledocs for data processing. Uses 39 nodes and integrates with 4 services.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -871920,19 +871950,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "N8N",
- "Httprequest",
- "Aggregate",
- "Webhook",
- "Splitout",
- "Schedule",
- "Respondtowebhook",
- "Filter",
"Code",
- "Quickchart"
+ "Quickchart",
+ "Respondtowebhook",
+ "Webhook",
+ "Httprequest",
+ "Splitout",
+ "N8N",
+ "Filter",
+ "Splitinbatches",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, N8N, and Httprequest for data processing. Uses 40 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Quickchart, and Respondtowebhook for data processing. Uses 40 nodes and integrates with 11 services.",
"steps": [
{
"name": "And every Sunday",
@@ -873537,10 +873567,10 @@
"integrations": [
"Googlesheets",
"Gmail",
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Googlesheets, Gmail, and Httprequest for monitoring and reporting. Uses 7 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Googlesheets, Gmail, and Schedule for monitoring and reporting. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -873970,11 +874000,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Gmailtool",
+ "Schedule",
"Httprequest",
- "Schedule"
+ "Gmailtool"
],
- "description": "Scheduled automation that orchestrates Gmailtool, Httprequest, and Schedule for data processing. Uses 12 nodes.",
+ "description": "Scheduled automation that orchestrates Schedule, Httprequest, and Gmailtool for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Schedule Trigger",
@@ -875186,10 +875216,10 @@
"triggerType": "Webhook",
"integrations": [
"Notion",
- "Respondtowebhook",
- "Webhook"
+ "Webhook",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Notion, Respondtowebhook, and Webhook for data processing. Uses 30 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Notion, Webhook, and Respondtowebhook for data processing. Uses 30 nodes.",
"steps": [
{
"name": "Respond to Webhook",
@@ -875881,13 +875911,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Webhook",
"Httprequest",
"Linkedin",
- "Webhook",
"Airtable",
"Emailsend"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Linkedin, and Webhook for data processing. Uses 16 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Httprequest, and Linkedin for data processing. Uses 16 nodes and integrates with 5 services.",
"steps": [
{
"name": "Airtable Trigger",
@@ -876663,12 +876693,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Manual",
"Woocommercetool",
"Googledrive",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Manual, Woocommercetool, and Googledrive for data processing. Uses 25 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Woocommercetool, Googledrive, and Httprequest for data processing. Uses 25 nodes and integrates with 4 services.",
"steps": [
{
"name": "When chat message received",
@@ -876998,10 +877028,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
- "Slack"
+ "Slack",
+ "Webhook"
],
- "description": "Webhook-triggered automation that connects Webhook and Slack for data processing. Uses 11 nodes.",
+ "description": "Webhook-triggered automation that connects Slack and Webhook for data processing. Uses 11 nodes.",
"steps": [
{
"name": "Webhook",
@@ -877277,10 +877307,10 @@
"triggerType": "Scheduled",
"integrations": [
"Airtable",
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Airtable, Httprequest, and Schedule for data processing. Uses 5 nodes.",
+ "description": "Scheduled automation that orchestrates Airtable, Schedule, and Httprequest for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Store Weather Data",
@@ -877574,14 +877604,14 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Manual",
"Httprequest",
"Wait",
"Converttofile",
- "Manual",
- "Code"
+ "Splitinbatches"
],
- "description": "Manual workflow that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 10 nodes and integrates with 6 services.",
+ "description": "Manual workflow that orchestrates Code, Manual, and Httprequest for data processing. Uses 10 nodes and integrates with 6 services.",
"steps": [
{
"name": "Start",
@@ -883172,18 +883202,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Limit",
- "Splitinbatches",
- "Wait",
- "Aggregate",
"Code",
- "Splitout",
- "Schedule",
- "Manual",
"Googlesheets",
- "Sort"
+ "Schedule",
+ "Limit",
+ "Manual",
+ "Wait",
+ "Splitout",
+ "Splitinbatches",
+ "Sort",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Limit, Splitinbatches, and Wait for data processing. Uses 92 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Schedule for data processing. Uses 92 nodes and integrates with 10 services.",
"steps": [
{
"name": "Structured Output Parser",
@@ -883762,11 +883792,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Executeworkflow",
"Airtop",
- "Form"
+ "Form",
+ "Executeworkflow"
],
- "description": "Webhook-triggered automation that orchestrates Executeworkflow, Airtop, and Form for data processing. Uses 9 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Airtop, Form, and Executeworkflow for data processing. Uses 9 nodes.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -884211,11 +884241,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Webflow",
+ "Slack",
"Code",
- "Slack"
+ "Webflow"
],
- "description": "Webhook-triggered automation that orchestrates Webflow, Code, and Slack for data processing. Uses 13 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Slack, Code, and Webflow for data processing. Uses 13 nodes.",
"steps": [
{
"name": "Webflow Form Submission Trigger",
@@ -885103,13 +885133,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Webhook",
"Respondtowebhook",
- "Executeworkflow"
+ "Webhook",
+ "Httprequest",
+ "Executeworkflow",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Webhook for data processing. Uses 30 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Webhook, and Httprequest for data processing. Uses 30 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook - ChatInput",
@@ -885320,11 +885350,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Youtube",
"Twitter",
- "Schedule"
+ "Schedule",
+ "Youtube"
],
- "description": "Scheduled automation that orchestrates Youtube, Twitter, and Schedule for data processing. Uses 6 nodes.",
+ "description": "Scheduled automation that orchestrates Twitter, Schedule, and Youtube for data processing. Uses 6 nodes.",
"steps": [
{
"name": "Check Every 30 Min",
@@ -886118,14 +886148,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Markdown",
- "Splitout",
+ "Googlesheets",
"Manual",
+ "Httprequest",
+ "Splitout",
"Executeworkflow",
- "Googlesheets"
+ "Markdown"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Markdown, and Splitout for data processing. Uses 29 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Httprequest for data processing. Uses 29 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -886322,10 +886352,10 @@
"triggerType": "Scheduled",
"integrations": [
"Twilio",
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Twilio, Httprequest, and Schedule for data processing. Uses 4 nodes.",
+ "description": "Scheduled automation that orchestrates Twilio, Schedule, and Httprequest for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Schedule Trigger",
@@ -887045,13 +887075,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Googlecloudstorage",
- "Httprequest",
+ "Code",
"Manual",
- "Filter",
- "Code"
+ "Httprequest",
+ "Googlecloudstorage",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Googlecloudstorage, Httprequest, and Manual for data processing. Uses 25 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 25 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -887451,15 +887481,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Openai",
- "Writebinaryfile",
+ "Manual",
+ "Movebinarydata",
"Spreadsheetfile",
"Itemlists",
- "Manual",
- "Movebinarydata"
+ "Splitinbatches",
+ "Writebinaryfile",
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Openai, and Writebinaryfile for data processing. Uses 11 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Movebinarydata, and Spreadsheetfile for data processing. Uses 11 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -887898,11 +887928,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Manual",
"Editimage",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Code, Manual, and Editimage for data processing. Uses 14 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Editimage, and Httprequest for data processing. Uses 14 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -889067,13 +889097,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
- "Telegram",
"Code",
+ "Telegram",
+ "Webhook",
+ "Httprequest",
"Gmail"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Telegram for data processing. Uses 35 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Webhook for data processing. Uses 35 nodes and integrates with 5 services.",
"steps": [
{
"name": "When chat message received",
@@ -889481,13 +889511,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Httprequest",
- "Schedule",
+ "Code",
"Manual",
+ "Httprequest",
"Baserow",
- "Code"
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Httprequest, Schedule, and Manual for data processing. Uses 10 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 10 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -889682,10 +889712,10 @@
"triggerType": "Scheduled",
"integrations": [
"Notion",
- "Todoist",
- "Schedule"
+ "Schedule",
+ "Todoist"
],
- "description": "Scheduled automation that orchestrates Notion, Todoist, and Schedule to synchronize data. Uses 4 nodes.",
+ "description": "Scheduled automation that orchestrates Notion, Schedule, and Todoist to synchronize data. Uses 4 nodes.",
"steps": [
{
"name": "On schedule",
@@ -890385,13 +890415,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
- "Manual",
"Telegram",
- "Ssh"
+ "Manual",
+ "Httprequest",
+ "Ssh",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Manual to update existing data. Uses 27 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Manual, and Httprequest to update existing data. Uses 27 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -891120,10 +891150,10 @@
"triggerType": "Webhook",
"integrations": [
"Wait",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Wait, Manual, and Httprequest for data processing. Uses 19 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Wait, Httprequest, and Manual for data processing. Uses 19 nodes.",
"steps": [
{
"name": "Google Gemini Chat Model",
@@ -892353,12 +892383,12 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Readbinaryfile",
"Spreadsheetfile",
"Postgres",
- "Manual",
- "Readbinaryfile"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Spreadsheetfile, Postgres, and Manual for data processing. Uses 4 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Readbinaryfile, Spreadsheetfile, and Postgres for data processing. Uses 4 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -893197,14 +893227,14 @@
"triggerType": "Complex",
"integrations": [
"Emailreadimap",
- "Httprequest",
- "Markdown",
"Manual",
- "Noop",
"Googledrive",
- "Emailsend"
+ "Httprequest",
+ "Noop",
+ "Emailsend",
+ "Markdown"
],
- "description": "Complex multi-step automation that orchestrates Emailreadimap, Httprequest, and Markdown for data processing. Uses 26 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Emailreadimap, Manual, and Googledrive for data processing. Uses 26 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -894766,11 +894796,11 @@
"triggerType": "Complex",
"integrations": [
"Wait",
- "Stopanderror",
"Manual",
+ "Stopanderror",
"Noop"
],
- "description": "Complex multi-step automation that orchestrates Wait, Stopanderror, and Manual for data processing. Uses 19 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Wait, Manual, and Stopanderror for data processing. Uses 19 nodes and integrates with 4 services.",
"steps": [
{
"name": "Manual Trigger",
@@ -895266,13 +895296,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Wait",
- "Schedule",
"Discord",
- "Filter"
+ "Wait",
+ "Filter",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Wait, and Schedule for data processing. Uses 14 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Discord, Wait, and Filter for data processing. Uses 14 nodes and integrates with 5 services.",
"steps": [
{
"name": "Every day at 9pm",
@@ -895959,11 +895989,11 @@
"triggerType": "Complex",
"integrations": [
"Googlesheets",
- "Aggregate",
"Executeworkflow",
- "Httprequest"
+ "Httprequest",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Googlesheets, Aggregate, and Executeworkflow for data processing. Uses 17 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Executeworkflow, and Httprequest for data processing. Uses 17 nodes and integrates with 4 services.",
"steps": [
{
"name": "Trigger - When User Sends Message",
@@ -896359,12 +896389,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Gmail",
"Schedule",
- "Httprequest",
- "Googlesheets"
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Gmail, Schedule, and Httprequest for notifications and alerts. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Gmail, and Schedule for notifications and alerts. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "Weekly Trigger",
@@ -896946,12 +896976,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Googledocstool",
- "Aggregate",
"Telegram",
- "Googledocs"
+ "Aggregate",
+ "Googledocs",
+ "Googledocstool"
],
- "description": "Complex multi-step automation that orchestrates Googledocstool, Aggregate, and Telegram for data processing. Uses 21 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Aggregate, and Googledocs for data processing. Uses 21 nodes and integrates with 4 services.",
"steps": [
{
"name": "When chat message received",
@@ -897283,13 +897313,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Httprequest",
- "Schedule",
+ "Code",
"Manual",
+ "Httprequest",
"Baserow",
- "Code"
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Httprequest, Schedule, and Manual for data processing. Uses 10 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 10 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -898181,16 +898211,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Twilio",
+ "Respondtowebhook",
+ "Webhook",
"Httprequest",
"Wait",
- "Webhook",
- "Respondtowebhook",
- "Filter",
- "Googlesheets",
- "Gmail"
+ "Gmail",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Twilio, Httprequest, and Wait for data processing. Uses 18 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Twilio, and Respondtowebhook for data processing. Uses 18 nodes and integrates with 8 services.",
"steps": [
{
"name": "Detect new lead in Google Sheets",
@@ -898464,10 +898494,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Form",
- "Airtable"
+ "Airtable",
+ "Form"
],
- "description": "Webhook-triggered automation that connects Form and Airtable for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that connects Airtable and Form for data processing. Uses 4 nodes.",
"steps": [
{
"name": "On form submission",
@@ -898930,13 +898960,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
- "Googlesheets",
"Code",
+ "Googlesheets",
+ "Webhook",
+ "Httprequest",
"Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Googlesheets for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Webhook for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "Line Chat Bot",
@@ -900882,10 +900912,10 @@
"integrations": [
"Code",
"Webhook",
- "Respondtowebhook",
- "Ssh"
+ "Ssh",
+ "Respondtowebhook"
],
- "description": "Complex multi-step automation that orchestrates Code, Webhook, and Respondtowebhook for data processing. Uses 35 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Ssh for data processing. Uses 35 nodes and integrates with 4 services.",
"steps": [
{
"name": "API",
@@ -901245,10 +901275,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -902091,10 +902121,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Openai",
- "Googlesheets"
+ "Googlesheets",
+ "Openai"
],
- "description": "Webhook-triggered automation that connects Openai and Googlesheets for data processing. Uses 9 nodes.",
+ "description": "Webhook-triggered automation that connects Googlesheets and Openai for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Check for new entries",
@@ -902481,11 +902511,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Openai",
"Pipedrive",
- "Gmail"
+ "Gmail",
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Code, Openai, and Pipedrive for data processing. Uses 11 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Pipedrive, and Gmail for data processing. Uses 11 nodes and integrates with 4 services.",
"steps": [
{
"name": "Email box 1",
@@ -903290,12 +903320,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
"Googlecalendar",
- "Executeworkflow",
- "Gmail"
+ "Gmail",
+ "Form",
+ "Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates Form, Googlecalendar, and Executeworkflow for data processing. Uses 25 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlecalendar, Gmail, and Form for data processing. Uses 25 nodes and integrates with 4 services.",
"steps": [
{
"name": "n8n Form Trigger",
@@ -903678,10 +903708,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Manual",
- "N8N"
+ "N8N",
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Code, Manual, and N8N for data processing. Uses 13 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, N8N, and Manual for data processing. Uses 13 nodes.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -903898,10 +903928,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 6 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -904723,13 +904753,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
- "Extractfromfile",
- "Manual",
"Code",
- "Github"
+ "Manual",
+ "Github",
+ "Extractfromfile",
+ "Stopanderror"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Extractfromfile, and Manual for data processing. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Github for data processing. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -905590,10 +905620,10 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Compression",
- "Executeworkflow"
+ "Executeworkflow",
+ "Compression"
],
- "description": "Webhook-triggered automation that orchestrates Code, Compression, and Executeworkflow for data processing. Uses 5 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Executeworkflow, and Compression for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -906491,14 +906521,14 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Slack",
+ "Googlesheets",
"Httprequest",
"Splitout",
- "Schedule",
- "Googlesheets",
- "Emailsend"
+ "Emailsend",
+ "Slack",
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Slack, Httprequest, and Splitout for data processing. Uses 10 nodes and integrates with 6 services.",
+ "description": "Scheduled automation that orchestrates Googlesheets, Httprequest, and Splitout for data processing. Uses 10 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -906845,10 +906875,10 @@
"triggerType": "Manual",
"integrations": [
"Code",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and Httprequest for data processing. Uses 10 nodes.",
+ "description": "Manual workflow that orchestrates Code, Httprequest, and Manual for data processing. Uses 10 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -907919,14 +907949,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Manual",
"Extractfromfile",
"Splitout",
- "Manual",
- "Code",
- "Googledrive"
+ "Googledrive",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Extractfromfile, and Splitout for data processing. Uses 17 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Extractfromfile for data processing. Uses 17 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -908409,13 +908439,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Readwritefile",
"Extractfromfile",
"Localfile",
- "Splitout",
- "Code",
- "Readwritefile"
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Extractfromfile, Localfile, and Splitout for data processing. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Readwritefile, and Extractfromfile for data processing. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "Watch For Bank Statements",
@@ -908918,11 +908948,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Openai",
"Reddit",
- "Manual",
- "Openai"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Reddit, Manual, and Openai for data processing. Uses 15 nodes.",
+ "description": "Manual workflow that orchestrates Openai, Reddit, and Manual for data processing. Uses 15 nodes.",
"steps": [
{
"name": "OpenAI Summary",
@@ -909289,11 +909319,11 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Extractfromfile",
+ "Splitout",
"Googledrive",
- "Splitout"
+ "Extractfromfile"
],
- "description": "Webhook-triggered automation that orchestrates Code, Extractfromfile, and Googledrive for data processing. Uses 10 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Splitout, and Googledrive for data processing. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "Google Drive Trigger",
@@ -910327,15 +910357,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Microsoftoutlook",
"Splitinbatches",
- "Markdown",
- "Schedule",
"Manual",
- "Mondaycom",
- "Airtable"
+ "Airtable",
+ "Markdown",
+ "Microsoftoutlook",
+ "Schedule",
+ "Mondaycom"
],
- "description": "Complex multi-step automation that orchestrates Microsoftoutlook, Splitinbatches, and Markdown for data processing. Uses 28 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Splitinbatches, Manual, and Airtable for data processing. Uses 28 nodes and integrates with 7 services.",
"steps": [
{
"name": "Convert to Markdown",
@@ -911421,11 +911451,11 @@
"triggerType": "Complex",
"integrations": [
"Wait",
+ "Splitout",
"Whatsapp",
- "Httprequest",
- "Splitout"
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Wait, Whatsapp, and Httprequest for data processing. Uses 35 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Wait, Splitout, and Whatsapp for data processing. Uses 35 nodes and integrates with 4 services.",
"steps": [
{
"name": "WhatsApp Trigger",
@@ -911987,10 +912017,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 12 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 12 nodes.",
"steps": [
{
"name": "CREATE",
@@ -912393,15 +912423,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Manual",
"Hubspot",
"Httprequest",
- "Schedule",
"Spreadsheetfile",
- "Manual",
- "Code",
- "Emailsend"
+ "Emailsend",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Hubspot, Httprequest, and Schedule for data processing. Uses 16 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Hubspot for data processing. Uses 16 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -913190,12 +913220,12 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Httprequest",
- "Manual",
"Splitout",
- "Googlesheets"
+ "Googlesheets",
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Httprequest, Manual, and Splitout to synchronize data. Uses 8 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Splitout, Googlesheets, and Httprequest to synchronize data. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "Manual Trigger (When Clicking 'Test workflow'",
@@ -913689,13 +913719,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
"Form",
"N8N",
- "Executeworkflow",
- "Googlesheets",
- "Code"
+ "Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates Form, N8N, and Executeworkflow for data processing. Uses 16 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Form for data processing. Uses 16 nodes and integrates with 5 services.",
"steps": [
{
"name": "On form submission",
@@ -913800,10 +913830,10 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -915797,12 +915827,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Googledocstool",
"Webhook",
"Telegram",
- "Googledocs"
+ "Googledocs",
+ "Googledocstool"
],
- "description": "Complex multi-step automation that orchestrates Googledocstool, Webhook, and Telegram for data processing. Uses 23 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Telegram, and Googledocs for data processing. Uses 23 nodes and integrates with 4 services.",
"steps": [
{
"name": "Listen for Telegram Events",
@@ -916272,10 +916302,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 10 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 10 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -916755,11 +916785,11 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
"Airtable",
+ "Webhook",
"Executiondata"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Airtable, and Executiondata for data processing. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Airtable, Webhook, and Executiondata for data processing. Uses 8 nodes.",
"steps": [
{
"name": "Webhook",
@@ -918401,20 +918431,20 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Postbin",
- "Slack",
- "Httprequest",
- "Wait",
- "Aggregate",
- "Splitout",
- "Bamboohr",
"Renamekeys",
"Manual",
- "Filter",
+ "Postbin",
+ "Bamboohr",
+ "Httprequest",
"Noop",
- "Debughelper"
+ "Wait",
+ "Splitout",
+ "Debughelper",
+ "Filter",
+ "Slack",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Postbin, Slack, and Httprequest for data processing. Uses 58 nodes and integrates with 12 services.",
+ "description": "Complex multi-step automation that orchestrates Renamekeys, Manual, and Postbin for data processing. Uses 58 nodes and integrates with 12 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -919445,15 +919475,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Openai",
+ "Code",
"Httprequest",
+ "Html",
"Nocodb",
- "Schedule",
"Itemlists",
- "Code"
+ "Schedule",
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Html, Openai, and Httprequest for data processing. Uses 36 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Html for data processing. Uses 36 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule Trigger each week",
@@ -919971,13 +920001,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Html",
"Limit",
+ "Manual",
"Httprequest",
- "Splitout",
- "Manual"
+ "Html",
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Html, Limit, and Httprequest for data processing. Uses 15 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Limit, Manual, and Httprequest for data processing. Uses 15 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -920964,14 +920994,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
+ "Googlesheets",
"Limit",
- "Httprequest",
- "Splitout",
"Manual",
- "Googlesheets"
+ "Httprequest",
+ "Html",
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Html, Limit, and Httprequest for data processing. Uses 20 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Limit, and Manual for data processing. Uses 20 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -921393,12 +921423,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Form",
- "Extractfromfile",
+ "Googlesheets",
"Gmail",
- "Googlesheets"
+ "Form",
+ "Extractfromfile"
],
- "description": "Webhook-triggered automation that orchestrates Form, Extractfromfile, and Gmail for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Gmail, and Form for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "Application Form",
@@ -921811,10 +921841,10 @@
"integrations": [
"Youtube",
"Extractfromfile",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Youtube, Extractfromfile, and Manual for data processing. Uses 13 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Youtube, Extractfromfile, and Httprequest for data processing. Uses 13 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -922233,10 +922263,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that connects Manual and Httprequest for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that connects Httprequest and Manual for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Set Wikipedia URL with Bright Data Zone",
@@ -922488,10 +922518,10 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that connects Httprequest and Schedule for data processing. Uses 9 nodes.",
+ "description": "Scheduled automation that connects Schedule and Httprequest for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Trigger 2100 Bear Gratitude Jar Notice",
@@ -923867,17 +923897,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Openai",
- "Webhook",
"Crypto",
- "Respondtowebhook",
- "Googlesheets",
"Code",
+ "Googlesheets",
+ "Respondtowebhook",
+ "Webhook",
+ "Html",
+ "Noop",
"Gmail",
- "Noop"
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Html, Openai, and Webhook for data processing. Uses 49 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Crypto, Code, and Googlesheets for data processing. Uses 49 nodes and integrates with 9 services.",
"steps": [
{
"name": "On email received",
@@ -924587,12 +924617,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Telegram",
"Airtable",
"Cron",
+ "Telegram",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Telegram, Airtable, and Cron for data processing. Uses 15 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Airtable, Cron, and Telegram for data processing. Uses 15 nodes and integrates with 4 services.",
"steps": [
{
"name": "Airtable2",
@@ -924881,11 +924911,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
+ "Schedule",
"Discord",
- "Httprequest",
- "Schedule"
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Discord, Httprequest, and Schedule for data processing. Uses 8 nodes.",
+ "description": "Scheduled automation that orchestrates Schedule, Discord, and Httprequest for data processing. Uses 8 nodes.",
"steps": [
{
"name": "Schedule Trigger",
@@ -925781,14 +925811,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
- "Googleanalytics",
+ "Code",
"Manual",
+ "Httprequest",
+ "Googleanalytics",
"Baserow",
- "Code"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Googleanalytics for data processing. Uses 22 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 22 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -926750,14 +926780,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
- "Googleanalytics",
+ "Code",
"Manual",
+ "Httprequest",
+ "Googleanalytics",
"Baserow",
- "Code"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Googleanalytics for data processing. Uses 22 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 22 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -927361,14 +927391,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Readpdf",
- "Openai",
"Code",
- "Googledrive",
+ "Noop",
"Gmail",
- "Noop"
+ "Googledrive",
+ "Readpdf",
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Readpdf, Openai, and Code for data processing. Uses 18 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Noop, and Gmail for data processing. Uses 18 nodes and integrates with 6 services.",
"steps": [
{
"name": "On email received",
@@ -928233,15 +928263,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
"Removeduplicates",
+ "Splitout",
+ "Airtable",
"Slack",
"Graphql",
- "Splitout",
- "Schedule",
- "Airtable"
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Removeduplicates, and Slack for data processing. Uses 19 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Removeduplicates, Splitout, and Airtable for data processing. Uses 19 nodes and integrates with 7 services.",
"steps": [
{
"name": "Airtable Trigger",
@@ -929034,15 +929064,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
"Removeduplicates",
+ "Splitout",
+ "Airtable",
"Slack",
"Graphql",
- "Splitout",
- "Schedule",
- "Airtable"
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Removeduplicates, and Slack for data processing. Uses 19 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Removeduplicates, Splitout, and Airtable for data processing. Uses 19 nodes and integrates with 7 services.",
"steps": [
{
"name": "Airtable Trigger",
@@ -929341,12 +929371,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Extractfromfile",
"Discord",
- "Rssfeedread",
- "Httprequest"
+ "Extractfromfile",
+ "Httprequest",
+ "Rssfeedread"
],
- "description": "Webhook-triggered automation that orchestrates Extractfromfile, Discord, and Rssfeedread for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Discord, Extractfromfile, and Httprequest for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "YouTube Video Trigger",
@@ -930785,16 +930815,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Nocodb",
- "Splitout",
- "Schedule",
- "Manual",
+ "Code",
"Filter",
- "Code"
+ "Manual",
+ "Httprequest",
+ "Splitout",
+ "Nocodb",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Nocodb for data processing. Uses 35 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Filter, and Manual for data processing. Uses 35 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -931598,12 +931628,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Manual",
- "Googledrive",
"Slack",
- "Httprequest"
+ "Googledrive",
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Manual, Googledrive, and Slack for data processing. Uses 21 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Slack, Googledrive, and Httprequest for data processing. Uses 21 nodes and integrates with 4 services.",
"steps": [
{
"name": "Get message",
@@ -932004,10 +932034,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Executeworkflow",
- "Googlesheets"
+ "Googlesheets",
+ "Executeworkflow"
],
- "description": "Webhook-triggered automation that connects Executeworkflow and Googlesheets for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that connects Googlesheets and Executeworkflow for data processing. Uses 10 nodes.",
"steps": [
{
"name": "Parse msg and save to Sheets",
@@ -932502,12 +932532,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Splitout",
"Googlesheets",
"Executeworkflow",
- "Splitout",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Googlesheets, Executeworkflow, and Splitout for data processing. Uses 11 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Splitout, Googlesheets, and Executeworkflow for data processing. Uses 11 nodes and integrates with 4 services.",
"steps": [
{
"name": "Generate new keywords",
@@ -933608,17 +933638,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Aggregate",
- "Rssfeedread",
- "Splitout",
- "Filter",
- "Executeworkflow",
"Code",
- "Wordpress"
+ "Httprequest",
+ "Wordpress",
+ "Splitout",
+ "Executeworkflow",
+ "Filter",
+ "Splitinbatches",
+ "Aggregate",
+ "Rssfeedread"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Aggregate for data processing. Uses 32 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Wordpress for data processing. Uses 32 nodes and integrates with 9 services.",
"steps": [
{
"name": "RSS Feed Trigger",
@@ -934126,15 +934156,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Googleanalyticstool",
- "Httprequest",
- "Schedule",
- "Manual",
"Code",
+ "Manual",
+ "Httprequest",
"Airtable",
- "Gmail"
+ "Gmail",
+ "Googleanalyticstool",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Googleanalyticstool, Httprequest, and Schedule for data processing. Uses 14 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 14 nodes and integrates with 7 services.",
"steps": [
{
"name": "Create UTM Link & Send To Database",
@@ -934470,10 +934500,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
- "Slack"
+ "Slack",
+ "Webhook"
],
- "description": "Webhook-triggered automation that connects Webhook and Slack for data processing. Uses 11 nodes.",
+ "description": "Webhook-triggered automation that connects Slack and Webhook for data processing. Uses 11 nodes.",
"steps": [
{
"name": "Webhook",
@@ -935207,12 +935237,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Googlesheets",
"Code",
- "Httprequest",
- "Emailsend"
+ "Googlesheets",
+ "Emailsend",
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Googlesheets, Code, and Httprequest for data processing. Uses 19 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Emailsend for data processing. Uses 19 nodes and integrates with 4 services.",
"steps": [
{
"name": "Google Sheets Trigger",
@@ -935776,12 +935806,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
"Bannerbear",
+ "Form",
"Discord",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Form, Bannerbear, and Discord for data processing. Uses 16 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Bannerbear, Form, and Discord for data processing. Uses 16 nodes and integrates with 4 services.",
"steps": [
{
"name": "n8n Form Trigger",
@@ -937680,13 +937710,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Httprequest",
- "Manual",
"Code",
- "Quickchart"
+ "Quickchart",
+ "Manual",
+ "Httprequest",
+ "Html"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Manual for data processing. Uses 38 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Quickchart, and Manual for data processing. Uses 38 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -938134,10 +938164,10 @@
"triggerType": "Webhook",
"integrations": [
"Notion",
- "Filter",
- "Summarize"
+ "Summarize",
+ "Filter"
],
- "description": "Webhook-triggered automation that orchestrates Notion, Filter, and Summarize for data processing. Uses 9 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Notion, Summarize, and Filter for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Notion - Page Added Trigger",
@@ -938777,13 +938807,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Itemlists",
- "Filter",
- "Executeworkflow",
"Googlecalendar",
- "Gmail"
+ "Gmail",
+ "Executeworkflow",
+ "Filter",
+ "Itemlists"
],
- "description": "Complex multi-step automation that orchestrates Itemlists, Filter, and Executeworkflow for data processing. Uses 21 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlecalendar, Gmail, and Executeworkflow for data processing. Uses 21 nodes and integrates with 5 services.",
"steps": [
{
"name": "Gmail Trigger",
@@ -939166,13 +939196,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Splitout",
- "Schedule",
- "Manual",
- "Googlesheets"
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Httprequest, Splitout, and Schedule for data processing. Uses 7 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Googlesheets, Manual, and Httprequest for data processing. Uses 7 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -939703,12 +939733,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Extractfromfile",
"Googledrive",
"Converttofile",
- "Httprequest"
+ "Httprequest",
+ "Extractfromfile"
],
- "description": "Complex multi-step automation that orchestrates Extractfromfile, Googledrive, and Converttofile for data processing. Uses 16 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googledrive, Converttofile, and Httprequest for data processing. Uses 16 nodes and integrates with 4 services.",
"steps": [
{
"name": "Get PDF or Images",
@@ -940067,14 +940097,14 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Openai",
- "Aggregate",
- "Markdown",
- "Manual",
"Googlesheets",
- "Gmail"
+ "Manual",
+ "Gmail",
+ "Markdown",
+ "Aggregate",
+ "Openai"
],
- "description": "Manual workflow that orchestrates Openai, Aggregate, and Markdown for data processing. Uses 10 nodes and integrates with 6 services.",
+ "description": "Manual workflow that orchestrates Googlesheets, Manual, and Gmail for data processing. Uses 10 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -940394,13 +940424,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Httprequest",
- "Schedule",
+ "Code",
"Manual",
+ "Httprequest",
"Baserow",
- "Code"
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Httprequest, Schedule, and Manual for data processing. Uses 10 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 10 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -941262,13 +941292,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Schedule",
+ "Code",
"Manual",
+ "Httprequest",
"Baserow",
- "Code"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Schedule, and Manual for data processing. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -941969,10 +941999,10 @@
"triggerType": "Webhook",
"integrations": [
"Form",
- "Noop",
- "Httprequest"
+ "Httprequest",
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Form, Noop, and Httprequest for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Form, Httprequest, and Noop for data processing. Uses 10 nodes.",
"steps": [
{
"name": "YouTube video URL",
@@ -943788,16 +943818,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Splitout",
- "Manual",
- "Filter",
"Executeworkflow",
- "Googlesheets",
- "Code"
+ "Filter",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Splitout for data processing. Uses 42 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 42 nodes and integrates with 8 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -944170,12 +944200,12 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Telegram",
"Googlecalendar",
- "Removeduplicates",
- "Schedule"
+ "Telegram",
+ "Schedule",
+ "Removeduplicates"
],
- "description": "Scheduled automation that orchestrates Telegram, Googlecalendar, and Removeduplicates for data processing. Uses 9 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Googlecalendar, Telegram, and Schedule for data processing. Uses 9 nodes and integrates with 4 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -945492,13 +945522,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Wait",
- "Telegram",
+ "Code",
"Googlesheets",
- "Code"
+ "Telegram",
+ "Httprequest",
+ "Wait"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Telegram for data processing. Uses 38 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Telegram for data processing. Uses 38 nodes and integrates with 5 services.",
"steps": [
{
"name": "Trigger: Telegram Prompt",
@@ -946367,12 +946397,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Extractfromfile",
+ "Googlesheets",
"Googledrive",
- "Googlesheets"
+ "Form",
+ "Extractfromfile"
],
- "description": "Complex multi-step automation that orchestrates Form, Extractfromfile, and Googledrive for data processing. Uses 18 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Googledrive, and Form for data processing. Uses 18 nodes and integrates with 4 services.",
"steps": [
{
"name": "On form submission",
@@ -946737,11 +946767,11 @@
"triggerType": "Complex",
"integrations": [
"Compression",
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Compression, Manual, and Httprequest for data processing. Uses 13 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Compression, Readwritefile, and Httprequest for data processing. Uses 13 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking \"Test workflow\"",
@@ -947993,15 +948023,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
- "Splitout",
"Respondtowebhook",
- "Filter",
+ "Webhook",
+ "Httprequest",
+ "Noop",
+ "Splitout",
"Executeworkflow",
- "Noop"
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Splitout for data processing. Uses 34 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Webhook, and Httprequest for data processing. Uses 34 nodes and integrates with 7 services.",
"steps": [
{
"name": "Bitrix24 Handler",
@@ -951117,10 +951147,10 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Openai",
- "Telegram"
+ "Telegram",
+ "Openai"
],
- "description": "Webhook-triggered automation that connects Openai and Telegram for data processing. Uses 16 nodes.",
+ "description": "Webhook-triggered automation that connects Telegram and Openai for data processing. Uses 16 nodes.",
"steps": [
{
"name": "Telegram Trigger",
@@ -951737,11 +951767,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Supabase",
"Telegram",
+ "Supabase",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Supabase, Telegram, and Httprequest for data processing. Uses 17 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Telegram, Supabase, and Httprequest for data processing. Uses 17 nodes.",
"steps": [
{
"name": "Get New Message",
@@ -952384,12 +952414,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
"Code",
"Telegram",
+ "Stopanderror",
"Limit"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Code, and Telegram for data processing. Uses 20 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Stopanderror for data processing. Uses 20 nodes and integrates with 4 services.",
"steps": [
{
"name": "Telegram Trigger",
@@ -952954,10 +952984,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Spotify",
- "Telegram"
+ "Telegram",
+ "Spotify"
],
- "description": "Webhook-triggered automation that connects Spotify and Telegram for data processing. Uses 14 nodes.",
+ "description": "Webhook-triggered automation that connects Telegram and Spotify for data processing. Uses 14 nodes.",
"steps": [
{
"name": "Resume play",
@@ -953987,16 +954017,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Aggregate",
- "Converttofile",
- "Splitout",
- "Manual",
"Googlesheets",
- "Googledrive"
+ "Manual",
+ "Httprequest",
+ "Splitout",
+ "Converttofile",
+ "Googledrive",
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Aggregate for data processing. Uses 16 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Httprequest for data processing. Uses 16 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking 'Test workflow'",
@@ -955633,14 +955663,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
+ "Googlesheets",
"Webhook",
- "Markdown",
+ "Httprequest",
"Executeworkflow",
- "Googlesheets"
+ "Markdown",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Webhook for data processing. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Webhook, and Httprequest for data processing. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "Tool called from Agent",
@@ -956807,19 +956837,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Httprequest",
- "Aggregate",
- "Rssfeedread",
- "Splitout",
- "Schedule",
- "Filter",
- "Telegram",
- "Manual",
"Code",
- "Gmail"
+ "Telegram",
+ "Form",
+ "Manual",
+ "Httprequest",
+ "Splitout",
+ "Gmail",
+ "Filter",
+ "Schedule",
+ "Aggregate",
+ "Rssfeedread"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Aggregate for data processing. Uses 41 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Form for data processing. Uses 41 nodes and integrates with 11 services.",
"steps": [
{
"name": "On form submission",
@@ -957694,16 +957724,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Limit",
- "Splitinbatches",
- "Slack",
"Datetime",
- "Rssfeedread",
+ "Slack",
+ "Splitinbatches",
"Schedule",
"Redis",
- "Code"
+ "Rssfeedread"
],
- "description": "Complex multi-step automation that orchestrates Limit, Splitinbatches, and Slack for data processing. Uses 24 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Limit, and Datetime for data processing. Uses 24 nodes and integrates with 8 services.",
"steps": [
{
"name": "Cron Trigger",
@@ -958348,14 +958378,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Httprequest",
- "Extractfromfile",
- "Executecommand",
"Code",
- "Readwritefile"
+ "Readwritefile",
+ "Form",
+ "Executecommand",
+ "Httprequest",
+ "Extractfromfile"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Extractfromfile for data processing. Uses 22 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Readwritefile, and Form for data processing. Uses 22 nodes and integrates with 6 services.",
"steps": [
{
"name": "On form submission",
@@ -960308,15 +960338,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Httprequest",
- "Converttofile",
- "Manual",
"Googlesheets",
- "Googledrive",
- "Gmail"
+ "Form",
+ "Manual",
+ "Httprequest",
+ "Gmail",
+ "Converttofile",
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Converttofile for data processing. Uses 37 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Form, and Manual for data processing. Uses 37 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -961079,14 +961109,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Manual",
"Httprequest",
"Wait",
"Converttofile",
- "Manual",
- "Code"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 21 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 21 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Start’",
@@ -962008,13 +962038,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Schedule",
"Googlesheets",
- "Emailsend"
+ "Httprequest",
+ "Emailsend",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Schedule for data processing. Uses 16 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Httprequest, and Emailsend for data processing. Uses 16 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -962925,16 +962955,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Compression",
"Code",
+ "Compression",
"Manual",
- "Sort",
+ "Editimage",
+ "Httprequest",
"Googledrive",
- "Editimage"
+ "Sort",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Compression for data processing. Uses 20 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Compression, and Manual for data processing. Uses 20 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -963570,10 +963600,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 12 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 12 nodes.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -964732,12 +964762,12 @@
"triggerType": "Complex",
"integrations": [
"Form",
- "Slack",
+ "Airtoptool",
"Airtop",
"Executeworkflow",
- "Airtoptool"
+ "Slack"
],
- "description": "Complex multi-step automation that orchestrates Form, Slack, and Airtop for data processing. Uses 19 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Form, Airtoptool, and Airtop for data processing. Uses 19 nodes and integrates with 5 services.",
"steps": [
{
"name": "On form submission",
@@ -965376,14 +965406,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Manual",
"Httprequest",
"Wait",
+ "Airtable",
"Markdown",
- "Manual",
- "Airtable"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 19 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Httprequest, and Wait for data processing. Uses 19 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -965886,12 +965916,12 @@
"triggerType": "Complex",
"integrations": [
"Limit",
- "Httprequest",
- "Aggregate",
+ "Respondtowebhook",
"Webhook",
- "Respondtowebhook"
+ "Httprequest",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Limit, Httprequest, and Aggregate for data processing. Uses 15 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Limit, Respondtowebhook, and Webhook for data processing. Uses 15 nodes and integrates with 5 services.",
"steps": [
{
"name": "Respond to Webhook",
@@ -967080,15 +967110,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
"Code",
"Manual",
- "Filter",
+ "Httprequest",
"Noop",
"Airtable",
- "Gmail"
+ "Gmail",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Code, and Manual for data processing. Uses 38 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 38 nodes and integrates with 7 services.",
"steps": [
{
"name": "Gmail Trigger",
@@ -967840,10 +967870,10 @@
"triggerType": "Scheduled",
"integrations": [
"Twitter",
- "Manual",
- "Schedule"
+ "Schedule",
+ "Manual"
],
- "description": "Scheduled automation that orchestrates Twitter, Manual, and Schedule for data processing. Uses 12 nodes.",
+ "description": "Scheduled automation that orchestrates Twitter, Schedule, and Manual for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Schedule posting every 6 hours",
@@ -968297,10 +968327,10 @@
"integrations": [
"Wait",
"Noop",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Wait, Noop, and Manual for data processing. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Wait, Noop, and Httprequest for data processing. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -968782,10 +968812,10 @@
"triggerType": "Webhook",
"integrations": [
"Jira",
- "Summarize",
- "Googledocs"
+ "Googledocs",
+ "Summarize"
],
- "description": "Webhook-triggered automation that orchestrates Jira, Summarize, and Googledocs for data processing. Uses 13 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Jira, Googledocs, and Summarize for data processing. Uses 13 nodes.",
"steps": [
{
"name": "Jira Trigger",
@@ -969392,11 +969422,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Manual, Httprequest, and Readwritefile for data processing. Uses 19 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Readwritefile, Httprequest, and Manual for data processing. Uses 19 nodes.",
"steps": [
{
"name": "AI Agent",
@@ -970745,15 +970775,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Linkedin",
- "Facebookgraphapi",
- "Manual",
"Googlesheets",
- "Twitter",
- "Wordpress"
+ "Manual",
+ "Facebookgraphapi",
+ "Wordpress",
+ "Linkedin",
+ "Httprequest",
+ "Twitter"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Linkedin, and Facebookgraphapi for data processing. Uses 20 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Facebookgraphapi for data processing. Uses 20 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -971487,10 +971517,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Googledrive",
- "Airtable"
+ "Airtable",
+ "Googledrive"
],
- "description": "Webhook-triggered automation that connects Googledrive and Airtable to synchronize data. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that connects Airtable and Googledrive to synchronize data. Uses 8 nodes.",
"steps": [
{
"name": "Share File with Recipient",
@@ -973486,15 +973516,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Limit",
- "Httprequest",
- "Webhook",
- "Converttofile",
+ "Code",
"Respondtowebhook",
- "Code"
+ "Limit",
+ "Webhook",
+ "Httprequest",
+ "Html",
+ "Converttofile"
],
- "description": "Complex multi-step automation that orchestrates Html, Limit, and Httprequest for data processing. Uses 63 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Limit for data processing. Uses 63 nodes and integrates with 7 services.",
"steps": [
{
"name": "Clean Webdriver ",
@@ -974534,14 +974564,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "N8N",
- "Aggregate",
- "Webhook",
+ "Code",
"Respondtowebhook",
"Manual",
- "Code"
+ "Webhook",
+ "N8N",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates N8N, Aggregate, and Webhook for data processing. Uses 12 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Manual for data processing. Uses 12 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -975114,11 +975144,11 @@
"triggerType": "Complex",
"integrations": [
"Noop",
- "Manual",
+ "Github",
"N8N",
- "Github"
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Noop, Manual, and N8N for data processing. Uses 17 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Noop, Github, and N8N for data processing. Uses 17 nodes and integrates with 4 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -975297,11 +975327,11 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Manual",
+ "Httprequest",
"Start",
- "Httprequest"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Manual, Start, and Httprequest to update existing data. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates Httprequest, Start, and Manual to update existing data. Uses 4 nodes.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -975788,14 +975818,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Error",
- "Httprequest",
- "Writebinaryfile",
- "Readbinaryfile",
"Telegram",
- "Googledrive"
+ "Error",
+ "Readbinaryfile",
+ "Httprequest",
+ "Googledrive",
+ "Writebinaryfile"
],
- "description": "Complex multi-step automation that orchestrates Error, Httprequest, and Writebinaryfile for data processing. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Error, and Readbinaryfile for data processing. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "Get Audio from Video",
@@ -976665,15 +976695,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Supabase",
"Limit",
- "Splitinbatches",
- "Summarize",
- "Schedule",
"Notion",
- "Noop"
+ "Noop",
+ "Summarize",
+ "Supabase",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Supabase, Limit, and Splitinbatches for data processing. Uses 34 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Limit, Notion, and Noop for data processing. Uses 34 nodes and integrates with 7 services.",
"steps": [
{
"name": "When chat message received",
@@ -977514,11 +977544,11 @@
"triggerType": "Complex",
"integrations": [
"Wait",
+ "Googlesheets",
"Code",
- "Httprequest",
- "Googlesheets"
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Wait, Code, and Httprequest for data processing. Uses 18 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Wait, Googlesheets, and Code for data processing. Uses 18 nodes and integrates with 4 services.",
"steps": [
{
"name": "When chat message received",
@@ -977948,11 +977978,11 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
+ "Schedule",
"Todoist",
- "Filter",
- "Schedule"
+ "Filter"
],
- "description": "Scheduled automation that orchestrates Todoist, Filter, and Schedule for data processing. Uses 12 nodes.",
+ "description": "Scheduled automation that orchestrates Schedule, Todoist, and Filter for data processing. Uses 12 nodes.",
"steps": [
{
"name": "Schedule Trigger",
@@ -978862,15 +978892,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Googleanalyticstool",
- "Httprequest",
- "Schedule",
- "Manual",
"Code",
+ "Manual",
+ "Httprequest",
"Airtable",
- "Gmail"
+ "Gmail",
+ "Googleanalyticstool",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Googleanalyticstool, Httprequest, and Schedule for data processing. Uses 14 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 14 nodes and integrates with 7 services.",
"steps": [
{
"name": "Create UTM Link & Send To Database",
@@ -979480,13 +979510,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Readwritefile",
+ "Manual",
"Httprequest",
"Splitout",
- "Manual",
- "Readwritefile"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Splitout for data processing. Uses 19 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Readwritefile, Manual, and Httprequest for data processing. Uses 19 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -980618,13 +980648,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Webhook",
- "Converttofile",
- "Respondtowebhook",
"Code",
- "Readwritefile"
+ "Readwritefile",
+ "Respondtowebhook",
+ "Webhook",
+ "Converttofile"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Converttofile, and Respondtowebhook for data processing. Uses 32 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Readwritefile, and Respondtowebhook for data processing. Uses 32 nodes and integrates with 5 services.",
"steps": [
{
"name": "API POST Endpoint",
@@ -982138,10 +982168,10 @@
"triggerType": "Scheduled",
"integrations": [
"Twitter",
- "Httprequest",
- "Schedule"
+ "Schedule",
+ "Httprequest"
],
- "description": "Scheduled automation that orchestrates Twitter, Httprequest, and Schedule for data processing. Uses 5 nodes.",
+ "description": "Scheduled automation that orchestrates Twitter, Schedule, and Httprequest for data processing. Uses 5 nodes.",
"steps": [
{
"name": "Schedule Trigger",
@@ -983363,13 +983393,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Webhook",
"Httprequest",
"Wait",
- "Webhook",
- "Code",
"Airtable"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Webhook for data processing. Uses 34 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Webhook, and Httprequest for data processing. Uses 34 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook",
@@ -984584,13 +984614,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Webhook",
"Httprequest",
"Wait",
- "Webhook",
"Splitout",
"Filter"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Webhook for data processing. Uses 31 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Httprequest, and Wait for data processing. Uses 31 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook",
@@ -985406,13 +985436,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Googlecloudstorage",
- "Httprequest",
+ "Code",
"Manual",
- "Filter",
- "Code"
+ "Httprequest",
+ "Googlecloudstorage",
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Googlecloudstorage, Httprequest, and Manual for data processing. Uses 25 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 25 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -986032,11 +986062,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Executeworkflow",
"Code",
+ "Executeworkflow",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Executeworkflow, Code, and Httprequest for data processing. Uses 18 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Executeworkflow, and Httprequest for data processing. Uses 18 nodes.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -986638,11 +986668,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Executeworkflow",
"Code",
+ "Executeworkflow",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Executeworkflow, Code, and Httprequest for data processing. Uses 18 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Executeworkflow, and Httprequest for data processing. Uses 18 nodes.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -987961,11 +987991,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Manual",
+ "Splitout",
"Httprequest",
- "Splitout"
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 48 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Splitout, and Httprequest for data processing. Uses 48 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -988580,11 +988610,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Executeworkflow",
"Code",
+ "Executeworkflow",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Executeworkflow, Code, and Httprequest for data processing. Uses 17 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Executeworkflow, and Httprequest for data processing. Uses 17 nodes.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -989819,15 +989849,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Httprequest",
- "Venafitlsprotectcloud",
- "Webhook",
"Respondtowebhook",
+ "Webhook",
+ "Httprequest",
+ "Noop",
"Executeworkflow",
- "Noop"
+ "Slack",
+ "Venafitlsprotectcloud"
],
- "description": "Complex multi-step automation that orchestrates Slack, Httprequest, and Venafitlsprotectcloud for data processing. Uses 38 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Webhook, and Httprequest for data processing. Uses 38 nodes and integrates with 7 services.",
"steps": [
{
"name": "Close Modal Popup",
@@ -990724,11 +990754,11 @@
"triggerType": "Complex",
"integrations": [
"Wait",
+ "Airtop",
"Code",
- "Manual",
- "Airtop"
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Wait, Code, and Manual for data processing. Uses 14 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Wait, Airtop, and Code for data processing. Uses 14 nodes and integrates with 4 services.",
"steps": [
{
"name": "Take screenshot",
@@ -991749,18 +991779,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
+ "Manual",
"Linear",
- "Splitinbatches",
"Httprequest",
"Wait",
- "Aggregate",
- "Schedule",
"Filter",
- "Manual",
- "Googlesheets",
- "Googledrive"
+ "Googledrive",
+ "Splitinbatches",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Linear, Splitinbatches, and Httprequest for data processing. Uses 34 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Linear for data processing. Uses 34 nodes and integrates with 10 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -992594,13 +992624,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Httprequest",
- "Schedule",
- "Manual",
"Code",
- "Emailsend"
+ "Manual",
+ "Httprequest",
+ "Emailsend",
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Httprequest, Schedule, and Manual for data processing. Uses 6 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 6 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -993039,11 +993069,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
- "Html",
+ "Gmail",
"Error",
- "Gmail"
+ "Html"
],
- "description": "Complex multi-step automation that orchestrates Code, Html, and Error for data processing. Uses 13 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Gmail, and Error for data processing. Uses 13 nodes and integrates with 4 services.",
"steps": [
{
"name": "Error Trigger",
@@ -993520,16 +993550,16 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Splitinbatches",
"Httprequest",
- "Markdown",
- "Schedule",
- "Itemlists",
+ "Html",
+ "Thehive",
"Filter",
- "Thehive"
+ "Itemlists",
+ "Markdown",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Html, Splitinbatches, and Httprequest for data processing. Uses 15 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Httprequest, Html, and Thehive for data processing. Uses 15 nodes and integrates with 8 services.",
"steps": [
{
"name": "Every Monday",
@@ -994115,10 +994145,10 @@
"integrations": [
"Wait",
"Code",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Wait, Code, and Manual for data processing. Uses 15 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Wait, Code, and Httprequest for data processing. Uses 15 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -994643,15 +994673,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Aggregate",
- "Extractfromfile",
- "Converttofile",
- "Splitout",
"Code",
- "Googletranslate"
+ "Googletranslate",
+ "Form",
+ "Extractfromfile",
+ "Splitout",
+ "Converttofile",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Form, Aggregate, and Extractfromfile for data processing. Uses 15 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googletranslate, and Form for data processing. Uses 15 nodes and integrates with 7 services.",
"steps": [
{
"name": "Receive SRT File to Translate",
@@ -995367,14 +995397,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Mysql",
- "Comparedatasets",
- "Schedule",
- "Manual",
"Googlesheets",
- "Noop"
+ "Manual",
+ "Noop",
+ "Mysql",
+ "Schedule",
+ "Comparedatasets"
],
- "description": "Complex multi-step automation that orchestrates Mysql, Comparedatasets, and Schedule for data processing. Uses 15 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Noop for data processing. Uses 15 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -995595,11 +995625,11 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Webhook",
"Code",
+ "Webhook",
"Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Code, and Httprequest for data processing. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Code, Webhook, and Httprequest for data processing. Uses 4 nodes.",
"steps": [
{
"name": "Webhook",
@@ -995927,11 +995957,11 @@
"triggerType": "Manual",
"integrations": [
"Code",
- "Manual",
+ "Googlesheets",
"Airtop",
- "Googlesheets"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and Airtop for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Code, Googlesheets, and Airtop for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -997983,19 +998013,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "N8N",
- "Extractfromfile",
- "Executecommand",
"Code",
- "Webhook",
- "Converttofile",
+ "Readwritefile",
"Respondtowebhook",
- "Sort",
+ "Executecommand",
+ "Webhook",
+ "Extractfromfile",
+ "Html",
"Noop",
- "Readwritefile"
+ "Converttofile",
+ "N8N",
+ "Sort"
],
- "description": "Complex multi-step automation that orchestrates Html, N8N, and Extractfromfile for data processing. Uses 60 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Readwritefile, and Respondtowebhook for data processing. Uses 60 nodes and integrates with 11 services.",
"steps": [
{
"name": "Respond with markdown",
@@ -999858,13 +999888,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Httprequest",
- "Manual",
"Code",
- "Quickchart"
+ "Quickchart",
+ "Manual",
+ "Httprequest",
+ "Html"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Manual for data processing. Uses 38 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Quickchart, and Manual for data processing. Uses 38 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1000188,10 +1000218,10 @@
"integrations": [
"Crypto",
"Webhook",
- "Respondtowebhook",
- "Noop"
+ "Noop",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Crypto, Webhook, and Respondtowebhook for data processing. Uses 7 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Crypto, Webhook, and Noop for data processing. Uses 7 nodes and integrates with 4 services.",
"steps": [
{
"name": "200",
@@ -1000572,12 +1000602,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Httprequest",
+ "Googlesheets",
"Telegram",
"Gumroad",
- "Googlesheets"
+ "Httprequest"
],
- "description": "Webhook-triggered automation that orchestrates Httprequest, Telegram, and Gumroad for data processing. Uses 10 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Googlesheets, Telegram, and Gumroad for data processing. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "Gumroad Sale Trigger",
@@ -1001540,14 +1001570,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
+ "Googlesheets",
"Limit",
- "Httprequest",
- "Splitout",
"Manual",
- "Googlesheets"
+ "Httprequest",
+ "Html",
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Html, Limit, and Httprequest for data processing. Uses 20 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Limit, and Manual for data processing. Uses 20 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1002288,13 +1002318,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Manual",
"Httprequest",
- "Nocodb",
- "Converttofile",
"Splitout",
- "Manual"
+ "Converttofile",
+ "Nocodb"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Nocodb, and Converttofile for data processing. Uses 23 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Httprequest, and Splitout for data processing. Uses 23 nodes and integrates with 5 services.",
"steps": [
{
"name": "Manual Trigger",
@@ -1002938,13 +1002968,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Datetime",
- "Webhook",
+ "Code",
"Respondtowebhook",
- "Code"
+ "Webhook",
+ "Datetime",
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Datetime, and Webhook for data processing. Uses 20 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Webhook for data processing. Uses 20 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook",
@@ -1003890,14 +1003920,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Graphql",
- "Wait",
"Code",
- "Schedule",
"Googlesheets",
- "Noop"
+ "Noop",
+ "Wait",
+ "Graphql",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Graphql, Wait, and Code to synchronize data. Uses 25 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Noop to synchronize data. Uses 25 nodes and integrates with 6 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -1004557,13 +1004587,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Extractfromfile",
- "Schedule",
"Manual",
- "Googledrive"
+ "Extractfromfile",
+ "Googledrive",
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Extractfromfile, and Schedule for data processing. Uses 15 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Manual, Extractfromfile, and Googledrive for data processing. Uses 15 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1005052,10 +1005082,10 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that connects Manual and Httprequest for data processing. Uses 9 nodes.",
+ "description": "Manual workflow that connects Httprequest and Manual for data processing. Uses 9 nodes.",
"steps": [
{
"name": "Manual Execution",
@@ -1005651,13 +1005681,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Comparedatasets",
+ "Googlesheets",
"Postgres",
"Splitout",
"Schedule",
- "Googlesheets"
+ "Comparedatasets"
],
- "description": "Scheduled automation that orchestrates Comparedatasets, Postgres, and Splitout to synchronize data. Uses 10 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Googlesheets, Postgres, and Splitout to synchronize data. Uses 10 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -1006775,14 +1006805,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Form",
- "Splitinbatches",
"Httprequest",
"Wait",
"Converttofile",
- "Code"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Form, Splitinbatches, and Httprequest for data processing. Uses 33 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Httprequest for data processing. Uses 33 nodes and integrates with 6 services.",
"steps": [
{
"name": "Start",
@@ -1007471,14 +1007501,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Wait",
- "Manual",
- "Googlesheets",
- "Code"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Wait for data processing. Uses 13 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 13 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1007636,10 +1007666,10 @@
"triggerType": "Manual",
"integrations": [
"Googledrive",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Googledrive, Manual, and Httprequest for data processing. Uses 3 nodes.",
+ "description": "Manual workflow that orchestrates Googledrive, Httprequest, and Manual for data processing. Uses 3 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1009118,16 +1009148,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Youtube",
- "Splitinbatches",
+ "Code",
+ "Manual",
"Removeduplicates",
+ "Youtube",
"Httprequest",
"Wait",
- "Schedule",
- "Manual",
- "Code"
+ "Splitinbatches",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Youtube, Splitinbatches, and Removeduplicates for data processing. Uses 33 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Removeduplicates for data processing. Uses 33 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1009998,13 +1010028,13 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Httprequest",
- "Schedule",
- "Telegram",
"Googlesheets",
- "Noop"
+ "Telegram",
+ "Httprequest",
+ "Noop",
+ "Schedule"
],
- "description": "Scheduled automation that orchestrates Httprequest, Schedule, and Telegram for data processing. Uses 7 nodes and integrates with 5 services.",
+ "description": "Scheduled automation that orchestrates Googlesheets, Telegram, and Httprequest for data processing. Uses 7 nodes and integrates with 5 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -1011785,19 +1011815,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Supabase",
- "Splitinbatches",
- "Httprequest",
- "Aggregate",
- "Postgres",
- "Markdown",
- "Schedule",
"Respondtowebhook",
"Manual",
+ "Postgres",
+ "Wordpress",
+ "Httprequest",
+ "Supabase",
"Filter",
- "Wordpress"
+ "Markdown",
+ "Splitinbatches",
+ "Schedule",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Supabase, Splitinbatches, and Httprequest for data processing. Uses 53 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Manual, and Postgres for data processing. Uses 53 nodes and integrates with 11 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1012853,14 +1012883,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Form",
- "Httprequest",
- "Splitout",
- "Respondtowebhook",
"Code",
- "Wordpress"
+ "Form",
+ "Respondtowebhook",
+ "Httprequest",
+ "Wordpress",
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Form, Httprequest, and Splitout for data processing. Uses 37 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Form, and Respondtowebhook for data processing. Uses 37 nodes and integrates with 6 services.",
"steps": [
{
"name": "Form",
@@ -1014319,11 +1014349,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
- "Manual",
+ "Readwritefile",
"Httprequest",
- "Readwritefile"
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Manual, Httprequest, and Readwritefile for data processing. Uses 23 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Readwritefile, Httprequest, and Manual for data processing. Uses 23 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1014865,15 +1014895,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Slack",
+ "Code",
"Httprequest",
"Splitout",
- "Schedule",
+ "Emailsend",
"Filter",
- "Code",
- "Emailsend"
+ "Slack",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Slack, Httprequest, and Splitout for data processing. Uses 15 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Splitout for data processing. Uses 15 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule Market Scan",
@@ -1015624,13 +1015654,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Datetime",
- "Splitout",
+ "Code",
"Googlesheets",
- "Code"
+ "Datetime",
+ "Httprequest",
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Datetime, and Splitout for data processing. Uses 21 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Datetime for data processing. Uses 21 nodes and integrates with 5 services.",
"steps": [
{
"name": "When chat message received",
@@ -1016491,13 +1016521,13 @@
"triggerType": "Complex",
"integrations": [
"Emailreadimap",
- "Schedule",
"Manual",
- "Todoist",
+ "Noop",
"Gmail",
- "Noop"
+ "Todoist",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Emailreadimap, Schedule, and Manual for data processing. Uses 25 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Emailreadimap, Manual, and Noop for data processing. Uses 25 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1017512,12 +1017542,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Executeworkflow",
"Code",
+ "Executeworkflow",
"Httprequest",
"Noop"
],
- "description": "Complex multi-step automation that orchestrates Executeworkflow, Code, and Httprequest for data processing. Uses 23 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Executeworkflow, and Httprequest for data processing. Uses 23 nodes and integrates with 4 services.",
"steps": [
{
"name": "When chat message received",
@@ -1018038,13 +1018068,13 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Splitinbatches",
- "Httprequest",
+ "Googlesheets",
"Manual",
+ "Httprequest",
"Filter",
- "Googlesheets"
+ "Splitinbatches"
],
- "description": "Manual workflow that orchestrates Splitinbatches, Httprequest, and Manual for data processing. Uses 7 nodes and integrates with 5 services.",
+ "description": "Manual workflow that orchestrates Googlesheets, Manual, and Httprequest for data processing. Uses 7 nodes and integrates with 5 services.",
"steps": [
{
"name": "Filter",
@@ -1018959,10 +1018989,10 @@
"triggerType": "Manual",
"integrations": [
"Code",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and Httprequest for data processing. Uses 26 nodes.",
+ "description": "Manual workflow that orchestrates Code, Httprequest, and Manual for data processing. Uses 26 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1019398,11 +1019428,11 @@
"triggerType": "Webhook",
"integrations": [
"Code",
+ "Googlesheets",
"Webhook",
- "Googledrive",
- "Googlesheets"
+ "Googledrive"
],
- "description": "Webhook-triggered automation that orchestrates Code, Webhook, and Googledrive for data processing. Uses 10 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Googlesheets, and Webhook for data processing. Uses 10 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webhook",
@@ -1019731,12 +1019761,12 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Noop",
"Webhook",
+ "Graphql",
"Httprequest",
- "Graphql"
+ "Noop"
],
- "description": "Webhook-triggered automation that orchestrates Noop, Webhook, and Httprequest for data processing. Uses 9 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Graphql, and Httprequest for data processing. Uses 9 nodes and integrates with 4 services.",
"steps": [
{
"name": "Call from Baserow",
@@ -1020534,13 +1020564,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Splitout",
- "Manual",
"Googlesheets",
- "Noop"
+ "Manual",
+ "Httprequest",
+ "Noop",
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Splitout, and Manual for data processing. Uses 16 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Httprequest for data processing. Uses 16 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1020916,11 +1020946,11 @@
"triggerType": "Webhook",
"integrations": [
"Code",
- "Extractfromfile",
"Googledrive",
- "Converttofile"
+ "Converttofile",
+ "Extractfromfile"
],
- "description": "Webhook-triggered automation that orchestrates Code, Extractfromfile, and Googledrive for data processing. Uses 9 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Googledrive, and Converttofile for data processing. Uses 9 nodes and integrates with 4 services.",
"steps": [
{
"name": "Trigger: New file added to Google Drive Folder",
@@ -1021110,10 +1021140,10 @@
"triggerType": "Manual",
"integrations": [
"Spreadsheetfile",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Spreadsheetfile, Manual, and Httprequest for data processing. Uses 5 nodes.",
+ "description": "Manual workflow that orchestrates Spreadsheetfile, Httprequest, and Manual for data processing. Uses 5 nodes.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -1021565,13 +1021595,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Httprequest",
"Cal",
- "Splitout",
"Telegram",
- "Googlesheets"
+ "Googlesheets",
+ "Httprequest",
+ "Splitout"
],
- "description": "Webhook-triggered automation that orchestrates Httprequest, Cal, and Splitout for data processing. Uses 9 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Cal, Telegram, and Googlesheets for data processing. Uses 9 nodes and integrates with 5 services.",
"steps": [
{
"name": "on New Booking",
@@ -1022292,18 +1022322,18 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
"Limit",
- "Splitinbatches",
+ "Manual",
"Httprequest",
"Wait",
"Splitout",
- "Manual",
+ "Xml",
"Filter",
- "Code",
"Googledrive",
- "Xml"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Limit, Splitinbatches, and Httprequest for data processing. Uses 16 nodes and integrates with 10 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Limit, and Manual for data processing. Uses 16 nodes and integrates with 10 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1023007,11 +1023037,11 @@
"complexity": "high",
"triggerType": "Webhook",
"integrations": [
+ "Telegram",
"Form",
- "Aggregate",
- "Telegram"
+ "Aggregate"
],
- "description": "Webhook-triggered automation that orchestrates Form, Aggregate, and Telegram for data processing. Uses 22 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Telegram, Form, and Aggregate for data processing. Uses 22 nodes.",
"steps": [
{
"name": "On form submission",
@@ -1023413,13 +1023443,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Aggregate",
- "Splitout",
+ "Code",
"Manual",
- "Code"
+ "Httprequest",
+ "Splitout",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Aggregate, and Splitout for data processing. Uses 15 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 15 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1024326,14 +1024356,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
+ "Manual",
"Httprequest",
"Wait",
- "Schedule",
- "Manual",
- "Googlesheets",
- "Googledrive"
+ "Googledrive",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Schedule for data processing. Uses 17 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Httprequest for data processing. Uses 17 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1025430,15 +1025460,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Slack",
- "Httprequest",
- "Rssfeedread",
- "Schedule",
- "Googlesheets",
"Code",
- "Noop"
+ "Googlesheets",
+ "Httprequest",
+ "Noop",
+ "Slack",
+ "Schedule",
+ "Rssfeedread"
],
- "description": "Complex multi-step automation that orchestrates Slack, Httprequest, and Rssfeedread for monitoring and reporting. Uses 31 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Httprequest for monitoring and reporting. Uses 31 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -1025947,13 +1025977,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Httprequest",
- "Manual",
+ "Code",
"Googlesheets",
- "Code"
+ "Manual",
+ "Httprequest",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Httprequest, and Manual for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -1026406,13 +1026436,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "N8N",
- "Executeworkflow",
"Code",
+ "Noop",
"Gmail",
- "Noop"
+ "N8N",
+ "Executeworkflow"
],
- "description": "Complex multi-step automation that orchestrates N8N, Executeworkflow, and Code to update existing data. Uses 16 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Noop, and Gmail to update existing data. Uses 16 nodes and integrates with 5 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -1027353,15 +1027383,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Openai",
+ "Code",
"Httprequest",
+ "Html",
"Nocodb",
- "Schedule",
"Itemlists",
- "Code"
+ "Schedule",
+ "Openai"
],
- "description": "Complex multi-step automation that orchestrates Html, Openai, and Httprequest for data processing. Uses 36 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Html for data processing. Uses 36 nodes and integrates with 7 services.",
"steps": [
{
"name": "Schedule Trigger each week",
@@ -1028098,13 +1028128,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Extractfromfile",
"Googlesheets",
- "Googledrive",
- "Gmail"
+ "Extractfromfile",
+ "Httprequest",
+ "Gmail",
+ "Googledrive"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Extractfromfile, and Googlesheets for data processing. Uses 17 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Extractfromfile, and Httprequest for data processing. Uses 17 nodes and integrates with 5 services.",
"steps": [
{
"name": "Gmail Trigger1",
@@ -1028724,10 +1028754,10 @@
"triggerType": "Manual",
"integrations": [
"Wait",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Wait, Manual, and Httprequest for data processing. Uses 16 nodes.",
+ "description": "Manual workflow that orchestrates Wait, Httprequest, and Manual for data processing. Uses 16 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1030041,17 +1030071,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Slack",
- "Httprequest",
- "Webhook",
- "Postgres",
"Code",
"Manual",
+ "Webhook",
+ "Postgres",
+ "Httprequest",
+ "Html",
"Noop",
- "Gmail"
+ "Gmail",
+ "Slack"
],
- "description": "Complex multi-step automation that orchestrates Html, Slack, and Httprequest for data processing. Uses 43 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Webhook for data processing. Uses 43 nodes and integrates with 9 services.",
"steps": [
{
"name": "New /login event",
@@ -1031300,19 +1031330,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Xml",
- "Splitinbatches",
- "Aggregate",
- "Extractfromfile",
- "Compression",
- "Filter",
- "Googlesheets",
"Code",
- "Googledrive",
+ "Googlesheets",
+ "Compression",
+ "Extractfromfile",
+ "Noop",
"Gmail",
- "Noop"
+ "Xml",
+ "Filter",
+ "Googledrive",
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Xml, Splitinbatches, and Aggregate for data processing. Uses 23 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Compression for data processing. Uses 23 nodes and integrates with 11 services.",
"steps": [
{
"name": "On Email receipt",
@@ -1031820,12 +1031850,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Youtube",
"Code",
+ "Youtube",
"Splitinbatches",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Youtube, Code, and Splitinbatches for data processing. Uses 15 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Youtube, and Splitinbatches for data processing. Uses 15 nodes and integrates with 4 services.",
"steps": [
{
"name": "chat_message_received",
@@ -1032655,12 +1032685,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Reddit",
- "Manual",
+ "Googlesheets",
"Gmail",
- "Googlesheets"
+ "Reddit",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Reddit, Manual, and Gmail for data processing. Uses 22 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Gmail, and Reddit for data processing. Uses 22 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1033301,14 +1033331,14 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Slack",
- "Airtop",
- "Manual",
- "Filter",
+ "Code",
"Googlesheets",
- "Code"
+ "Manual",
+ "Airtop",
+ "Filter",
+ "Slack"
],
- "description": "Manual workflow that orchestrates Slack, Airtop, and Manual for monitoring and reporting. Uses 8 nodes and integrates with 6 services.",
+ "description": "Manual workflow that orchestrates Code, Googlesheets, and Manual for monitoring and reporting. Uses 8 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1033641,12 +1033671,12 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
- "Code",
- "Manual",
"Airtop",
- "Googlesheets"
+ "Googlesheets",
+ "Code",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and Airtop for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Airtop, Googlesheets, and Code for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1033956,14 +1033986,14 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Httprequest",
- "N8N",
- "Extractfromfile",
- "Splitout",
"Manual",
- "Github"
+ "Github",
+ "Extractfromfile",
+ "Httprequest",
+ "Splitout",
+ "N8N"
],
- "description": "Manual workflow that orchestrates Httprequest, N8N, and Extractfromfile for data processing. Uses 9 nodes and integrates with 6 services.",
+ "description": "Manual workflow that orchestrates Manual, Github, and Extractfromfile for data processing. Uses 9 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1034294,11 +1034324,11 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Httprequest",
"Extractfromfile",
- "Manual",
- "Httprequest"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Extractfromfile, Manual, and Httprequest to update existing data. Uses 9 nodes.",
+ "description": "Manual workflow that orchestrates Httprequest, Extractfromfile, and Manual to update existing data. Uses 9 nodes.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -1034881,13 +1034911,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
+ "Code",
"Httprequest",
"Wait",
"Executeworkflow",
- "Code"
+ "Stopanderror"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Httprequest, and Wait for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Httprequest, and Wait for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "in data",
@@ -1036209,15 +1036239,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Telegram",
"Httprequest",
"Linkedin",
- "Schedule",
+ "Airtable",
"Filter",
- "Telegram",
- "Code",
- "Airtable"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Linkedin, and Schedule for data processing. Uses 15 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Httprequest for data processing. Uses 15 nodes and integrates with 7 services.",
"steps": [
{
"name": "Morning 9 Clock",
@@ -1037114,14 +1037144,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Woocommerce",
- "Splitinbatches",
- "Manual",
- "Telegram",
+ "Code",
"Googlesheets",
- "Code"
+ "Telegram",
+ "Manual",
+ "Woocommerce",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Woocommerce, Splitinbatches, and Manual for data processing. Uses 16 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Telegram for data processing. Uses 16 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1037419,11 +1037449,11 @@
"triggerType": "Webhook",
"integrations": [
"Webhook",
- "Respondtowebhook",
"Extractfromfile",
- "Httprequest"
+ "Httprequest",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and Extractfromfile for data processing. Uses 9 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Extractfromfile, and Httprequest for data processing. Uses 9 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webhook",
@@ -1037654,14 +1037684,14 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
- "Splitinbatches",
+ "Code",
+ "Manual",
+ "Noop",
"Wait",
"N8Ntrainingcustomerdatastore",
- "Manual",
- "Code",
- "Noop"
+ "Splitinbatches"
],
- "description": "Manual workflow that orchestrates Splitinbatches, Wait, and N8Ntrainingcustomerdatastore for data processing. Uses 7 nodes and integrates with 6 services.",
+ "description": "Manual workflow that orchestrates Code, Manual, and Noop for data processing. Uses 7 nodes and integrates with 6 services.",
"steps": [
{
"name": "On clicking 'execute'",
@@ -1038223,15 +1038253,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "N8N",
+ "Code",
+ "Manual",
"Httprequest",
"Splitout",
- "Manual",
+ "N8N",
"Filter",
- "Code"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, N8N, and Httprequest for data processing. Uses 17 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 17 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1038647,10 +1038677,10 @@
"triggerType": "Manual",
"integrations": [
"Splitinbatches",
- "Manual",
- "Ftp"
+ "Ftp",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Splitinbatches, Manual, and Ftp for data processing. Uses 13 nodes.",
+ "description": "Manual workflow that orchestrates Splitinbatches, Ftp, and Manual for data processing. Uses 13 nodes.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1039145,15 +1039175,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Code",
+ "Googlesheets",
+ "Manual",
+ "Wordpress",
"Httprequest",
"Wait",
- "Schedule",
- "Manual",
- "Googlesheets",
- "Code",
- "Wordpress"
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Wait, and Schedule for data processing. Uses 17 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Manual for data processing. Uses 17 nodes and integrates with 7 services.",
"steps": [
{
"name": "1. Auto Start",
@@ -1039484,13 +1039514,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
"Code",
"Manual",
+ "Httprequest",
"Noop",
"Xml"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Code, and Manual for data processing. Uses 11 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Httprequest for data processing. Uses 11 nodes and integrates with 5 services.",
"steps": [
{
"name": "PrepareXML",
@@ -1040474,16 +1040504,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "N8Ntrainingcustomerdatastore",
- "Rssfeedread",
- "Schedule",
"Jira",
"Manual",
- "Filter",
"Noop",
- "Gmail"
+ "Gmail",
+ "N8Ntrainingcustomerdatastore",
+ "Filter",
+ "Schedule",
+ "Rssfeedread"
],
- "description": "Complex multi-step automation that orchestrates N8Ntrainingcustomerdatastore, Rssfeedread, and Schedule for monitoring and reporting. Uses 17 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Jira, Manual, and Noop for monitoring and reporting. Uses 17 nodes and integrates with 8 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -1040683,10 +1040713,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Stripe",
- "Httprequest"
+ "Httprequest",
+ "Stripe"
],
- "description": "Webhook-triggered automation that connects Stripe and Httprequest to synchronize data. Uses 3 nodes.",
+ "description": "Webhook-triggered automation that connects Httprequest and Stripe to synchronize data. Uses 3 nodes.",
"steps": [
{
"name": "Stripe Trigger on Payment Event",
@@ -1040918,10 +1040948,10 @@
"triggerType": "Webhook",
"integrations": [
"Webhook",
- "Respondtowebhook",
- "Whatsapp"
+ "Whatsapp",
+ "Respondtowebhook"
],
- "description": "Webhook-triggered automation that orchestrates Webhook, Respondtowebhook, and Whatsapp for data processing. Uses 8 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Webhook, Whatsapp, and Respondtowebhook for data processing. Uses 8 nodes.",
"steps": [
{
"name": "Verify",
@@ -1041542,16 +1041572,16 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Error",
- "Noop",
- "Postgres",
- "Manual",
- "Executeworkflow",
"Code",
- "Pushover",
- "Emailsend"
+ "Error",
+ "Manual",
+ "Postgres",
+ "Noop",
+ "Emailsend",
+ "Executeworkflow",
+ "Pushover"
],
- "description": "Complex multi-step automation that orchestrates Error, Noop, and Postgres for data processing. Uses 16 nodes and integrates with 8 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Error, and Manual for data processing. Uses 16 nodes and integrates with 8 services.",
"steps": [
{
"name": "Error Trigger",
@@ -1041992,14 +1042022,14 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
+ "Googlesheets",
"Form",
"Hunter",
"Discord",
- "Googlesheets",
"Noop",
"Gmail"
],
- "description": "Complex multi-step automation that orchestrates Form, Hunter, and Discord for data processing. Uses 12 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Form, and Hunter for data processing. Uses 12 nodes and integrates with 6 services.",
"steps": [
{
"name": "n8n Form Trigger",
@@ -1042320,12 +1042350,12 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Splitout",
"Googlesheets",
- "Manual",
"Httprequest",
- "Splitout"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Googlesheets, Manual, and Httprequest for data processing. Uses 5 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Splitout, Googlesheets, and Httprequest for data processing. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Trigger: Manual Test Run",
@@ -1042468,10 +1042498,10 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Googletasks",
- "Gmail"
+ "Gmail",
+ "Googletasks"
],
- "description": "Webhook-triggered automation that connects Googletasks and Gmail to create new records. Uses 4 nodes.",
+ "description": "Webhook-triggered automation that connects Gmail and Googletasks to create new records. Uses 4 nodes.",
"steps": [
{
"name": "Gmail Trigger",
@@ -1042985,12 +1043015,12 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Webhook",
- "Gmailtool",
"Googlecalendartool",
- "Httprequest"
+ "Webhook",
+ "Httprequest",
+ "Gmailtool"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Gmailtool, and Googlecalendartool for data processing. Uses 14 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Googlecalendartool, Webhook, and Httprequest for data processing. Uses 14 nodes and integrates with 4 services.",
"steps": [
{
"name": "Line Receiving",
@@ -1043204,10 +1043234,10 @@
"triggerType": "Manual",
"integrations": [
"Code",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and Httprequest for data processing. Uses 6 nodes.",
+ "description": "Manual workflow that orchestrates Code, Httprequest, and Manual for data processing. Uses 6 nodes.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -1044501,10 +1044531,10 @@
"triggerType": "Webhook",
"integrations": [
"Wait",
- "Manual",
- "Httprequest"
+ "Httprequest",
+ "Manual"
],
- "description": "Webhook-triggered automation that orchestrates Wait, Manual, and Httprequest for data processing. Uses 17 nodes.",
+ "description": "Webhook-triggered automation that orchestrates Wait, Httprequest, and Manual for data processing. Uses 17 nodes.",
"steps": [
{
"name": "Google Gemini Chat Model",
@@ -1045188,13 +1045218,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Aggregate",
+ "Code",
"Splitout",
- "Mondaycom",
"Executeworkflow",
- "Code"
+ "Aggregate",
+ "Mondaycom"
],
- "description": "Complex multi-step automation that orchestrates Aggregate, Splitout, and Mondaycom for data processing. Uses 26 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Splitout, and Executeworkflow for data processing. Uses 26 nodes and integrates with 5 services.",
"steps": [
{
"name": "Execute Workflow Trigger",
@@ -1046046,15 +1046076,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Webhook",
- "Extractfromfile",
- "Converttofile",
- "Respondtowebhook",
"Code",
- "Readwritefile"
+ "Readwritefile",
+ "Respondtowebhook",
+ "Webhook",
+ "Httprequest",
+ "Extractfromfile",
+ "Converttofile"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Webhook, and Extractfromfile for data processing. Uses 21 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Readwritefile, and Respondtowebhook for data processing. Uses 21 nodes and integrates with 7 services.",
"steps": [
{
"name": "Bitrix24 Handler",
@@ -1047284,19 +1047314,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Linkedin",
- "Wait",
- "Markdown",
- "Schedule",
- "Filter",
- "Telegram",
- "Twitter",
"Code",
+ "Telegram",
+ "Httprequest",
+ "Noop",
+ "Linkedin",
"Airtable",
- "Noop"
+ "Twitter",
+ "Wait",
+ "Filter",
+ "Markdown",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Linkedin, and Wait for data processing. Uses 26 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Httprequest for data processing. Uses 26 nodes and integrates with 11 services.",
"steps": [
{
"name": "Schedule Trigger",
@@ -1047879,13 +1047909,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Httprequest",
- "Webhook",
+ "Code",
"Respondtowebhook",
- "Code"
+ "Webhook",
+ "Httprequest",
+ "Html"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Webhook for data processing. Uses 15 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Respondtowebhook, and Webhook for data processing. Uses 15 nodes and integrates with 5 services.",
"steps": [
{
"name": "Webhook",
@@ -1048322,13 +1048352,13 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Graphql",
+ "Noop",
"Splitout",
- "Schedule",
"Baserow",
- "Noop"
+ "Graphql",
+ "Schedule"
],
- "description": "Complex multi-step automation that orchestrates Graphql, Splitout, and Schedule for data processing. Uses 12 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Noop, Splitout, and Baserow for data processing. Uses 12 nodes and integrates with 5 services.",
"steps": [
{
"name": "Every day at 00:00",
@@ -1048713,15 +1048743,15 @@
"complexity": "medium",
"triggerType": "Manual",
"integrations": [
+ "Googlesheets",
"Splitinbatches",
- "Spreadsheetfile",
- "Itemlists",
"Manual",
+ "Spreadsheetfile",
"Filter",
- "Readbinaryfiles",
- "Googlesheets"
+ "Itemlists",
+ "Readbinaryfiles"
],
- "description": "Manual workflow that orchestrates Splitinbatches, Spreadsheetfile, and Itemlists for data processing. Uses 9 nodes and integrates with 7 services.",
+ "description": "Manual workflow that orchestrates Googlesheets, Splitinbatches, and Manual for data processing. Uses 9 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -1049517,15 +1049547,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Postgres",
"Code",
- "Splitout",
"Manual",
+ "Postgres",
"Noop",
- "Gmail"
+ "Splitout",
+ "Gmail",
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Postgres, and Code for data processing. Uses 20 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Postgres for data processing. Uses 20 nodes and integrates with 7 services.",
"steps": [
{
"name": "Gmail Trigger",
@@ -1049854,12 +1049884,12 @@
"complexity": "low",
"triggerType": "Manual",
"integrations": [
+ "Splitout",
"Googlesheets",
- "Manual",
"Httprequest",
- "Splitout"
+ "Manual"
],
- "description": "Manual workflow that orchestrates Googlesheets, Manual, and Httprequest for data processing. Uses 4 nodes and integrates with 4 services.",
+ "description": "Manual workflow that orchestrates Splitout, Googlesheets, and Httprequest for data processing. Uses 4 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1050396,12 +1050426,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Splitout",
"Form",
"Aggregate",
- "Filter",
- "Splitout"
+ "Filter"
],
- "description": "Complex multi-step automation that orchestrates Form, Aggregate, and Filter for data processing. Uses 19 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Splitout, Form, and Aggregate for data processing. Uses 19 nodes and integrates with 4 services.",
"steps": [
{
"name": "Get Basic Information",
@@ -1050562,10 +1050592,10 @@
"triggerType": "Manual",
"integrations": [
"Code",
- "Manual",
- "N8N"
+ "N8N",
+ "Manual"
],
- "description": "Manual workflow that orchestrates Code, Manual, and N8N for data processing. Uses 4 nodes.",
+ "description": "Manual workflow that orchestrates Code, N8N, and Manual for data processing. Uses 4 nodes.",
"steps": [
{
"name": "When clicking \"Execute Workflow\"",
@@ -1051350,12 +1051380,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Extractfromfile",
- "Manual",
"Telegram",
- "Httprequest"
+ "Extractfromfile",
+ "Httprequest",
+ "Manual"
],
- "description": "Complex multi-step automation that orchestrates Extractfromfile, Manual, and Telegram for data processing. Uses 27 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Extractfromfile, and Httprequest for data processing. Uses 27 nodes and integrates with 4 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1052469,12 +1052499,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Extractfromfile",
"Code",
"Whatsapp",
+ "Extractfromfile",
"Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Extractfromfile, Code, and Whatsapp for data processing. Uses 32 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Whatsapp, and Extractfromfile for data processing. Uses 32 nodes and integrates with 4 services.",
"steps": [
{
"name": "WhatsApp Trigger",
@@ -1053768,21 +1053798,21 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Stopanderror",
- "Splitinbatches",
+ "Code",
+ "Microsoftoutlooktool",
+ "Zoom",
+ "Manual",
"Httprequest",
"Extractfromfile",
"Splitout",
- "Zoom",
- "Manual",
- "Filter",
+ "Emailsend",
"Executeworkflow",
- "Microsoftoutlooktool",
- "Code",
- "Clickup",
- "Emailsend"
+ "Filter",
+ "Splitinbatches",
+ "Stopanderror",
+ "Clickup"
],
- "description": "Complex multi-step automation that orchestrates Stopanderror, Splitinbatches, and Httprequest for data processing. Uses 24 nodes and integrates with 13 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Microsoftoutlooktool, and Zoom for data processing. Uses 24 nodes and integrates with 13 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1054087,12 +1054117,12 @@
"complexity": "low",
"triggerType": "Webhook",
"integrations": [
- "Odoo",
"Code",
- "Filter",
- "Shopify"
+ "Odoo",
+ "Shopify",
+ "Filter"
],
- "description": "Webhook-triggered automation that orchestrates Odoo, Code, and Filter to synchronize data. Uses 5 nodes and integrates with 4 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Odoo, and Shopify to synchronize data. Uses 5 nodes and integrates with 4 services.",
"steps": [
{
"name": "Shopify Trigger",
@@ -1054474,11 +1054504,11 @@
"triggerType": "Complex",
"integrations": [
"Code",
+ "Splitout",
"Converttofile",
- "Httprequest",
- "Splitout"
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Code, Converttofile, and Httprequest for data processing. Uses 12 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Splitout, and Converttofile for data processing. Uses 12 nodes and integrates with 4 services.",
"steps": [
{
"name": "When chat message received",
@@ -1055189,15 +1055219,15 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Youtube",
- "Splitinbatches",
- "Httprequest",
- "Postgres",
+ "Code",
"Manual",
+ "Postgres",
+ "Httprequest",
+ "Youtube",
"Executeworkflow",
- "Code"
+ "Splitinbatches"
],
- "description": "Complex multi-step automation that orchestrates Youtube, Splitinbatches, and Httprequest for data processing. Uses 21 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Manual, and Postgres for data processing. Uses 21 nodes and integrates with 7 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1055846,12 +1055876,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Webhook",
"Code",
- "Httprequest",
- "Googlesheets"
+ "Googlesheets",
+ "Webhook",
+ "Httprequest"
],
- "description": "Complex multi-step automation that orchestrates Webhook, Code, and Httprequest for data processing. Uses 17 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Webhook for data processing. Uses 17 nodes and integrates with 4 services.",
"steps": [
{
"name": "Webhook",
@@ -1056592,13 +1056622,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Splitinbatches",
- "Aggregate",
+ "Googlesheets",
"Summarize",
"Splitout",
- "Googlesheets"
+ "Splitinbatches",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Splitinbatches, Aggregate, and Summarize for data processing. Uses 21 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Summarize, and Splitout for data processing. Uses 21 nodes and integrates with 5 services.",
"steps": [
{
"name": "When chat message received",
@@ -1057245,9 +1057275,9 @@
"Form",
"Extractfromfile",
"Summarize",
+ "Noop",
"Converttofile",
- "Filter",
- "Noop"
+ "Filter"
],
"description": "Complex multi-step automation that orchestrates Form, Extractfromfile, and Summarize for data processing. Uses 23 nodes and integrates with 6 services.",
"steps": [
@@ -1057582,13 +1057612,13 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Slack",
- "Httprequest",
- "Markdown",
+ "Code",
"Pipedrive",
- "Code"
+ "Httprequest",
+ "Slack",
+ "Markdown"
],
- "description": "Webhook-triggered automation that orchestrates Slack, Httprequest, and Markdown for data processing. Uses 8 nodes and integrates with 5 services.",
+ "description": "Webhook-triggered automation that orchestrates Code, Pipedrive, and Httprequest for data processing. Uses 8 nodes and integrates with 5 services.",
"steps": [
{
"name": "Pipedrive Trigger - An Organization is created",
@@ -1057995,10 +1058025,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Googlecalendartool",
- "Executeworkflow"
+ "Executeworkflow",
+ "Googlecalendartool"
],
- "description": "Webhook-triggered automation that connects Googlecalendartool and Executeworkflow for data processing. Uses 10 nodes.",
+ "description": "Webhook-triggered automation that connects Executeworkflow and Googlecalendartool for data processing. Uses 10 nodes.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -1058328,10 +1058358,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Executeworkflow",
- "Airtabletool"
+ "Airtabletool",
+ "Executeworkflow"
],
- "description": "Webhook-triggered automation that connects Executeworkflow and Airtabletool for data processing. Uses 7 nodes.",
+ "description": "Webhook-triggered automation that connects Airtabletool and Executeworkflow for data processing. Uses 7 nodes.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -1058987,10 +1059017,10 @@
"complexity": "medium",
"triggerType": "Webhook",
"integrations": [
- "Gmailtool",
- "Executeworkflow"
+ "Executeworkflow",
+ "Gmailtool"
],
- "description": "Webhook-triggered automation that connects Gmailtool and Executeworkflow for data processing. Uses 12 nodes.",
+ "description": "Webhook-triggered automation that connects Executeworkflow and Gmailtool for data processing. Uses 12 nodes.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -1059357,15 +1059387,15 @@
"complexity": "medium",
"triggerType": "Complex",
"integrations": [
- "Youtube",
- "Webhook",
- "Summarize",
- "Splitout",
- "Respondtowebhook",
+ "Code",
"Telegram",
- "Code"
+ "Respondtowebhook",
+ "Webhook",
+ "Youtube",
+ "Summarize",
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Youtube, Webhook, and Summarize for data processing. Uses 12 nodes and integrates with 7 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Telegram, and Respondtowebhook for data processing. Uses 12 nodes and integrates with 7 services.",
"steps": [
{
"name": "Webhook",
@@ -1060159,14 +1060189,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Markdown",
- "Splitout",
+ "Googlesheets",
"Manual",
+ "Httprequest",
+ "Splitout",
"Executeworkflow",
- "Googlesheets"
+ "Markdown"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Markdown, and Splitout for data processing. Uses 29 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Googlesheets, Manual, and Httprequest for data processing. Uses 29 nodes and integrates with 6 services.",
"steps": [
{
"name": "When clicking ‘Test workflow’",
@@ -1060731,14 +1060761,14 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "Httprequest",
- "Wait",
- "Webhook",
"Respondtowebhook",
+ "Webhook",
+ "Httprequest",
+ "Html",
+ "Wait",
"Noop"
],
- "description": "Complex multi-step automation that orchestrates Html, Httprequest, and Wait for data processing. Uses 18 nodes and integrates with 6 services.",
+ "description": "Complex multi-step automation that orchestrates Respondtowebhook, Webhook, and Httprequest for data processing. Uses 18 nodes and integrates with 6 services.",
"steps": [
{
"name": "Respond to Webhook",
@@ -1061823,12 +1061853,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Googledocstool",
"Webhook",
"Telegram",
- "Googledocs"
+ "Googledocs",
+ "Googledocstool"
],
- "description": "Complex multi-step automation that orchestrates Googledocstool, Webhook, and Telegram for data processing. Uses 23 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Webhook, Telegram, and Googledocs for data processing. Uses 23 nodes and integrates with 4 services.",
"steps": [
{
"name": "Listen for Telegram Events",
@@ -1062165,12 +1062195,12 @@
"complexity": "medium",
"triggerType": "Scheduled",
"integrations": [
- "Html",
"Microsoftoutlook",
+ "Schedule",
"Httprequest",
- "Schedule"
+ "Html"
],
- "description": "Scheduled automation that orchestrates Html, Microsoftoutlook, and Httprequest for data processing. Uses 8 nodes and integrates with 4 services.",
+ "description": "Scheduled automation that orchestrates Microsoftoutlook, Schedule, and Httprequest for data processing. Uses 8 nodes and integrates with 4 services.",
"steps": [
{
"name": "Extract specific content",
@@ -1064192,19 +1064222,19 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Html",
- "N8N",
- "Extractfromfile",
- "Executecommand",
"Code",
- "Webhook",
- "Converttofile",
+ "Readwritefile",
"Respondtowebhook",
- "Sort",
+ "Executecommand",
+ "Webhook",
+ "Extractfromfile",
+ "Html",
"Noop",
- "Readwritefile"
+ "Converttofile",
+ "N8N",
+ "Sort"
],
- "description": "Complex multi-step automation that orchestrates Html, N8N, and Extractfromfile for data processing. Uses 60 nodes and integrates with 11 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Readwritefile, and Respondtowebhook for data processing. Uses 60 nodes and integrates with 11 services.",
"steps": [
{
"name": "Respond with markdown",
@@ -1065750,17 +1065780,17 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
+ "Readwritefile",
"Limit",
"Httprequest",
- "Aggregate",
- "Converttofile",
"Splitout",
- "Filter",
+ "Converttofile",
"Executeworkflow",
+ "Filter",
"Sort",
- "Readwritefile"
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Limit, Httprequest, and Aggregate for data processing. Uses 43 nodes and integrates with 9 services.",
+ "description": "Complex multi-step automation that orchestrates Readwritefile, Limit, and Httprequest for data processing. Uses 43 nodes and integrates with 9 services.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -1066553,13 +1066583,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Datetime",
- "Splitout",
+ "Code",
"Googlesheets",
- "Code"
+ "Datetime",
+ "Httprequest",
+ "Splitout"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Datetime, and Splitout for data processing. Uses 21 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Code, Googlesheets, and Datetime for data processing. Uses 21 nodes and integrates with 5 services.",
"steps": [
{
"name": "When chat message received",
@@ -1067850,13 +1067880,13 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Httprequest",
- "Extractfromfile",
+ "Telegram",
"Webhook",
- "Converttofile",
- "Telegram"
+ "Extractfromfile",
+ "Httprequest",
+ "Converttofile"
],
- "description": "Complex multi-step automation that orchestrates Httprequest, Extractfromfile, and Webhook for data processing. Uses 39 nodes and integrates with 5 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Webhook, and Extractfromfile for data processing. Uses 39 nodes and integrates with 5 services.",
"steps": [
{
"name": "Listen for Telegram Events",
@@ -1069284,21 +1069314,21 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Limit",
- "Httprequest",
- "Aggregate",
- "Markdown",
- "Converttofile",
- "Splitout",
- "Schedule",
+ "Readwritefile",
"Telegram",
- "Executeworkflow",
- "Sort",
- "Googledrive",
+ "Schedule",
+ "Limit",
+ "Markdown",
+ "Httprequest",
+ "Splitout",
"Gmail",
- "Readwritefile"
+ "Converttofile",
+ "Executeworkflow",
+ "Googledrive",
+ "Sort",
+ "Aggregate"
],
- "description": "Complex multi-step automation that orchestrates Limit, Httprequest, and Aggregate for data processing. Uses 49 nodes and integrates with 13 services.",
+ "description": "Complex multi-step automation that orchestrates Readwritefile, Telegram, and Schedule for data processing. Uses 49 nodes and integrates with 13 services.",
"steps": [
{
"name": "When Executed by Another Workflow",
@@ -1069946,12 +1069976,12 @@
"complexity": "high",
"triggerType": "Complex",
"integrations": [
- "Googledocstool",
- "Aggregate",
"Telegram",
- "Googledocs"
+ "Aggregate",
+ "Googledocs",
+ "Googledocstool"
],
- "description": "Complex multi-step automation that orchestrates Googledocstool, Aggregate, and Telegram for data processing. Uses 21 nodes and integrates with 4 services.",
+ "description": "Complex multi-step automation that orchestrates Telegram, Aggregate, and Googledocs for data processing. Uses 21 nodes and integrates with 4 services.",
"steps": [
{
"name": "When chat message received",
@@ -1070023,338 +1070053,338 @@
},
"total_nodes": 29445,
"integrations": [
- "Profitwell",
- "Securityscorecard",
- "Bannerbear",
- "Activecampaign",
- "Coingecko",
- "Webhook",
- "Deepl",
- "Schedule",
- "Keap",
- "Tapfiliate",
- "Cratedb",
- "Peekalink",
- "Stopanderror",
- "Linear",
- "Filemaker",
- "Twilio",
- "Awslambda",
- "Supabase",
- "Salesforce",
- "Reddit",
- "Clockify",
- "Vero",
- "Wait",
- "Executecommand",
- "Localfile",
- "Googlesheets",
- "Googledrive",
- "Posthog",
- "Emailreadimap",
- "Splitinbatches",
- "Sort",
- "Microsoftteams",
- "Error",
- "Snowflake",
- "Mocean",
- "Sentryio",
- "Microsoftsql",
- "Jira",
- "Awss3",
- "Thehive",
- "Onfleet",
- "Googletranslate",
- "Executecommandtool",
- "Messagebird",
- "Ssh",
- "Code",
- "Mattermost",
- "Mailchimp",
- "Youtube",
- "Gsuiteadmin",
- "Summarize",
- "Executeworkflow",
- "Ghost",
- "Bitly",
- "Workflow",
- "Typeform",
- "Todoist",
- "Airtabletool",
- "N8Ntrainingcustomerdatastore",
- "Start",
- "Notiontool",
- "Googlebooks",
- "Interval",
- "Rocketchat",
- "Freshdesk",
- "Readwritefile",
- "Form",
- "Zoom",
- "Thehiveproject",
- "Movebinarydata",
- "Mandrill",
- "Twitter",
- "Git",
- "Urlscanio",
- "Mondaycom",
- "Twist",
- "Gmailtool",
- "Openthesaurus",
- "Taiga",
- "Mailjet",
- "Coda",
- "Jiratool",
- "Questdb",
- "Clickup",
- "Nocodb",
- "Facebook",
- "Mailerlite",
- "Redis",
- "Airtable",
- "Googleanalyticstool",
- "Aitransform",
- "Wordpresstool",
- "Postgrestool",
- "Telegram",
- "Telegramtool",
- "Acuityscheduling",
- "Signl4",
- "Bitbucket",
- "Invoiceninja",
- "Kafka",
- "Drift",
- "Copper",
- "Flow",
- "Postgres",
- "Cockpit",
- "Awsses",
- "Sse",
- "Orbit",
- "Googlefirebasecloudfirestore",
- "Graphql",
- "Googledrivetool",
- "Supabasetool",
- "Datetime",
- "Googlesheetstool",
- "Circleci",
- "Dropcontact",
- "Zendesk",
- "Strava",
- "Aggregate",
- "Mongodbtool",
- "Splitout",
- "Surveymonkey",
- "Sendinblue",
- "Rundeck",
- "Googleslides",
- "Webflow",
- "Pagerduty",
- "Netlify",
- "Debughelper",
- "Salesmate",
- "Iterable",
- "Stripe",
- "N8Ntrainingcustomermessenger",
- "Rssfeedread",
- "Hackernews",
- "Googlecloudnaturallanguage",
- "Venafitlsprotectcloud",
- "Grist",
- "Googlecontacts",
- "Amqp",
- "Discord",
- "Mongodb",
- "Emelia",
- "Demio",
- "Homeassistant",
- "Raindrop",
- "Noop",
- "Pushcut",
- "Functionitem",
- "Lemlist",
- "S3",
- "Intercom",
- "Postmark",
- "Uproc",
- "Gitlab",
- "Dropbox",
"Philipshue",
- "Automizy",
- "Googledocstool",
- "Line",
- "Facebookleadads",
- "Googlebigquery",
- "Github",
- "Gumroad",
- "Extractfromfile",
- "Markdown",
- "Httprequesttool",
- "Gotowebinar",
- "Humanticai",
- "Gotify",
- "Postbin",
- "Totp",
- "Msg91",
- "Respondtowebhook",
- "Emailsendtool",
- "Cron",
- "Xml",
- "Hunter",
- "Zohocrm",
- "Microsofttodo",
- "Affinity",
- "Microsoftoutlook",
- "Linkedin",
- "Onesimpleapi",
- "Quickbooks",
- "Googleanalytics",
- "Paddle",
- "Box",
- "Storyblok",
"Twake",
- "Hubspot",
- "Itemlists",
- "Airtoptool",
- "Mysql",
- "Harvest",
- "Zammad",
- "Matrix",
- "Brandfetch",
- "Quickchart",
- "Editimage",
- "Apitemplateio",
- "Googlechat",
- "Ical",
- "Readbinaryfile",
- "Htmlextract",
- "Asana",
- "Phantombuster",
- "Sms77",
- "Segment",
- "Pushover",
- "Shopify",
- "Comparedatasets",
- "Unleashedsoftware",
- "Ftp",
- "Writebinaryfile",
- "Uplead",
- "N8N",
- "Airtop",
- "Medium",
- "Elasticsearch",
- "Yourls",
- "Bamboohr",
- "Clearbit",
- "Awstextract",
- "Calendly",
- "Chargebee",
- "Microsoftonedrive",
- "Disqus",
- "Openweathermaptool",
- "Cortex",
- "Readbinaryfiles",
- "Gong",
- "Figma",
- "Discordtool",
- "Rabbitmq",
- "Microsoftoutlooktool",
- "Nasa",
- "Awssqs",
- "Slack",
- "Httprequest",
- "Googledocs",
- "Cal",
- "Plivo",
- "Wufoo",
- "Awssns",
- "Gmail",
- "Discourse",
- "Compression",
- "Spotify",
- "Convertkit",
- "Erpnext",
- "Removeduplicates",
- "Googlecalendartool",
- "Renamekeys",
- "Mysqltool",
- "Mailgun",
- "Lingvanex",
- "Html",
- "Vonage",
- "Awscomprehend",
- "Trello",
- "Egoi",
- "Woocommercetool",
- "Spontit",
- "Wordpress",
- "Wise",
- "Converttofile",
- "Bitwarden",
- "Awstranscribe",
- "Redistool",
- "Pushbullet",
- "Emailsend",
- "Mindee",
+ "Pagerduty",
"Sendgrid",
+ "Nextcloud",
+ "Uproc",
+ "Asana",
+ "Interval",
+ "Html",
+ "Posthog",
+ "Discordtool",
+ "Microsoftteams",
+ "Writebinaryfile",
+ "Emailreadimap",
+ "Form",
+ "Reddit",
+ "Harvest",
+ "Pushbullet",
+ "Amqp",
+ "Sendy",
+ "Segment",
+ "Baserowtool",
+ "Egoi",
+ "Elasticsearch",
+ "Notion",
+ "Sendinblue",
+ "Agilecrm",
+ "Emelia",
+ "Rundeck",
+ "Peekalink",
+ "Postbin",
+ "Wordpress",
+ "Salesmate",
+ "Mqtt",
+ "Sms77",
+ "Bitwarden",
+ "Googletasks",
+ "Movebinarydata",
+ "Twitter",
+ "Freshdesk",
+ "Strava",
+ "Storyblok",
+ "Nasa",
+ "Linear",
+ "Bannerbear",
+ "Bitly",
+ "Googlecloudnaturallanguage",
+ "Phantombuster",
+ "Ghost",
+ "Wise",
+ "Venafitlsprotectcloud",
+ "Mailcheck",
+ "Copper",
+ "Openthesaurus",
+ "Lingvanex",
+ "Wekan",
+ "Googletaskstool",
+ "Notiontool",
+ "Brandfetch",
+ "Orbit",
+ "Salesforce",
+ "Gong",
+ "Gsuiteadmin",
+ "Googleanalyticstool",
+ "Awslambda",
+ "Googledocstool",
+ "Eventbrite",
+ "Markdown",
+ "Uptimerobot",
+ "Nocodb",
+ "Googledocs",
+ "Functionitem",
+ "Gotowebinar",
+ "Openweathermap",
+ "Highlevel",
+ "Thehive",
+ "Matrix",
+ "Medium",
+ "Splitout",
+ "Gmail",
+ "Jiratool",
+ "Sse",
+ "Mailgun",
+ "Securityscorecard",
+ "Error",
+ "Httprequest",
+ "Hackernews",
+ "Rssfeedread",
+ "Helpscout",
+ "Aitransform",
+ "Summarize",
+ "Airtable",
+ "Dropcontact",
+ "Intercom",
+ "Hunter",
+ "Wufoo",
+ "Googlecloudstorage",
+ "Mondaycom",
+ "Homeassistant",
+ "Googlecontacts",
"Customerio",
"Zulip",
- "Mqtt",
- "Timescaledb",
+ "Emailsend",
+ "Graphql",
+ "Googlefirebasecloudfirestore",
+ "Gumroad",
+ "Kafka",
+ "Taiga",
+ "Convertkit",
"Googleperspective",
- "Stackby",
- "Quickbase",
- "Baserow",
- "Googlecalendar",
- "Limit",
- "Eventbrite",
- "Spreadsheetfile",
- "Helpscout",
- "Baserowtool",
+ "Coingecko",
+ "Youtube",
"Woocommerce",
- "Dhl",
- "Openweathermap",
- "Pipedrive",
- "Twittertool",
- "Strapi",
- "Xero",
- "Mautic",
- "Awsrekognition",
- "Contentful",
- "Beeminder",
- "Highlevel",
- "Openai",
- "Nextcloud",
- "Sendy",
- "Paypal",
- "Uptimerobot",
- "Wekan",
- "Googlecloudstorage",
- "Readpdf",
- "Googletasks",
- "Odoo",
- "Facebookgraphapi",
- "Crypto",
- "Getresponse",
- "Agilecrm",
- "Travisci",
- "Servicenow",
- "Jotform",
- "Manual",
- "Whatsapp",
- "Googlefirebaserealtimedatabase",
+ "Itemlists",
+ "Htmlextract",
+ "Clearbit",
"Microsoftexcel",
- "Notion",
- "Mailcheck",
- "Autopilot",
+ "Strapi",
+ "Awsrekognition",
+ "Ssh",
+ "Keap",
+ "Coda",
+ "Twist",
+ "Facebookleadads",
+ "Acuityscheduling",
+ "Getresponse",
"Executiondata",
- "Toggl",
+ "Rocketchat",
+ "Mindee",
+ "Onesimpleapi",
+ "Discourse",
+ "Stripe",
+ "Servicenow",
+ "Paddle",
+ "Facebook",
+ "Telegram",
+ "Renamekeys",
+ "Mysqltool",
+ "Executecommand",
+ "Clockify",
+ "Autopilot",
+ "Mailjet",
+ "Signl4",
+ "Contentful",
+ "Debughelper",
+ "Humanticai",
+ "Typeform",
+ "Mailchimp",
+ "Postgrestool",
+ "Iterable",
+ "Ical",
+ "Airtop",
+ "Googlefirebaserealtimedatabase",
+ "Workflow",
+ "Cortex",
+ "Pipedrive",
+ "Msg91",
+ "Plivo",
+ "Todoist",
+ "Pushover",
+ "Chargebee",
+ "Uplead",
+ "Mocean",
+ "Comparedatasets",
+ "Figma",
+ "Affinity",
+ "Googleanalytics",
+ "Microsoftoutlook",
+ "Ftp",
+ "Git",
+ "Urlscanio",
+ "Jira",
+ "Awsses",
+ "Respondtowebhook",
+ "Discord",
+ "Microsofttodo",
+ "Mandrill",
+ "Gotify",
+ "Totp",
+ "Stopanderror",
+ "Cal",
+ "Bamboohr",
+ "Googlecalendartool",
+ "Snowflake",
+ "Onfleet",
+ "Activecampaign",
+ "Deepl",
+ "Twilio",
+ "Googlesheetstool",
+ "Telegramtool",
+ "Manual",
+ "Awssns",
+ "Googletranslate",
+ "Odoo",
+ "Disqus",
+ "Xero",
+ "Mysql",
+ "Cratedb",
+ "Microsoftoutlooktool",
+ "Openweathermaptool",
+ "Profitwell",
+ "Editimage",
+ "S3",
+ "Aggregate",
+ "Webflow",
+ "Zendesk",
+ "Drift",
+ "Paypal",
+ "Calendly",
+ "Spreadsheetfile",
+ "Supabasetool",
+ "Rabbitmq",
+ "Lemlist",
+ "Googledrive",
+ "Readbinaryfiles",
+ "Whatsapp",
+ "Gmailtool",
+ "Spotify",
+ "Sort",
+ "Redis",
+ "Shopify",
+ "Flow",
+ "Googlebigquery",
+ "Openai",
+ "Start",
+ "Timescaledb",
+ "Erpnext",
+ "Code",
+ "Quickbooks",
+ "Beeminder",
+ "Noop",
+ "Woocommercetool",
+ "Readbinaryfile",
+ "Circleci",
+ "Googledrivetool",
+ "Localfile",
+ "Zammad",
+ "Webhook",
+ "Github",
+ "Zohocrm",
+ "Datetime",
+ "Extractfromfile",
+ "Mongodbtool",
+ "Netlify",
+ "Awssqs",
+ "Awstranscribe",
+ "N8Ntrainingcustomermessenger",
+ "Stackby",
+ "Supabase",
"Filter",
- "Googletaskstool"
+ "Mailerlite",
+ "Limit",
+ "Microsoftsql",
+ "Demio",
+ "N8N",
+ "Sentryio",
+ "Linkedin",
+ "Line",
+ "Redistool",
+ "Zoom",
+ "Apitemplateio",
+ "Quickbase",
+ "Xml",
+ "N8Ntrainingcustomerdatastore",
+ "Slack",
+ "Clickup",
+ "Readpdf",
+ "Readwritefile",
+ "Googlecalendar",
+ "Hubspot",
+ "Yourls",
+ "Automizy",
+ "Airtoptool",
+ "Executeworkflow",
+ "Spontit",
+ "Vonage",
+ "Surveymonkey",
+ "Grist",
+ "Googlesheets",
+ "Postgres",
+ "Cockpit",
+ "Raindrop",
+ "Messagebird",
+ "Executecommandtool",
+ "Filemaker",
+ "Dropbox",
+ "Thehiveproject",
+ "Httprequesttool",
+ "Invoiceninja",
+ "Toggl",
+ "Mautic",
+ "Jotform",
+ "Cron",
+ "Microsoftonedrive",
+ "Gitlab",
+ "Googlechat",
+ "Removeduplicates",
+ "Googlebooks",
+ "Converttofile",
+ "Schedule",
+ "Quickchart",
+ "Compression",
+ "Box",
+ "Tapfiliate",
+ "Dhl",
+ "Travisci",
+ "Crypto",
+ "Pushcut",
+ "Mattermost",
+ "Awss3",
+ "Facebookgraphapi",
+ "Unleashedsoftware",
+ "Splitinbatches",
+ "Awscomprehend",
+ "Vero",
+ "Wait",
+ "Googleslides",
+ "Emailsendtool",
+ "Airtabletool",
+ "Postmark",
+ "Awstextract",
+ "Twittertool",
+ "Bitbucket",
+ "Mongodb",
+ "Trello",
+ "Wordpresstool",
+ "Questdb",
+ "Baserow"
],
"unique_integrations": 328
},
- "timestamp": "2025-06-16T19:12:22.005235"
+ "timestamp": "2025-06-16T19:25:37.818186"
};
class WorkflowDocumentation {
@@ -1070479,7 +1070509,8 @@