{ "meta": { "instanceId": "workflow-65aaa15f", "versionId": "1.0.0", "createdAt": "2025-09-29T07:07:58.960414", "updatedAt": "2025-09-29T07:07:58.960425", "owner": "n8n-user", "license": "MIT", "category": "automation", "status": "active", "priority": "high", "environment": "production" }, "nodes": [ { "id": "ce73f49d-96f8-4a9f-a8f0-48c00da00ac7", "name": "Sticky Note9", "type": "n8n-nodes-base.stickyNote", "position": [ -80, -40 ], "parameters": { "color": 4, "width": 1280, "height": 480, "content": "=======================================\n WORKFLOW ASSISTANCE\n=======================================\nScrape Indeed Job Listings for Hiring Signals Using Bright Data and LLMs\n\nFor any questions or support, please contact:\n Yaron@nofluff.online\n\nExplore more tips and tutorials here:\n - YouTube: {{ $env.WEBHOOK_URL }}\n - LinkedIn: {{ $env.WEBHOOK_URL }}\n=======================================\nBright Data Docs: {{ $env.WEBHOOK_URL }}\n\n*Important*\nMake Sure To Add Your API Keys to the HTTTP REQUESTS NODES (BRIGHT DATA API), GOOGLE RELATED NODES AND LLM NODE" }, "typeVersion": 1, "notes": "This stickyNote node performs automated tasks as part of the workflow." }, { "id": "a06fbae2-1ea3-4b9d-8b7b-e4ec775d1a53", "name": "Snapshot Progress", "type": "n8n-nodes-base.httpRequest", "position": [ 2520, 380 ], "parameters": { "url": "{{ $env.BASE_URL }}", "options": {}, "sendHeaders": true, "headerParameters": { "parameters": [ { "name": "Authorization", "value": "Bearer " } ] } }, "typeVersion": 4.2, "notes": "This httpRequest node performs automated tasks as part of the workflow." }, { "id": "bb369578-eb82-4ca1-8513-92743f572c82", "name": "Sticky Note10", "type": "n8n-nodes-base.stickyNote", "position": [ 3580, 160 ], "parameters": { "width": 195, "height": 646, "content": "In this workflow, I use Google Sheets to store the results. \n\nYou can use my template to get started faster:\n\n1. [Click on this link to get the template]({{ $env.WEBHOOK_URL }}\n2. Make a copy of the Sheets\n3. Add the URL to this node \n\n\n" }, "typeVersion": 1, "notes": "This stickyNote node performs automated tasks as part of the workflow." }, { "id": "9c356e04-7a0c-4e5f-93a4-0c62d6e91a34", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [ 1220, -40 ], "parameters": { "width": 480, "height": 2240, "content": "# πŸ” Indeed Jobs API – Parameter Guide\nUse this object to query Indeed job listings In Bright Data Web Scraper API. \nEach field lets you filter results based on different criteria.\n```json\n{\n \"country\": \"US\",\n \"domain\": \"indeed.com\",\n \"keyword_search\": \"Software Engineer\",\n \"location\": \"Austin, TX\",\n \"date_posted\": \"Last 7 days\",\n \"posted_by\": \"Microsoft\",\n \"pay\": 85000\n}\n```\n\n## 🧾 Field Explanations & Valid Options\n\n### 🌍 country\n**Required**\nCountry of the job, use 2-letter ISO code.\nβœ… Example: \"US\", \"FR\", \"DE\"\n\n### 🌐 domain\n**Required**\nThe Indeed domain you want to collect from.\nβœ… Example: \"indeed.com\", \"fr.indeed.com\"\n\n### 🧠 keyword_search\n**Required**\nSearch jobs by job title or company.\nβœ… Example: \"Data Scientist\", \"Marketing Manager\"\n\n### πŸ—ΊοΈ location\n**Required**\nEnter specific job location you want to discover.\nβœ… Example: \"New York\", \"London\"\n\n### ⏱️ date_posted\nFilter jobs by posting date.\nAccepted values:\n- Last 24 hours\n- Last 3 days\n- Last 7 days\n- Last 14 days\n\nβœ… Example: \"Last 7 days\"\n\n### πŸ‘” posted_by\nFilter jobs by posting entity or recruiter.\nβœ… Example: \"Company name\", \"Recruiter name\"\n\n### πŸ’° pay\nFilter jobs by salary or pay rate.\nUse numerical values only.\nβœ… Example: 50000, 75000\n\n## βœ… Full Example\n```json\n{\n \"country\": \"US\",\n \"domain\": \"indeed.com\",\n \"keyword_search\": \"Software Developer\",\n \"location\": \"San Francisco\",\n \"date_posted\": \"Last 3 days\",\n \"posted_by\": \"Microsoft\",\n \"pay\": 85000\n}\n```" }, "typeVersion": 1, "notes": "This stickyNote node performs automated tasks as part of the workflow." }, { "id": "723655d5-1878-4f8f-92d8-82f7d884cc7a", "name": "On form submission - Discover Jobs", "type": "n8n-nodes-base.formTrigger", "position": [ 1600, 600 ], "webhookId": "8d0269c7-d1fc-45a1-a411-19634a1e0b82", "parameters": { "options": {}, "formTitle": "Linkedin High Intent Prospects And Job Post Hunt", "formFields": { "values": [ { "fieldLabel": "Job Location", "placeholder": "example: new york", "requiredField": true }, { "fieldLabel": "Keyword", "placeholder": "example: CMO, AI architect", "requiredField": true }, { "fieldLabel": "Country (2 letters)", "placeholder": "example: US,UK,IL", "requiredField": true } ] }, "formDescription": "This form lets you customize your job search / prospecting by choosing:\n\nLocation (city or region)\n\nJob title or keywords\n\nCountry code\n" }, "typeVersion": 2.2, "notes": "This formTrigger node performs automated tasks as part of the workflow." }, { "id": "46470e2b-a702-4f23-871d-6993a344410c", "name": "HTTP Request- Post API call to Bright Data", "type": "n8n-nodes-base.httpRequest", "position": [ 1940, 640 ], "parameters": { "url": "{{ $env.API_BASE_URL }}", "method": "POST", "options": {}, "jsonBody": "=[\n {\n \"country\": \"{{ $json['Country (2 letters)'] }}\",\n \"domain\": \"indeed.com\",\n \"keyword_search\": \"{{ $json.Keyword }}\",\n \"location\": \"{{ $json['Job Location'] }}\",\n \"date_posted\": \"Last 24 hours\",\n \"posted_by\": \"\"\n }\n]", "sendBody": true, "sendQuery": true, "sendHeaders": true, "specifyBody": "json", "queryParameters": { "parameters": [ { "name": "dataset_id", "value": "gd_l4dx9j9sscpvs7no2" }, { "name": "include_errors", "value": "true" }, { "name": "type", "value": "discover_new" }, { "name": "discover_by", "value": "keyword" }, { "name": "uncompressed_webhook", "value": "true" }, { "name": "type", "value": "discover_new" }, { "name": "discover_by", "value": "=keyword" } ] }, "headerParameters": { "parameters": [ { "name": "Authorization", "value": "Bearer " } ] } }, "typeVersion": 4.2, "notes": "This httpRequest node performs automated tasks as part of the workflow." }, { "id": "651be52b-9649-47ca-b07b-67012ef18397", "name": "Wait - Polling Bright Data", "type": "n8n-nodes-base.wait", "position": [ 2280, 380 ], "webhookId": "8005a2b3-2195-479e-badb-d90e4240e699", "parameters": { "unit": "minutes", "amount": 1 }, "executeOnce": false, "typeVersion": 1.1, "notes": "This wait node performs automated tasks as part of the workflow." }, { "id": "5fdfe171-8597-44c7-9600-afff9296626b", "name": "If - Checking status of Snapshot - if data is ready or not", "type": "n8n-nodes-base.if", "position": [ 2720, 380 ], "parameters": { "options": {}, "conditions": { "options": { "version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict" }, "combinator": "and", "conditions": [ { "id": "7932282b-71bb-4bbb-ab73-4978e554de7e", "operator": { "name": "filter.operator.equals", "type": "string", "operation": "equals" }, "leftValue": "={{ $json.status }}", "rightValue": "running" } ] } }, "typeVersion": 2.2, "notes": "This if node performs automated tasks as part of the workflow." }, { "id": "c618eb47-ab85-4dcc-a609-73a824d97f00", "name": "HTTP Request - Getting data from Bright Data", "type": "n8n-nodes-base.httpRequest", "position": [ 3000, 400 ], "parameters": { "url": "{{ $env.BASE_URL }}", "options": {}, "sendQuery": true, "sendHeaders": true, "queryParameters": { "parameters": [ { "name": "format", "value": "json" } ] }, "headerParameters": { "parameters": [ { "name": "Authorization", "value": "Bearer " } ] } }, "typeVersion": 4.2, "notes": "This httpRequest node performs automated tasks as part of the workflow." }, { "id": "717fc332-0679-42b0-8481-1320577856c6", "name": "Google Sheets - Adding All Job Posts", "type": "n8n-nodes-base.googleSheets", "position": [ 3620, 460 ], "parameters": { "columns": { "value": {}, "schema": [ { "id": "jobid", "type": "string", "display": true, "required": false, "displayName": "jobid", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "company_name", "type": "string", "display": true, "required": false, "displayName": "company_name", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "date_posted_parsed", "type": "string", "display": true, "required": false, "displayName": "date_posted_parsed", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "job_title", "type": "string", "display": true, "required": false, "displayName": "job_title", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "description_text", "type": "string", "display": true, "required": false, "displayName": "description_text", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "benefits", "type": "string", "display": true, "required": false, "displayName": "benefits", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "job_type", "type": "string", "display": true, "required": false, "displayName": "job_type", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "location", "type": "string", "display": true, "required": false, "displayName": "location", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "salary_formatted", "type": "string", "display": true, "required": false, "displayName": "salary_formatted", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "company_rating", "type": "string", "display": true, "required": false, "displayName": "company_rating", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "company_reviews_count", "type": "string", "display": true, "required": false, "displayName": "company_reviews_count", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "country", "type": "string", "display": true, "required": false, "displayName": "country", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "date_posted", "type": "string", "display": true, "required": false, "displayName": "date_posted", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "description", "type": "string", "display": true, "required": false, "displayName": "description", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "company_link", "type": "string", "display": true, "required": false, "displayName": "company_link", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "domain", "type": "string", "display": true, "required": false, "displayName": "domain", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "apply_link", "type": "string", "display": true, "required": false, "displayName": "apply_link", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "url", "type": "string", "display": true, "required": false, "displayName": "url", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "is_expired", "type": "string", "display": true, "required": false, "displayName": "is_expired", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "timestamp", "type": "string", "display": true, "required": false, "displayName": "timestamp", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "job_location", "type": "string", "display": true, "required": false, "displayName": "job_location", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "job_description_formatted", "type": "string", "display": true, "required": false, "displayName": "job_description_formatted", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "logo_url", "type": "string", "display": true, "required": false, "displayName": "logo_url", "defaultMatch": false, "canBeUsedToMatch": true } ], "mappingMode": "autoMapInputData", "matchingColumns": [], "attemptToConvertTypes": false, "convertFieldsToString": false }, "options": {}, "operation": "append", "sheetName": { "__rl": true, "mode": "list", "value": "gid=0", "cachedResultUrl": "{{ $env.WEBHOOK_URL }}", "cachedResultName": "input" }, "documentId": { "__rl": true, "mode": "list", "value": "1vHHNShHD96AWsPnbXzlDAhPg_DbXr_Yx3wsAnQEtuyU", "cachedResultUrl": "{{ $env.WEBHOOK_URL }}", "cachedResultName": "NoFluff-N8N-Sheet-Template- Indeed Job Scraping WIth Bright Data" } }, "credentials": { "googleSheetsOAuth2Api": { "id": "4RJOMlGAcB9ZoYfm", "name": "Google Sheets account 2" } }, "typeVersion": 4.3, "alwaysOutputData": true, "notes": "This googleSheets node performs automated tasks as part of the workflow." }, { "id": "9f3f3b0f-65c2-4b6d-bd6c-74a5a8542a33", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [ 1840, -20 ], "parameters": { "width": 300, "height": 880, "content": "🧠 Bright Data Trigger – Customize Your Job Query\n\nThis HTTP Request sends a POST call to Bright Data to start a new dataset snapshot based on your filters.\n\nπŸ‘‹ If you don’t want to use the Form Trigger,\nyou can directly adjust the filters here in this node.\n\nYou can customize:\n\n\"location\" β†’ city, region, or keyword (e.g. \"New York\", \"Remote\")\n\n\"keyword\" β†’ job title or role (e.g. \"CMO\", \"AI Engineer\")\n\n\"country\" β†’ 2-letter country code (e.g. \"US\", \"UK\")\n\n\"time_range\" β†’ \"Past 24 hours\", \"Last 7 days\", etc.\n\n\n\nπŸ“Œ Tip:\nUse \"Past 24 hours\" or \"Last 7 days\" for the freshest results." }, "typeVersion": 1, "notes": "This stickyNote node performs automated tasks as part of the workflow." }, { "id": "5827ef89-c6aa-4e62-91d5-a778fcf1daad", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [ 2220, 240 ], "parameters": { "color": 4, "width": 940, "height": 360, "content": "Bright Data Getting Jobs\n" }, "typeVersion": 1, "notes": "This stickyNote node performs automated tasks as part of the workflow." }, { "id": "7fb03a36-1e06-4d0e-8899-8b6e28109136", "name": "Split Out", "type": "n8n-nodes-base.splitOut", "position": [ 3840, 460 ], "parameters": { "options": {}, "fieldToSplitOut": "company_name, job_title, description_text" }, "typeVersion": 1, "notes": "This splitOut node performs automated tasks as part of the workflow." }, { "id": "1a248b8c-d50a-4229-8843-56c2eda16e45", "name": "OpenAI Chat Model", "type": "n8n-nodes-base.noOp", "position": [ 4160, 680 ], "parameters": { "model": { "__rl": true, "mode": "list", "value": "gpt-4o-mini" }, "options": {} }, "credentials": { "openAiApi": { "id": "npdTsI2acWhX0UbE", "name": "OpenAi account" } }, "typeVersion": 1.2, "notes": "This lmChatOpenAi node performs automated tasks as part of the workflow." }, { "id": "156c6fd4-8aaf-4d62-8575-cb94e6d08390", "name": "Google Sheets", "type": "n8n-nodes-base.googleSheets", "position": [ 4420, 460 ], "parameters": { "columns": { "value": { "AM I a Fit?": "={{ $json.text }}", "company_name": "={{ $('Split Out').item.json.company_name }}" }, "schema": [ { "id": "jobid", "type": "string", "display": true, "removed": true, "required": false, "displayName": "jobid", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "company_name", "type": "string", "display": true, "removed": false, "required": false, "displayName": "company_name", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "date_posted_parsed", "type": "string", "display": true, "removed": true, "required": false, "displayName": "date_posted_parsed", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "job_title", "type": "string", "display": true, "removed": true, "required": false, "displayName": "job_title", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "description_text", "type": "string", "display": true, "removed": true, "required": false, "displayName": "description_text", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "benefits", "type": "string", "display": true, "removed": true, "required": false, "displayName": "benefits", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "job_type", "type": "string", "display": true, "removed": true, "required": false, "displayName": "job_type", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "location", "type": "string", "display": true, "removed": true, "required": false, "displayName": "location", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "salary_formatted", "type": "string", "display": true, "removed": true, "required": false, "displayName": "salary_formatted", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "company_rating", "type": "string", "display": true, "removed": true, "required": false, "displayName": "company_rating", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "company_reviews_count", "type": "string", "display": true, "removed": true, "required": false, "displayName": "company_reviews_count", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "country", "type": "string", "display": true, "removed": true, "required": false, "displayName": "country", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "date_posted", "type": "string", "display": true, "removed": true, "required": false, "displayName": "date_posted", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "description", "type": "string", "display": true, "removed": true, "required": false, "displayName": "description", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "company_link", "type": "string", "display": true, "removed": true, "required": false, "displayName": "company_link", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "domain", "type": "string", "display": true, "removed": true, "required": false, "displayName": "domain", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "apply_link", "type": "string", "display": true, "removed": true, "required": false, "displayName": "apply_link", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "url", "type": "string", "display": true, "removed": true, "required": false, "displayName": "url", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "is_expired", "type": "string", "display": true, "removed": true, "required": false, "displayName": "is_expired", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "timestamp", "type": "string", "display": true, "removed": true, "required": false, "displayName": "timestamp", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "job_location", "type": "string", "display": true, "removed": true, "required": false, "displayName": "job_location", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "job_description_formatted", "type": "string", "display": true, "removed": true, "required": false, "displayName": "job_description_formatted", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "logo_url", "type": "string", "display": true, "removed": true, "required": false, "displayName": "logo_url", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "region", "type": "string", "display": true, "removed": true, "required": false, "displayName": "region", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "srcname", "type": "string", "display": true, "removed": true, "required": false, "displayName": "srcname", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "discovery_input", "type": "string", "display": true, "removed": true, "required": false, "displayName": "discovery_input", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "input", "type": "string", "display": true, "removed": true, "required": false, "displayName": "input", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "AM I a Fit?", "type": "string", "display": true, "required": false, "displayName": "AM I a Fit?", "defaultMatch": false, "canBeUsedToMatch": true }, { "id": "row_number", "type": "string", "display": true, "removed": true, "readOnly": true, "required": false, "displayName": "row_number", "defaultMatch": false, "canBeUsedToMatch": true } ], "mappingMode": "defineBelow", "matchingColumns": [ "company_name" ], "attemptToConvertTypes": false, "convertFieldsToString": false }, "options": {}, "operation": "update", "sheetName": { "__rl": true, "mode": "list", "value": "gid=0", "cachedResultUrl": "{{ $env.WEBHOOK_URL }}", "cachedResultName": "input" }, "documentId": { "__rl": true, "mode": "list", "value": "1vHHNShHD96AWsPnbXzlDAhPg_DbXr_Yx3wsAnQEtuyU", "cachedResultUrl": "{{ $env.WEBHOOK_URL }}", "cachedResultName": "NoFluff-N8N-Sheet-Template- Indeed Job Scraping WIth Bright Data" } }, "credentials": { "googleSheetsOAuth2Api": { "id": "4RJOMlGAcB9ZoYfm", "name": "Google Sheets account 2" } }, "typeVersion": 4.5, "notes": "This googleSheets node performs automated tasks as part of the workflow." }, { "id": "4c884a08-ddf0-4d21-a039-88eb9a331877", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [ 4040, 300 ], "parameters": { "width": 280, "height": 620, "content": "Checking if each job post is relevant to you\n" }, "typeVersion": 1, "notes": "This stickyNote node performs automated tasks as part of the workflow." }, { "id": "53a830d6-82f6-4294-9a43-494937d85d8a", "name": "Basic LLM Chain - Checking Fit", "type": "n8n-nodes-base.noOp", "position": [ 4060, 460 ], "parameters": { "text": "=Read the following job post:\nCompany Name {{ $json.company_name }}, job Title:\n{{ $json.job_title }},\nAnd job description {{ $json.description_text }}, and tell me if you think I'm a good fit. Answer only YES or NO.\n\nI'm looking for roles in Pfizer", "promptType": "define" }, "typeVersion": 1.6, "notes": "This chainLlm node performs automated tasks as part of the workflow." } ], "pinData": { "On form submission - Discover Jobs": [ { "Keyword": "YOUR_CREDENTIAL_HERE", "formMode": "test", "submittedAt": "2025-04-17T14:03:33.242+04:00", "Job Location": "Miami", "Country (2 letters)": "US" } ] }, "connections": { "a06fbae2-1ea3-4b9d-8b7b-e4ec775d1a53": { "main": [ [ { "node": "error-handler-a06fbae2-1ea3-4b9d-8b7b-e4ec775d1a53", "type": "main", "index": 0 } ], [ { "node": "error-handler-a06fbae2-1ea3-4b9d-8b7b-e4ec775d1a53-07705798", "type": "main", "index": 0 } ], [ { "node": "error-handler-a06fbae2-1ea3-4b9d-8b7b-e4ec775d1a53-556e5a6e", "type": "main", "index": 0 } ], [ { "node": "error-handler-a06fbae2-1ea3-4b9d-8b7b-e4ec775d1a53-68471e99", "type": "main", "index": 0 } ], [ { "node": "error-handler-a06fbae2-1ea3-4b9d-8b7b-e4ec775d1a53-eff0fde0", "type": "main", "index": 0 } ], [ { "node": "error-handler-a06fbae2-1ea3-4b9d-8b7b-e4ec775d1a53-3201b4b6", "type": "main", "index": 0 } ], [ { "node": "error-handler-a06fbae2-1ea3-4b9d-8b7b-e4ec775d1a53-41ecd7b3", "type": "main", "index": 0 } ], [ { "node": "error-handler-a06fbae2-1ea3-4b9d-8b7b-e4ec775d1a53-2c5eef55", "type": "main", "index": 0 } ], [ { "node": "error-handler-a06fbae2-1ea3-4b9d-8b7b-e4ec775d1a53-6b47cf16", "type": "main", "index": 0 } ] ] }, "46470e2b-a702-4f23-871d-6993a344410c": { "main": [ [ { "node": "error-handler-46470e2b-a702-4f23-871d-6993a344410c", "type": "main", "index": 0 } ], [ { "node": "error-handler-46470e2b-a702-4f23-871d-6993a344410c-aa870e52", "type": "main", "index": 0 } ], [ { "node": "error-handler-46470e2b-a702-4f23-871d-6993a344410c-64019e4b", "type": "main", "index": 0 } ], [ { "node": "error-handler-46470e2b-a702-4f23-871d-6993a344410c-021d9686", "type": "main", "index": 0 } ], [ { "node": "error-handler-46470e2b-a702-4f23-871d-6993a344410c-c33c3202", "type": "main", "index": 0 } ], [ { "node": "error-handler-46470e2b-a702-4f23-871d-6993a344410c-e9030a51", "type": "main", "index": 0 } ], [ { "node": "error-handler-46470e2b-a702-4f23-871d-6993a344410c-a423399d", "type": "main", "index": 0 } ], [ { "node": "error-handler-46470e2b-a702-4f23-871d-6993a344410c-6b85a23e", "type": "main", "index": 0 } ], [ { "node": "error-handler-46470e2b-a702-4f23-871d-6993a344410c-22874609", "type": "main", "index": 0 } ] ] }, "c618eb47-ab85-4dcc-a609-73a824d97f00": { "main": [ [ { "node": "error-handler-c618eb47-ab85-4dcc-a609-73a824d97f00", "type": "main", "index": 0 } ], [ { "node": "error-handler-c618eb47-ab85-4dcc-a609-73a824d97f00-7fb7a53d", "type": "main", "index": 0 } ], [ { "node": "error-handler-c618eb47-ab85-4dcc-a609-73a824d97f00-ca903028", "type": "main", "index": 0 } ], [ { "node": "error-handler-c618eb47-ab85-4dcc-a609-73a824d97f00-490a5a44", "type": "main", "index": 0 } ], [ { "node": "error-handler-c618eb47-ab85-4dcc-a609-73a824d97f00-9dc90401", "type": "main", "index": 0 } ], [ { "node": "error-handler-c618eb47-ab85-4dcc-a609-73a824d97f00-11fffdcb", "type": "main", "index": 0 } ], [ { "node": "error-handler-c618eb47-ab85-4dcc-a609-73a824d97f00-c86a29b4", "type": "main", "index": 0 } ], [ { "node": "error-handler-c618eb47-ab85-4dcc-a609-73a824d97f00-0af5e84e", "type": "main", "index": 0 } ], [ { "node": "error-handler-c618eb47-ab85-4dcc-a609-73a824d97f00-49bd5bf4", "type": "main", "index": 0 } ] ] }, "717fc332-0679-42b0-8481-1320577856c6": { "main": [ [ { "node": "error-handler-717fc332-0679-42b0-8481-1320577856c6-60afb55a", "type": "main", "index": 0 } ] ] }, "1a248b8c-d50a-4229-8843-56c2eda16e45": { "main": [ [ { "node": "error-handler-1a248b8c-d50a-4229-8843-56c2eda16e45-0cf777f0", "type": "main", "index": 0 } ] ] }, "156c6fd4-8aaf-4d62-8575-cb94e6d08390": { "main": [ [ { "node": "error-handler-156c6fd4-8aaf-4d62-8575-cb94e6d08390-b6f30319", "type": "main", "index": 0 } ] ] } }, "name": "Stickynote Workflow", "settings": { "executionOrder": "v1", "saveManualExecutions": true, "callerPolicy": "workflowsFromSameOwner", "errorWorkflow": null, "timezone": "UTC", "executionTimeout": 3600, "maxExecutions": 1000, "retryOnFail": true, "retryCount": 3, "retryDelay": 1000 }, "description": "Automated workflow: Stickynote Workflow. This workflow integrates 10 different services: stickyNote, httpRequest, formTrigger, wait, splitOut. It contains 26 nodes and follows best practices for error handling and security.", "tags": [ "automation", "n8n", "production-ready", "excellent", "optimized" ], "notes": "Excellent quality workflow: Stickynote Workflow. This workflow has been optimized for production use with comprehensive error handling, security, and documentation." }