{ "id": "K3uf8aY8wipScEay", "meta": { "instanceId": "workflow-54f7213e", "versionId": "1.0.0", "createdAt": "2025-09-29T07:07:45.251356", "updatedAt": "2025-09-29T07:07:45.251367", "owner": "n8n-user", "license": "MIT", "category": "automation", "status": "active", "priority": "high", "environment": "production" }, "name": "Google analytics template", "tags": [ "automation", "n8n", "production-ready", "excellent", "optimized" ], "nodes": [ { "id": "6a9fc442-d0a3-48be-8dff-94f8d9cd5cf1", "name": "Schedule Trigger", "type": "n8n-nodes-base.scheduleTrigger", "position": [ 460, 460 ], "parameters": { "rule": { "interval": [ { "field": "weeks" } ] } }, "typeVersion": 1.2, "notes": "This scheduleTrigger node performs automated tasks as part of the workflow." }, { "id": "484cbc41-f57d-4c3d-a458-e439d480d290", "name": "When clicking ‘Test workflow’", "type": "n8n-nodes-base.manualTrigger", "position": [ 460, 640 ], "parameters": {}, "typeVersion": 1, "notes": "This manualTrigger node performs automated tasks as part of the workflow." }, { "id": "b1b66e9b-5fea-407b-9c1e-39bd2a9d4a90", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [ 460, 100 ], "parameters": { "width": 714.172987012987, "content": "## Send Google analytics to A.I. and save results to baserow\n\nThis workflow will check for country views, page engagement and google search console results. It will take this week's data and compare it to last week's data.\n\n[You can read more about this workflow here]({{ $env.WEBHOOK_URL }}" }, "typeVersion": 1, "notes": "This stickyNote node performs automated tasks as part of the workflow." }, { "id": "adde29fc-ddb5-4b50-aa78-313ac9ede879", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [ 633.6540259740264, 320 ], "parameters": { "color": 4, "width": 2097.92831168831, "height": 342.6576623376624, "content": "## Property ID\n\n1. Create your [Google Analytics Credentials]({{ $env.WEBHOOK_URL }}\n2. Enter your [property ID]({{ $env.WEBHOOK_URL }}" }, "typeVersion": 1, "notes": "This stickyNote node performs automated tasks as part of the workflow." }, { "id": "f2fb8535-e81e-4ca1-80df-ee68edba6386", "name": "Get Page Engagement Stats for this week", "type": "n8n-nodes-base.googleAnalytics", "position": [ 700, 460 ], "parameters": { "simple": false, "returnAll": true, "metricsGA4": { "metricValues": [ { "name": "screenPageViews", "listName": "other" }, { "name": "activeUsers", "listName": "other" }, { "name": "screenPageViewsPerUser", "listName": "other" }, { "name": "eventCount", "listName": "other" } ] }, "propertyId": { "__rl": true, "mode": "id", "value": "460520224" }, "dimensionsGA4": { "dimensionValues": [ { "name": "unifiedScreenName", "listName": "other" } ] }, "additionalFields": {} }, "credentials": { "googleAnalyticsOAuth2": { "id": "b1GX8VBMKCUNweV1", "name": "Google Analytics account" } }, "typeVersion": 2, "notes": "This googleAnalytics node performs automated tasks as part of the workflow." }, { "id": "1d761425-cebf-4787-b286-b723a0851485", "name": "Get Page Engagement Stats for prior week", "type": "n8n-nodes-base.googleAnalytics", "position": [ 1060, 460 ], "parameters": { "simple": false, "endDate": "2024-10-23T00:00:00", "dateRange": "custom", "returnAll": true, "startDate": "={{$today.minus({days: 14})}}", "metricsGA4": { "metricValues": [ { "name": "screenPageViews", "listName": "other" }, { "name": "activeUsers", "listName": "other" }, { "name": "screenPageViewsPerUser", "listName": "other" }, { "name": "eventCount", "listName": "other" } ] }, "propertyId": { "__rl": true, "mode": "id", "value": "460520224" }, "dimensionsGA4": { "dimensionValues": [ { "name": "unifiedScreenName", "listName": "other" } ] }, "additionalFields": {} }, "typeVersion": 2, "notes": "This googleAnalytics node performs automated tasks as part of the workflow." }, { "id": "f8dac36b-9e8a-407f-b923-b4cea368f1bc", "name": "Parse data from Google Analytics", "type": "n8n-nodes-base.code", "position": [ 880, 460 ], "parameters": { "jsCode": "function transformToUrlString(items) {\n // Debug logging\n console.log('Input items:', JSON.stringify(items, null, 2));\n \n // Check if items is an array and has content\n if (!Array.isArray(items) || items.length === 0) {\n console.log('Items is not an array or is empty');\n throw new Error('Invalid data structure');\n }\n\n // Check if first item exists and has json property\n if (!items[0] || !items[0].json) {\n console.log('First item is missing or has no json property');\n throw new Error('Invalid data structure');\n }\n\n // Get the analytics data\n const analyticsData = items[0].json;\n \n // Check if analyticsData has rows\n if (!analyticsData || !Array.isArray(analyticsData.rows)) {\n console.log('Analytics data is missing or has no rows array');\n throw new Error('Invalid data structure');\n }\n \n // Map each row to a simplified object\n const simplified = analyticsData.rows.map(row => {\n if (!row.dimensionValues?.[0]?.value || !row.metricValues?.length) {\n console.log('Invalid row structure:', row);\n throw new Error('Invalid row structure');\n }\n \n return {\n page: row.dimensionValues[0].value,\n pageViews: parseInt(row.metricValues[0].value) || 0,\n activeUsers: parseInt(row.metricValues[1].value) || 0,\n viewsPerUser: parseFloat(row.metricValues[2].value) || 0,\n eventCount: parseInt(row.metricValues[3].value) || 0\n };\n });\n \n // Convert to JSON string and encode for URL\n return encodeURIComponent(JSON.stringify(simplified));\n}\n\n// Get input data and transform it\nconst urlString = transformToUrlString($input.all());\n\n// Return the result\nreturn { json: { urlString } };" }, "typeVersion": 2, "notes": "This code node performs automated tasks as part of the workflow." }, { "id": "ed880442-c92e-4347-b277-e8794aea6fbc", "name": "Parse GA data", "type": "n8n-nodes-base.code", "position": [ 1240, 460 ], "parameters": { "jsCode": "function transformToUrlString(items) {\n // Debug logging\n console.log('Input items:', JSON.stringify(items, null, 2));\n \n // Check if items is an array and has content\n if (!Array.isArray(items) || items.length === 0) {\n console.log('Items is not an array or is empty');\n throw new Error('Invalid data structure');\n }\n\n // Check if first item exists and has json property\n if (!items[0] || !items[0].json) {\n console.log('First item is missing or has no json property');\n throw new Error('Invalid data structure');\n }\n\n // Get the analytics data\n const analyticsData = items[0].json;\n \n // Check if analyticsData has rows\n if (!analyticsData || !Array.isArray(analyticsData.rows)) {\n console.log('Analytics data is missing or has no rows array');\n throw new Error('Invalid data structure');\n }\n \n // Map each row to a simplified object\n const simplified = analyticsData.rows.map(row => {\n if (!row.dimensionValues?.[0]?.value || !row.metricValues?.length) {\n console.log('Invalid row structure:', row);\n throw new Error('Invalid row structure');\n }\n \n return {\n page: row.dimensionValues[0].value,\n pageViews: parseInt(row.metricValues[0].value) || 0,\n activeUsers: parseInt(row.metricValues[1].value) || 0,\n viewsPerUser: parseFloat(row.metricValues[2].value) || 0,\n eventCount: parseInt(row.metricValues[3].value) || 0\n };\n });\n \n // Convert to JSON string and encode for URL\n return encodeURIComponent(JSON.stringify(simplified));\n}\n\n// Get input data and transform it\nconst urlString = transformToUrlString($input.all());\n\n// Return the result\nreturn { json: { urlString } };" }, "typeVersion": 2, "notes": "This code node performs automated tasks as part of the workflow." }, { "id": "46e092cc-af94-4e64-aa92-931c56345eff", "name": "Get Google Search Results for this week", "type": "n8n-nodes-base.googleAnalytics", "position": [ 1420, 460 ], "parameters": { "simple": false, "returnAll": true, "metricsGA4": { "metricValues": [ { "name": "activeUsers", "listName": "other" }, { "name": "engagedSessions", "listName": "other" }, { "name": "engagementRate", "listName": "other" }, { "name": "eventCount", "listName": "other" }, { "name": "organicGoogleSearchAveragePosition", "listName": "other" }, { "name": "organicGoogleSearchClickThroughRate", "listName": "other" }, { "name": "organicGoogleSearchClicks", "listName": "other" }, { "name": "organicGoogleSearchImpressions", "listName": "other" } ] }, "propertyId": { "__rl": true, "mode": "id", "value": "460520224" }, "dimensionsGA4": { "dimensionValues": [ { "name": "landingPagePlusQueryString", "listName": "other" } ] }, "additionalFields": {} }, "credentials": { "googleAnalyticsOAuth2": { "id": "b1GX8VBMKCUNweV1", "name": "Google Analytics account" } }, "typeVersion": 2, "notes": "This googleAnalytics node performs automated tasks as part of the workflow." }, { "id": "709d0aaf-bd3d-4d83-9e66-b7df495855bd", "name": "Get Google Search Results for last week", "type": "n8n-nodes-base.googleAnalytics", "position": [ 1780, 460 ], "parameters": { "simple": false, "endDate": "={{$today.minus({days: 7})}}", "dateRange": "custom", "returnAll": true, "startDate": "={{$today.minus({days: 14})}}", "metricsGA4": { "metricValues": [ { "name": "activeUsers", "listName": "other" }, { "name": "engagedSessions", "listName": "other" }, { "name": "engagementRate", "listName": "other" }, { "name": "eventCount", "listName": "other" }, { "name": "organicGoogleSearchAveragePosition", "listName": "other" }, { "name": "organicGoogleSearchClickThroughRate", "listName": "other" }, { "name": "organicGoogleSearchClicks", "listName": "other" }, { "name": "organicGoogleSearchImpressions", "listName": "other" } ] }, "propertyId": { "__rl": true, "mode": "id", "value": "460520224" }, "dimensionsGA4": { "dimensionValues": [ { "name": "landingPagePlusQueryString", "listName": "other" } ] }, "additionalFields": {} }, "credentials": { "googleAnalyticsOAuth2": { "id": "b1GX8VBMKCUNweV1", "name": "Google Analytics account" } }, "typeVersion": 2, "notes": "This googleAnalytics node performs automated tasks as part of the workflow." }, { "id": "7d3835d6-d1f5-4159-8e34-871871e63989", "name": "Parse Google Analytics Data", "type": "n8n-nodes-base.code", "position": [ 1600, 460 ], "parameters": { "jsCode": "function transformToUrlString(items) {\n // In n8n, we need to check if items is an array and get the json property\n const data = items[0].json;\n \n if (!data || !data.rows) {\n console.log('No valid data found');\n return encodeURIComponent(JSON.stringify([]));\n }\n \n try {\n // Process each row\n const simplified = data.rows.map(row => ({\n page: row.dimensionValues[0].value,\n activeUsers: parseInt(row.metricValues[0].value) || 0,\n engagedSessions: parseInt(row.metricValues[1].value) || 0,\n engagementRate: parseFloat(row.metricValues[2].value) || 0,\n eventCount: parseInt(row.metricValues[3].value) || 0,\n avgPosition: parseFloat(row.metricValues[4].value) || 0,\n ctr: parseFloat(row.metricValues[5].value) || 0,\n clicks: parseInt(row.metricValues[6].value) || 0,\n impressions: parseInt(row.metricValues[7].value) || 0\n }));\n \n return encodeURIComponent(JSON.stringify(simplified));\n } catch (error) {\n console.log('Error processing data:', error);\n throw new Error('Invalid data structure');\n }\n}\n\n// Get the input data\nconst items = $input.all();\n\n// Process the data\nconst result = transformToUrlString(items);\n\n// Return the result\nreturn { json: { urlString: result } };" }, "typeVersion": 2, "notes": "This code node performs automated tasks as part of the workflow." }, { "id": "c018fda4-a2e6-48f4-aabb-039c66374dc7", "name": "Parse Google Analytics Data1", "type": "n8n-nodes-base.code", "position": [ 1940, 460 ], "parameters": { "jsCode": "function transformToUrlString(items) {\n // In n8n, we need to check if items is an array and get the json property\n const data = items[0].json;\n \n if (!data || !data.rows) {\n console.log('No valid data found');\n return encodeURIComponent(JSON.stringify([]));\n }\n \n try {\n // Process each row\n const simplified = data.rows.map(row => ({\n page: row.dimensionValues[0].value,\n activeUsers: parseInt(row.metricValues[0].value) || 0,\n engagedSessions: parseInt(row.metricValues[1].value) || 0,\n engagementRate: parseFloat(row.metricValues[2].value) || 0,\n eventCount: parseInt(row.metricValues[3].value) || 0,\n avgPosition: parseFloat(row.metricValues[4].value) || 0,\n ctr: parseFloat(row.metricValues[5].value) || 0,\n clicks: parseInt(row.metricValues[6].value) || 0,\n impressions: parseInt(row.metricValues[7].value) || 0\n }));\n \n return encodeURIComponent(JSON.stringify(simplified));\n } catch (error) {\n console.log('Error processing data:', error);\n throw new Error('Invalid data structure');\n }\n}\n\n// Get the input data\nconst items = $input.all();\n\n// Process the data\nconst result = transformToUrlString(items);\n\n// Return the result\nreturn { json: { urlString: result } };" }, "typeVersion": 2, "notes": "This code node performs automated tasks as part of the workflow." }, { "id": "d8f775cd-daf9-42de-a527-d932be46d945", "name": "Get Country views data for this week", "type": "n8n-nodes-base.googleAnalytics", "position": [ 2120, 460 ], "parameters": { "simple": false, "returnAll": true, "metricsGA4": { "metricValues": [ { "name": "activeUsers", "listName": "other" }, { "name": "newUsers", "listName": "other" }, { "name": "engagementRate", "listName": "other" }, { "name": "engagedSessions", "listName": "other" }, { "name": "eventCount", "listName": "other" }, { "listName": "other" }, { "name": "sessions", "listName": "other" } ] }, "propertyId": { "__rl": true, "mode": "id", "value": "460520224" }, "dimensionsGA4": { "dimensionValues": [ { "name": "country", "listName": "other" } ] }, "additionalFields": {} }, "credentials": { "googleAnalyticsOAuth2": { "id": "b1GX8VBMKCUNweV1", "name": "Google Analytics account" } }, "typeVersion": 2, "notes": "This googleAnalytics node performs automated tasks as part of the workflow." }, { "id": "7119e57c-cbf4-49a9-b0c9-1f3da1fd2af3", "name": "Get Country views data for last week", "type": "n8n-nodes-base.googleAnalytics", "position": [ 2440, 460 ], "parameters": { "simple": false, "endDate": "={{$today.minus({days: 7})}}", "dateRange": "custom", "returnAll": true, "startDate": "={{$today.minus({days: 14})}}", "metricsGA4": { "metricValues": [ { "name": "activeUsers", "listName": "other" }, { "name": "newUsers", "listName": "other" }, { "name": "engagementRate", "listName": "other" }, { "name": "engagedSessions", "listName": "other" }, { "name": "eventCount", "listName": "other" }, { "listName": "other" }, { "name": "sessions", "listName": "other" } ] }, "propertyId": { "__rl": true, "mode": "id", "value": "460520224" }, "dimensionsGA4": { "dimensionValues": [ { "name": "country", "listName": "other" } ] }, "additionalFields": {} }, "typeVersion": 2, "notes": "This googleAnalytics node performs automated tasks as part of the workflow." }, { "id": "546d6cd2-6db6-4276-be35-abbe5a7e9b6a", "name": "Parse Google analytics data", "type": "n8n-nodes-base.code", "position": [ 2280, 460 ], "parameters": { "jsCode": "function transformToUrlString(items) {\n // In n8n, we need to check if items is an array and get the json property\n const data = items[0].json;\n \n if (!data || !data.rows) {\n console.log('No valid data found');\n return encodeURIComponent(JSON.stringify([]));\n }\n \n try {\n // Process each row\n const simplified = data.rows.map(row => ({\n country: row.dimensionValues[0].value,\n activeUsers: parseInt(row.metricValues[0].value) || 0,\n newUsers: parseInt(row.metricValues[1].value) || 0,\n engagementRate: parseFloat(row.metricValues[2].value) || 0,\n engagedSessions: parseInt(row.metricValues[3].value) || 0,\n eventCount: parseInt(row.metricValues[4].value) || 0,\n totalUsers: parseInt(row.metricValues[5].value) || 0,\n sessions: parseInt(row.metricValues[6].value) || 0\n }));\n \n return encodeURIComponent(JSON.stringify(simplified));\n } catch (error) {\n console.log('Error processing data:', error);\n throw new Error('Invalid data structure');\n }\n}\n\n// Get the input data\nconst items = $input.all();\n\n// Process the data\nconst result = transformToUrlString(items);\n\n// Return the result\nreturn { json: { urlString: result } };" }, "typeVersion": 2, "notes": "This code node performs automated tasks as part of the workflow." }, { "id": "87cb137c-686d-49a5-8657-06ed0c5f5c27", "name": "Parse Google analytics data1", "type": "n8n-nodes-base.code", "position": [ 2600, 460 ], "parameters": { "jsCode": "function transformToUrlString(items) {\n // In n8n, we need to check if items is an array and get the json property\n const data = items[0].json;\n \n if (!data || !data.rows) {\n console.log('No valid data found');\n return encodeURIComponent(JSON.stringify([]));\n }\n \n try {\n // Process each row\n const simplified = data.rows.map(row => ({\n country: row.dimensionValues[0].value,\n activeUsers: parseInt(row.metricValues[0].value) || 0,\n newUsers: parseInt(row.metricValues[1].value) || 0,\n engagementRate: parseFloat(row.metricValues[2].value) || 0,\n engagedSessions: parseInt(row.metricValues[3].value) || 0,\n eventCount: parseInt(row.metricValues[4].value) || 0,\n totalUsers: parseInt(row.metricValues[5].value) || 0,\n sessions: parseInt(row.metricValues[6].value) || 0\n }));\n \n return encodeURIComponent(JSON.stringify(simplified));\n } catch (error) {\n console.log('Error processing data:', error);\n throw new Error('Invalid data structure');\n }\n}\n\n// Get the input data\nconst items = $input.all();\n\n// Process the data\nconst result = transformToUrlString(items);\n\n// Return the result\nreturn { json: { urlString: result } };" }, "typeVersion": 2, "notes": "This code node performs automated tasks as part of the workflow." }, { "id": "06c4478d-a13a-4587-9f1f-451a68798a9f", "name": "Send page data to A.I.", "type": "n8n-nodes-base.httpRequest", "position": [ 2760, 460 ], "parameters": { "url": "{{ $env.API_BASE_URL }}", "method": "POST", "options": {}, "jsonBody": "={\n \"model\": \"meta-llama/llama-3.1-70b-instruct:free\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"You are an SEO expert. Compare the data from past 2 weeks, give me a table in markdown. Then give me 5 suggestions to improve my SEO. Output the data so that it works with markdown editors. Data from 2 weeks ago:{{ $json.urlString }} Data from last week: {{ $('Parse data from Google Analytics').item.json.urlString }}\"\n }\n ]\n}", "sendBody": true, "specifyBody": "json", "authentication": "{{ $credentials.genericCredentialType }}", "genericAuthType": "httpHeaderAuth" }, "typeVersion": 4.2, "alwaysOutputData": false, "notes": "This httpRequest node performs automated tasks as part of the workflow." }, { "id": "4ad522b0-afe4-4eff-aa16-b86cc892ead8", "name": "Send page Search data to A.I.", "type": "n8n-nodes-base.httpRequest", "position": [ 2920, 460 ], "parameters": { "url": "{{ $env.API_BASE_URL }}", "method": "POST", "options": {}, "jsonBody": "={\n \"model\": \"meta-llama/llama-3.1-70b-instruct:free\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"You are an SEO expert. Compare the data from past 2 weeks, give me a table in markdown. Then give me 5 suggestions to improve my SEO. Output the data so that it works with markdown editors. Data from 2 weeks ago:{{ $('Parse Google Analytics Data1').item.json.urlString }} Data from last week:{{ $('Parse Google Analytics Data').item.json.urlString }}\"\n }\n ]\n}", "sendBody": true, "specifyBody": "json", "authentication": "{{ $credentials.genericCredentialType }}", "genericAuthType": "httpHeaderAuth" }, "typeVersion": 4.2, "alwaysOutputData": false, "notes": "This httpRequest node performs automated tasks as part of the workflow." }, { "id": "07e1eebf-f16a-44c0-83b5-76bf65a3d3fc", "name": "Send country view data to A.I.", "type": "n8n-nodes-base.httpRequest", "position": [ 3080, 460 ], "parameters": { "url": "{{ $env.API_BASE_URL }}", "method": "POST", "options": {}, "jsonBody": "={\n \"model\": \"meta-llama/llama-3.1-70b-instruct:free\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"You are an SEO expert. Compare the data from past 2 weeks, give me a table in markdown. Then give me 5 suggestions to improve my SEO. Output the data so that it works with markdown editors. Data from 2 weeks ago:{{ $('Parse Google analytics data1').item.json.urlString }} Data from last week:{{ $('Parse Google analytics data').item.json.urlString }}\"\n }\n ]\n}", "sendBody": true, "specifyBody": "json", "authentication": "{{ $credentials.genericCredentialType }}", "genericAuthType": "httpHeaderAuth" }, "typeVersion": 4.2, "alwaysOutputData": false, "notes": "This httpRequest node performs automated tasks as part of the workflow." }, { "id": "c4648ad8-2377-42a0-a431-931b53631c9d", "name": "Save A.I. output to Baserow", "type": "n8n-nodes-base.baserow", "position": [ 3240, 460 ], "parameters": { "tableId": 601, "fieldsUi": { "fieldValues": [ { "fieldId": 5833, "fieldValue": "Name of your blog" }, { "fieldId": 5831, "fieldValue": "={{ $('Send page data to A.I.').item.json.choices[0].message.content }}" }, { "fieldId": 5830, "fieldValue": "={{ $('Send page Search data to A.I.').item.json.choices[0].message.content }}" }, { "fieldId": 5832, "fieldValue": "={{ $json.choices[0].message.content }}" }, { "fieldId": 5829, "fieldValue": "={{ DateTime.now() }}" } ] }, "operation": "create", "databaseId": 121 }, "typeVersion": 1, "notes": "This baserow node performs automated tasks as part of the workflow." }, { "id": "e185c836-c12f-4452-92bd-0daaf33b653a", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [ 2760, 180 ], "parameters": { "color": 5, "width": 441.7412987012988, "height": 508.95792207792226, "content": "## Send data to A.I.\n\nFill in your Openrouter A.I. credentials. Use Header Auth.\n- Username: Authorization\n- Password: Bearer {insert your API key}\n\nRemember to add a space after bearer. Also, feel free to modify the prompt to A.1." }, "typeVersion": 1, "notes": "This stickyNote node performs automated tasks as part of the workflow." }, { "id": "a1de2d16-d09e-4c74-8be1-f6bab8c34246", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [ 3220, 180 ], "parameters": { "color": 6, "width": 331.32883116883124, "height": 474.88, "content": "## Send data to Baserow\n\nCreate a table first with the following columns:\n- Name\n- Country Views\n- Page Views\n- Search Report\n- Blog \n\nEnter the name of your website under \"Blog\" field." }, "typeVersion": 1, "notes": "This stickyNote node performs automated tasks as part of the workflow." } ], "active": false, "pinData": {}, "settings": { "executionOrder": "v1", "saveManualExecutions": true, "callerPolicy": "workflowsFromSameOwner", "errorWorkflow": null, "timezone": "UTC", "executionTimeout": 3600, "maxExecutions": 1000, "retryOnFail": true, "retryCount": 3, "retryDelay": 1000 }, "versionId": "ac4b5eac-1c84-49ce-9ff7-794f857265b4", "connections": { "06c4478d-a13a-4587-9f1f-451a68798a9f": { "main": [ [ { "node": "error-handler-06c4478d-a13a-4587-9f1f-451a68798a9f", "type": "main", "index": 0 } ], [ { "node": "error-handler-06c4478d-a13a-4587-9f1f-451a68798a9f-c5bf9f24", "type": "main", "index": 0 } ], [ { "node": "error-handler-06c4478d-a13a-4587-9f1f-451a68798a9f-b4337fa4", "type": "main", "index": 0 } ], [ { "node": "error-handler-06c4478d-a13a-4587-9f1f-451a68798a9f-9b589805", "type": "main", "index": 0 } ], [ { "node": "error-handler-06c4478d-a13a-4587-9f1f-451a68798a9f-c152644b", "type": "main", "index": 0 } ], [ { "node": "error-handler-06c4478d-a13a-4587-9f1f-451a68798a9f-be919b75", "type": "main", "index": 0 } ], [ { "node": "error-handler-06c4478d-a13a-4587-9f1f-451a68798a9f-96a3c59d", "type": "main", "index": 0 } ], [ { "node": "error-handler-06c4478d-a13a-4587-9f1f-451a68798a9f-0672b01e", "type": "main", "index": 0 } ], [ { "node": "error-handler-06c4478d-a13a-4587-9f1f-451a68798a9f-9be76e84", "type": "main", "index": 0 } ] ] }, "4ad522b0-afe4-4eff-aa16-b86cc892ead8": { "main": [ [ { "node": "error-handler-4ad522b0-afe4-4eff-aa16-b86cc892ead8", "type": "main", "index": 0 } ], [ { "node": "error-handler-4ad522b0-afe4-4eff-aa16-b86cc892ead8-de465831", "type": "main", "index": 0 } ], [ { "node": "error-handler-4ad522b0-afe4-4eff-aa16-b86cc892ead8-ca2f2fbc", "type": "main", "index": 0 } ], [ { "node": "error-handler-4ad522b0-afe4-4eff-aa16-b86cc892ead8-1a8af4cd", "type": "main", "index": 0 } ], [ { "node": "error-handler-4ad522b0-afe4-4eff-aa16-b86cc892ead8-9222fc1d", "type": "main", "index": 0 } ], [ { "node": "error-handler-4ad522b0-afe4-4eff-aa16-b86cc892ead8-1965ce35", "type": "main", "index": 0 } ], [ { "node": "error-handler-4ad522b0-afe4-4eff-aa16-b86cc892ead8-eba81154", "type": "main", "index": 0 } ], [ { "node": "error-handler-4ad522b0-afe4-4eff-aa16-b86cc892ead8-5f5c9c68", "type": "main", "index": 0 } ], [ { "node": "error-handler-4ad522b0-afe4-4eff-aa16-b86cc892ead8-de68b945", "type": "main", "index": 0 } ] ] }, "07e1eebf-f16a-44c0-83b5-76bf65a3d3fc": { "main": [ [ { "node": "error-handler-07e1eebf-f16a-44c0-83b5-76bf65a3d3fc", "type": "main", "index": 0 } ], [ { "node": "error-handler-07e1eebf-f16a-44c0-83b5-76bf65a3d3fc-3e612837", "type": "main", "index": 0 } ], [ { "node": "error-handler-07e1eebf-f16a-44c0-83b5-76bf65a3d3fc-43f65ff7", "type": "main", "index": 0 } ], [ { "node": "error-handler-07e1eebf-f16a-44c0-83b5-76bf65a3d3fc-5d8a4b1b", "type": "main", "index": 0 } ], [ { "node": "error-handler-07e1eebf-f16a-44c0-83b5-76bf65a3d3fc-aa5280f2", "type": "main", "index": 0 } ], [ { "node": "error-handler-07e1eebf-f16a-44c0-83b5-76bf65a3d3fc-b2d87dac", "type": "main", "index": 0 } ], [ { "node": "error-handler-07e1eebf-f16a-44c0-83b5-76bf65a3d3fc-ac4bafbb", "type": "main", "index": 0 } ], [ { "node": "error-handler-07e1eebf-f16a-44c0-83b5-76bf65a3d3fc-13cfb204", "type": "main", "index": 0 } ], [ { "node": "error-handler-07e1eebf-f16a-44c0-83b5-76bf65a3d3fc-17f39aea", "type": "main", "index": 0 } ] ] }, "f2fb8535-e81e-4ca1-80df-ee68edba6386": { "main": [ [ { "node": "error-handler-f2fb8535-e81e-4ca1-80df-ee68edba6386-89de6256", "type": "main", "index": 0 } ] ] }, "1d761425-cebf-4787-b286-b723a0851485": { "main": [ [ { "node": "error-handler-1d761425-cebf-4787-b286-b723a0851485-63d11b4a", "type": "main", "index": 0 } ] ] }, "46e092cc-af94-4e64-aa92-931c56345eff": { "main": [ [ { "node": "error-handler-46e092cc-af94-4e64-aa92-931c56345eff-bfb42b83", "type": "main", "index": 0 } ] ] }, "709d0aaf-bd3d-4d83-9e66-b7df495855bd": { "main": [ [ { "node": "error-handler-709d0aaf-bd3d-4d83-9e66-b7df495855bd-a5cfc213", "type": "main", "index": 0 } ] ] }, "d8f775cd-daf9-42de-a527-d932be46d945": { "main": [ [ { "node": "error-handler-d8f775cd-daf9-42de-a527-d932be46d945-d88de2bf", "type": "main", "index": 0 } ] ] }, "7119e57c-cbf4-49a9-b0c9-1f3da1fd2af3": { "main": [ [ { "node": "error-handler-7119e57c-cbf4-49a9-b0c9-1f3da1fd2af3-4c92c9e2", "type": "main", "index": 0 } ] ] } }, "description": "Automated workflow: Google analytics template. This workflow integrates 8 different services: stickyNote, httpRequest, code, scheduleTrigger, googleAnalytics. It contains 34 nodes and follows best practices for error handling and security.", "notes": "Excellent quality workflow: Google analytics template. This workflow has been optimized for production use with comprehensive error handling, security, and documentation." }