From b201ff8f23b2bac6b00d5c16d91b4b2931f45ade Mon Sep 17 00:00:00 2001
From: Michael Kret <88898367+michael-radency@users.noreply.github.com>
Date: Fri, 5 Jan 2024 12:13:29 +0200
Subject: [PATCH] fix(Nextcloud Node): Throw an actual error if server
responded with Fatal error (#8234)
## Summary
Nextcloud and Yourls receiving response with OK status as string
containing 'Fatal error', throw an actual error in such case

## Related tickets and issues
https://linear.app/n8n/issue/NODE-1035/nextcloud-and-yourls-throw-an-actual-error-if-server-responded-with
---
.../nodes/NextCloud/GenericFunctions.ts | 17 +-
.../nodes/Yourls/GenericFunctions.ts | 10 +
test-results.json | 2387 +++++++++++++++++
3 files changed, 2412 insertions(+), 2 deletions(-)
create mode 100644 test-results.json
diff --git a/packages/nodes-base/nodes/NextCloud/GenericFunctions.ts b/packages/nodes-base/nodes/NextCloud/GenericFunctions.ts
index e1ba3be8f8..159ece886f 100644
--- a/packages/nodes-base/nodes/NextCloud/GenericFunctions.ts
+++ b/packages/nodes-base/nodes/NextCloud/GenericFunctions.ts
@@ -1,4 +1,4 @@
-import type { IExecuteFunctions, IHookFunctions } from 'n8n-workflow';
+import { NodeOperationError, type IExecuteFunctions, type IHookFunctions } from 'n8n-workflow';
import type { OptionsWithUri } from 'request';
@@ -52,5 +52,18 @@ export async function nextCloudApiRequest(
const credentialType =
authenticationMethod === 'accessToken' ? 'nextCloudApi' : 'nextCloudOAuth2Api';
- return this.helpers.requestWithAuthentication.call(this, credentialType, options);
+
+ const response = await this.helpers.requestWithAuthentication.call(this, credentialType, options);
+
+ if (typeof response === 'string' && response.includes('Fatal error')) {
+ throw new NodeOperationError(
+ this.getNode(),
+ "NextCloud responded with a 'Fatal error', check description for more details",
+ {
+ description: `Server response:\n${response}`,
+ },
+ );
+ }
+
+ return response;
}
diff --git a/packages/nodes-base/nodes/Yourls/GenericFunctions.ts b/packages/nodes-base/nodes/Yourls/GenericFunctions.ts
index 2aba2cc599..7555eeafd9 100644
--- a/packages/nodes-base/nodes/Yourls/GenericFunctions.ts
+++ b/packages/nodes-base/nodes/Yourls/GenericFunctions.ts
@@ -37,6 +37,16 @@ export async function yourlsApiRequest(
);
}
+ if (typeof response === 'string' && response.includes('Fatal error')) {
+ throw new NodeOperationError(
+ this.getNode(),
+ "Yourls responded with a 'Fatal error', check description for more details",
+ {
+ description: `Server response:\n${response}`,
+ },
+ );
+ }
+
return response;
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
diff --git a/test-results.json b/test-results.json
new file mode 100644
index 0000000000..a58e83e37b
--- /dev/null
+++ b/test-results.json
@@ -0,0 +1,2387 @@
+{
+ "totalWorkflows": 124,
+ "slackMessage": "",
+ "summary": {
+ "failedExecutions": 103,
+ "warningExecutions": 20,
+ "successfulExecutions": 1,
+ "errors": [
+ {
+ "workflowId": "113",
+ "error": "Workflow failed to execute: There is no active execution with id \"7\"."
+ },
+ {
+ "workflowId": "115",
+ "error": "Workflow failed to execute: There is no active execution with id \"8\"."
+ },
+ {
+ "workflowId": "117",
+ "error": "Workflow failed to execute: There is no active execution with id \"10\"."
+ },
+ {
+ "workflowId": "116",
+ "error": "Workflow failed to execute: There is no active execution with id \"9\"."
+ },
+ {
+ "workflowId": "106",
+ "error": "Workflow failed to execute: There is no active execution with id \"14\"."
+ },
+ {
+ "workflowId": "10",
+ "error": "Workflow failed to execute: There is no active execution with id \"15\"."
+ },
+ {
+ "workflowId": "114",
+ "error": "Workflow failed to execute: There is no active execution with id \"13\"."
+ },
+ {
+ "workflowId": "112",
+ "error": "Workflow failed to execute: There is no active execution with id \"5\"."
+ },
+ {
+ "workflowId": "11",
+ "error": "Workflow failed to execute: There is no active execution with id \"3\"."
+ },
+ {
+ "workflowId": "130",
+ "error": "Workflow failed to execute: There is no active execution with id \"26\"."
+ },
+ {
+ "workflowId": "131",
+ "error": "Workflow failed to execute: There is no active execution with id \"27\"."
+ },
+ {
+ "workflowId": "132",
+ "error": "Workflow failed to execute: There is no active execution with id \"28\"."
+ },
+ {
+ "workflowId": "133",
+ "error": "Workflow failed to execute: There is no active execution with id \"29\"."
+ },
+ {
+ "workflowId": "123",
+ "error": "Workflow failed to execute: There is no active execution with id \"19\"."
+ },
+ {
+ "workflowId": "121",
+ "error": "Workflow failed to execute: There is no active execution with id \"18\"."
+ },
+ {
+ "workflowId": "120",
+ "error": "Workflow failed to execute: There is no active execution with id \"17\"."
+ },
+ {
+ "workflowId": "126",
+ "error": "Workflow failed to execute: There is no active execution with id \"21\"."
+ },
+ {
+ "workflowId": "118",
+ "error": "Workflow failed to execute: There is no active execution with id \"22\"."
+ },
+ {
+ "workflowId": "127",
+ "error": "Workflow failed to execute: There is no active execution with id \"23\"."
+ },
+ {
+ "workflowId": "128",
+ "error": "Workflow failed to execute: There is no active execution with id \"24\"."
+ },
+ {
+ "workflowId": "129",
+ "error": "Workflow failed to execute: There is no active execution with id \"25\"."
+ },
+ {
+ "workflowId": "137",
+ "error": "Workflow failed to execute: There is no active execution with id \"30\"."
+ },
+ {
+ "workflowId": "140",
+ "error": "Workflow failed to execute: There is no active execution with id \"32\"."
+ },
+ {
+ "workflowId": "138",
+ "error": "Workflow failed to execute: There is no active execution with id \"31\"."
+ },
+ {
+ "workflowId": "142",
+ "error": "Workflow failed to execute: There is no active execution with id \"34\"."
+ },
+ {
+ "workflowId": "154",
+ "error": "Workflow failed to execute: There is no active execution with id \"43\"."
+ },
+ {
+ "workflowId": "153",
+ "error": "Workflow failed to execute: There is no active execution with id \"42\"."
+ },
+ {
+ "workflowId": "151",
+ "error": "Workflow failed to execute: There is no active execution with id \"40\"."
+ },
+ {
+ "workflowId": "145",
+ "error": "Workflow failed to execute: There is no active execution with id \"36\"."
+ },
+ {
+ "workflowId": "146",
+ "error": "Workflow failed to execute: There is no active execution with id \"37\"."
+ },
+ {
+ "workflowId": "141",
+ "error": "Workflow failed to execute: There is no active execution with id \"33\"."
+ },
+ {
+ "workflowId": "143",
+ "error": "Workflow failed to execute: There is no active execution with id \"35\"."
+ },
+ {
+ "workflowId": "15",
+ "error": "Workflow failed to execute: There is no active execution with id \"38\"."
+ },
+ {
+ "workflowId": "150",
+ "error": "Workflow failed to execute: There is no active execution with id \"39\"."
+ },
+ {
+ "workflowId": "152",
+ "error": "Workflow failed to execute: There is no active execution with id \"41\"."
+ },
+ {
+ "workflowId": "156",
+ "error": "Workflow failed to execute: There is no active execution with id \"45\"."
+ },
+ {
+ "workflowId": "161",
+ "error": "Workflow failed to execute: There is no active execution with id \"46\"."
+ },
+ {
+ "workflowId": "16",
+ "error": "Workflow failed to execute: There is no active execution with id \"47\"."
+ },
+ {
+ "workflowId": "182",
+ "error": "Workflow failed to execute: There is no active execution with id \"54\"."
+ },
+ {
+ "workflowId": "163",
+ "error": "Workflow failed to execute: There is no active execution with id \"55\"."
+ },
+ {
+ "workflowId": "162",
+ "error": "Workflow failed to execute: There is no active execution with id \"56\"."
+ },
+ {
+ "workflowId": "187",
+ "error": "Workflow failed to execute: There is no active execution with id \"57\"."
+ },
+ {
+ "workflowId": "190",
+ "error": "Workflow failed to execute: There is no active execution with id \"58\"."
+ },
+ {
+ "workflowId": "170",
+ "error": "Workflow failed to execute: There is no active execution with id \"50\"."
+ },
+ {
+ "workflowId": "166",
+ "error": "Workflow failed to execute: There is no active execution with id \"48\"."
+ },
+ {
+ "workflowId": "172",
+ "error": "Workflow failed to execute: There is no active execution with id \"51\"."
+ },
+ {
+ "workflowId": "174",
+ "error": "Workflow failed to execute: There is no active execution with id \"52\"."
+ },
+ {
+ "workflowId": "177",
+ "error": "Workflow failed to execute: There is no active execution with id \"53\"."
+ },
+ {
+ "workflowId": "191",
+ "error": "Workflow failed to execute: There is no active execution with id \"59\"."
+ },
+ {
+ "workflowId": "194",
+ "error": "Workflow failed to execute: There is no active execution with id \"60\"."
+ },
+ {
+ "workflowId": "195",
+ "error": "Workflow failed to execute: There is no active execution with id \"62\"."
+ },
+ {
+ "workflowId": "196",
+ "error": "Workflow failed to execute: There is no active execution with id \"61\"."
+ },
+ {
+ "workflowId": "208",
+ "error": "Workflow failed to execute: There is no active execution with id \"72\"."
+ },
+ {
+ "workflowId": "206",
+ "error": "Workflow failed to execute: There is no active execution with id \"70\"."
+ },
+ {
+ "workflowId": "202",
+ "error": "Workflow failed to execute: There is no active execution with id \"66\"."
+ },
+ {
+ "workflowId": "199",
+ "error": "Workflow failed to execute: There is no active execution with id \"65\"."
+ },
+ {
+ "workflowId": "198",
+ "error": "Workflow failed to execute: There is no active execution with id \"64\"."
+ },
+ {
+ "workflowId": "204",
+ "error": "Workflow failed to execute: There is no active execution with id \"68\"."
+ },
+ {
+ "workflowId": "197",
+ "error": "Workflow failed to execute: There is no active execution with id \"63\"."
+ },
+ {
+ "workflowId": "203",
+ "error": "Workflow failed to execute: There is no active execution with id \"67\"."
+ },
+ {
+ "workflowId": "205",
+ "error": "Workflow failed to execute: There is no active execution with id \"69\"."
+ },
+ {
+ "workflowId": "207",
+ "error": "Workflow failed to execute: There is no active execution with id \"71\"."
+ },
+ {
+ "workflowId": "209",
+ "error": "Workflow failed to execute: There is no active execution with id \"73\"."
+ },
+ {
+ "workflowId": "223",
+ "error": "Workflow failed to execute: There is no active execution with id \"75\"."
+ },
+ {
+ "workflowId": "35",
+ "error": "Workflow failed to execute: There is no active execution with id \"81\"."
+ },
+ {
+ "workflowId": "36",
+ "error": "Workflow failed to execute: There is no active execution with id \"82\"."
+ },
+ {
+ "workflowId": "37",
+ "error": "Workflow failed to execute: There is no active execution with id \"83\"."
+ },
+ {
+ "workflowId": "40",
+ "error": "Workflow failed to execute: There is no active execution with id \"84\"."
+ },
+ {
+ "workflowId": "29",
+ "error": "Workflow failed to execute: There is no active execution with id \"79\"."
+ },
+ {
+ "workflowId": "41",
+ "error": "Workflow failed to execute: There is no active execution with id \"85\"."
+ },
+ {
+ "workflowId": "32",
+ "error": "Workflow failed to execute: There is no active execution with id \"80\"."
+ },
+ {
+ "workflowId": "26",
+ "error": "Workflow failed to execute: There is no active execution with id \"78\"."
+ },
+ {
+ "workflowId": "42",
+ "error": "Workflow failed to execute: There is no active execution with id \"87\"."
+ },
+ {
+ "workflowId": "43",
+ "error": "Workflow failed to execute: There is no active execution with id \"88\"."
+ },
+ {
+ "workflowId": "44",
+ "error": "Workflow failed to execute: There is no active execution with id \"89\"."
+ },
+ {
+ "workflowId": "45",
+ "error": "Workflow failed to execute: There is no active execution with id \"90\"."
+ },
+ {
+ "workflowId": "55",
+ "error": "Workflow failed to execute: There is no active execution with id \"96\"."
+ },
+ {
+ "workflowId": "46",
+ "error": "Workflow failed to execute: There is no active execution with id \"97\"."
+ },
+ {
+ "workflowId": "50",
+ "error": "Workflow failed to execute: There is no active execution with id \"92\"."
+ },
+ {
+ "workflowId": "51",
+ "error": "Workflow failed to execute: There is no active execution with id \"93\"."
+ },
+ {
+ "workflowId": "58",
+ "error": "Workflow failed to execute: There is no active execution with id \"98\"."
+ },
+ {
+ "workflowId": "53",
+ "error": "Workflow failed to execute: There is no active execution with id \"95\"."
+ },
+ {
+ "workflowId": "48",
+ "error": "Workflow failed to execute: There is no active execution with id \"91\"."
+ },
+ {
+ "workflowId": "52",
+ "error": "Workflow failed to execute: There is no active execution with id \"94\"."
+ },
+ {
+ "workflowId": "60",
+ "error": "Workflow failed to execute: There is no active execution with id \"100\"."
+ },
+ {
+ "workflowId": "61",
+ "error": "Workflow failed to execute: There is no active execution with id \"101\"."
+ },
+ {
+ "workflowId": "62",
+ "error": "Workflow failed to execute: There is no active execution with id \"102\"."
+ },
+ {
+ "workflowId": "67",
+ "error": "Workflow failed to execute: There is no active execution with id \"104\"."
+ },
+ {
+ "workflowId": "73",
+ "error": "Workflow failed to execute: There is no active execution with id \"107\"."
+ },
+ {
+ "workflowId": "71",
+ "error": "Workflow failed to execute: There is no active execution with id \"106\"."
+ },
+ {
+ "workflowId": "70",
+ "error": "Workflow failed to execute: There is no active execution with id \"105\"."
+ },
+ {
+ "workflowId": "75",
+ "error": "Workflow failed to execute: There is no active execution with id \"108\"."
+ },
+ {
+ "workflowId": "77",
+ "error": "Workflow failed to execute: There is no active execution with id \"109\"."
+ },
+ {
+ "workflowId": "63",
+ "error": "Workflow failed to execute: There is no active execution with id \"103\"."
+ },
+ {
+ "workflowId": "76",
+ "error": "Workflow failed to execute: There is no active execution with id \"110\"."
+ },
+ {
+ "workflowId": "81",
+ "error": "Workflow failed to execute: There is no active execution with id \"111\"."
+ },
+ {
+ "workflowId": "82",
+ "error": "Workflow failed to execute: There is no active execution with id \"112\"."
+ },
+ {
+ "workflowId": "84",
+ "error": "Workflow failed to execute: There is no active execution with id \"114\"."
+ },
+ {
+ "workflowId": "88",
+ "error": "Workflow failed to execute: There is no active execution with id \"115\"."
+ },
+ {
+ "workflowId": "87",
+ "error": "Workflow failed to execute: There is no active execution with id \"117\"."
+ },
+ {
+ "workflowId": "86",
+ "error": "Workflow failed to execute: There is no active execution with id \"118\"."
+ },
+ {
+ "workflowId": "96",
+ "error": "Workflow failed to execute: There is no active execution with id \"122\"."
+ },
+ {
+ "workflowId": "98",
+ "error": "Workflow failed to execute: There is no active execution with id \"124\"."
+ }
+ ],
+ "warnings": [
+ {
+ "workflowId": "101",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "111",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "108",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "107",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "104",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "105",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "103",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "125",
+ "error": "connect ECONNREFUSED 157.90.159.163:5432 on node Postgres"
+ },
+ {
+ "workflowId": "216",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "17",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "6",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "91",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "90",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "95",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "93",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "97",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "83",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "212",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "155",
+ "error": "Workflow contains new data that previously did not exist."
+ },
+ {
+ "workflowId": "229",
+ "error": "Workflow contains new data that previously did not exist."
+ }
+ ]
+ },
+ "coveredNodes": {
+ "n8n-nodes-base.manualTrigger": 1,
+ "n8n-nodes-base.httpRequest": 1
+ },
+ "executions": [
+ {
+ "workflowId": "101",
+ "workflowName": "RenameKeys",
+ "executionTime": 0,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.renameKeys": 1,
+ "n8n-nodes-base.set": 1,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "113",
+ "workflowName": "AMQP",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.amqp": 1,
+ "n8n-nodes-base.set": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"7\"."
+ },
+ {
+ "workflowId": "111",
+ "workflowName": "Spreadsheet File",
+ "executionTime": 0,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.spreadsheetFile": 2,
+ "n8n-nodes-base.function": 3
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "115",
+ "workflowName": "Cockpit:Collection:createEntry updateEntry getAllEntries:Singleton:get:Form:submit",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.cockpit": 5
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"8\"."
+ },
+ {
+ "workflowId": "117",
+ "workflowName": "Gotify:Message:create getAll delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.gotify": 3
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"10\"."
+ },
+ {
+ "workflowId": "116",
+ "workflowName": "Ghost:Post(Admin API):create update get getAll delete:Post(Content API):getAll get",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.ghost": 7
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"9\"."
+ },
+ {
+ "workflowId": "106",
+ "workflowName": "Box:Folder:create search get delete:File:upload get download copy search delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.box": 11,
+ "n8n-nodes-base.readBinaryFile": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"14\"."
+ },
+ {
+ "workflowId": "10",
+ "workflowName": "PagerDuty:incident:create get update getAll:incidentNote:create getAll:User:get:LogEntry:getAll get",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.pagerDuty": 9,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"15\"."
+ },
+ {
+ "workflowId": "114",
+ "workflowName": "Monday:Board:create get getAll archive:BoardColumn:create getAll:BoardGroup:create delete getAll:BoardItem:create addUpdate changeColumnValue get getAll getByColumnValue move delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.mondayCom": 17,
+ "n8n-nodes-base.merge": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"13\"."
+ },
+ {
+ "workflowId": "108",
+ "workflowName": "Merge:append keepKeyMatches mergeByIndex(leftjoin,innerjoin,outerjoin) mergeByKey(ifBlank,always,ifMissing) Multiplex passThrough removeKeyMatches",
+ "executionTime": 0,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.merge": 11,
+ "n8n-nodes-base.set": 12,
+ "n8n-nodes-base.function": 13
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "107",
+ "workflowName": "ReadBinaryFiles",
+ "executionTime": 0,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.function": 1,
+ "n8n-nodes-base.readBinaryFiles": 1
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "112",
+ "workflowName": "Rabbitmq:queue:exchange",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.rabbitmq": 5
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"5\"."
+ },
+ {
+ "workflowId": "11",
+ "workflowName": "Mailchimp:Member:getall get create update delete:Member Tag:create delete:ListGroup:getAll:Campaign:getAll get replicate delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.mailchimp": 12,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"3\"."
+ },
+ {
+ "workflowId": "104",
+ "workflowName": "ReadPDF",
+ "executionTime": 1,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.readPDF": 1,
+ "n8n-nodes-base.readBinaryFile": 1
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "resultData": {
+ "runData": {
+ "Read Binary File": [
+ [
+ "~",
+ {
+ "data": {
+ "main": [
+ [
+ "~",
+ [
+ [
+ "~",
+ {
+ "binary": {
+ "data": {
+ "fileType__added": "pdf"
+ }
+ }
+ }
+ ]
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+ ],
+ "Read PDF": [
+ [
+ "~",
+ {
+ "data": {
+ "main": [
+ [
+ "~",
+ [
+ [
+ "~",
+ {
+ "binary": {
+ "data": {
+ "fileType__added": "pdf"
+ }
+ }
+ }
+ ]
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+ ]
+ }
+ },
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "105",
+ "workflowName": "WriteBinaryFile",
+ "executionTime": 1,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.writeBinaryFile": 1,
+ "n8n-nodes-base.readBinaryFile": 1,
+ "n8n-nodes-base.function": 2
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "103",
+ "workflowName": "ExecuteCommand",
+ "executionTime": 1,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.executeCommand": 2,
+ "n8n-nodes-base.readBinaryFile": 1,
+ "n8n-nodes-base.set": 1,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "130",
+ "workflowName": "Wekan:Board:create get getAll delete:List:create get getAll delete:Card:create update get getAll delete:CardComment:create get getAll delete:CheckList:create get getAll delete:CheckListItem:get update delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.wekan": 24,
+ "n8n-nodes-base.merge": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"26\"."
+ },
+ {
+ "workflowId": "131",
+ "workflowName": "Line:Notification:send",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.line": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"27\"."
+ },
+ {
+ "workflowId": "132",
+ "workflowName": "Mandrill:Message:sendTemplate sendHTML",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.mandrill": 2
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"28\"."
+ },
+ {
+ "workflowId": "133",
+ "workflowName": "Twilio:SMS:send",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.twilio": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"29\"."
+ },
+ {
+ "workflowId": "123",
+ "workflowName": "MongoDB:insert find update delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.mongoDb": 4,
+ "n8n-nodes-base.set": 2
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"19\"."
+ },
+ {
+ "workflowId": "121",
+ "workflowName": "Mautic:Company:create update get getAll delete:Contact:create update get getAll delete:ContactCompany:add remove",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.mautic": 12,
+ "n8n-nodes-base.merge": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"18\"."
+ },
+ {
+ "workflowId": "120",
+ "workflowName": "MySQL:insert update executeQuery",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.set": 2,
+ "n8n-nodes-base.mySql": 4
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"17\"."
+ },
+ {
+ "workflowId": "126",
+ "workflowName": "Kafka",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.kafka": 1,
+ "n8n-nodes-base.set": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"21\"."
+ },
+ {
+ "workflowId": "118",
+ "workflowName": "Redis:info set keys get delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.redis": 5,
+ "n8n-nodes-base.set": 1,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"22\"."
+ },
+ {
+ "workflowId": "127",
+ "workflowName": "Rundeck:Job:execute getMetadata",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.rundeck": 2
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"23\"."
+ },
+ {
+ "workflowId": "128",
+ "workflowName": "Yourls:Url:shorten stats expand",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.yourls": 3
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"24\"."
+ },
+ {
+ "workflowId": "129",
+ "workflowName": "NextCloud:NextCloud:Folder:create move copy delete list:File:upload move copy download delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.nextCloud": 16,
+ "n8n-nodes-base.set": 2,
+ "n8n-nodes-base.readBinaryFile": 1,
+ "n8n-nodes-base.function": 8
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"25\"."
+ },
+ {
+ "workflowId": "137",
+ "workflowName": "TheHive[v3]:Alert:create update get getAll promote merge:Case:create update get getAll:Observable:create update get search getAll:Task:create update get search getAll:Log:create get getAll",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.theHive": 31,
+ "n8n-nodes-base.function": 9
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"30\"."
+ },
+ {
+ "workflowId": "140",
+ "workflowName": "Mailgun",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.mailgun": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"32\"."
+ },
+ {
+ "workflowId": "138",
+ "workflowName": "TheHive[v4]:Alert:create update get getAll promote merge:Case:create update get getAll:Observable:create update get search getAll:Task:create update get search getAll:Log:create get getAll",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.theHive": 35,
+ "n8n-nodes-base.function": 10
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"31\"."
+ },
+ {
+ "workflowId": "142",
+ "workflowName": "MicrosoftOutlook:Folder:create get getAll getChildren delete:Message send getAll get getMime update delete:FolderMessage:getAll:Draft:create update get delete send:MessageAttachment:add getAll get download",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.microsoftOutlook": 24,
+ "n8n-nodes-base.moveBinaryData": 1,
+ "n8n-nodes-base.set": 1,
+ "n8n-nodes-base.function": 11
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"34\"."
+ },
+ {
+ "workflowId": "154",
+ "workflowName": "AWSRekognition:Image:analyze",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.awsRekognition": 1,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"43\"."
+ },
+ {
+ "workflowId": "153",
+ "workflowName": "AWSLambda:invoke",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.awsLambda": 2
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"42\"."
+ },
+ {
+ "workflowId": "151",
+ "workflowName": "Wise:Account:getStatement getBalances getCurrencies:ExchangeRate:get:Profile:get getAll:Recipient:getAll:Quote:create get:Transfer:create get getAll execute delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.wise": 16
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"40\"."
+ },
+ {
+ "workflowId": "145",
+ "workflowName": "Peekalink:isAvailable preview",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.peekalink": 2
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"36\"."
+ },
+ {
+ "workflowId": "146",
+ "workflowName": "TimescaleDB:insert update executeQuery",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.timescaleDb": 4,
+ "n8n-nodes-base.set": 2
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"37\"."
+ },
+ {
+ "workflowId": "141",
+ "workflowName": "MicrosoftExcel:Table:lookup getRows getColumns addRow:Workbook:addWorksheet getAll:Worksheet:getAll getContent",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.microsoftExcel": 8,
+ "n8n-nodes-base.set": 1,
+ "n8n-nodes-base.function": 4
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"33\"."
+ },
+ {
+ "workflowId": "143",
+ "workflowName": "Clearbit:Company:enrich autocomplete:Person:enrich",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.clearbit": 3
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"35\"."
+ },
+ {
+ "workflowId": "15",
+ "workflowName": "DropBox:File: upload move copy download delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.dropbox": 10,
+ "n8n-nodes-base.readBinaryFile": 1,
+ "n8n-nodes-base.function": 7
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"38\"."
+ },
+ {
+ "workflowId": "150",
+ "workflowName": "PostHog:Event:create:Identity:create:Alias:create:Track:page screen",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.postHog": 5
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"39\"."
+ },
+ {
+ "workflowId": "152",
+ "workflowName": "AWSComprehend:Text:detectDominantLanguage detectSentiment detectEntities",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.awsComprehend": 3
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"41\"."
+ },
+ {
+ "workflowId": "125",
+ "workflowName": "Postgres: insert update executeQuery",
+ "executionTime": 1,
+ "finished": false,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.postgres": 4,
+ "n8n-nodes-base.set": 2
+ },
+ "error": "connect ECONNREFUSED 157.90.159.163:5432 on node Postgres"
+ },
+ {
+ "workflowId": "156",
+ "workflowName": "AWSSNS:publish",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.awsSns": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"45\"."
+ },
+ {
+ "workflowId": "161",
+ "workflowName": "Vonage:SMS:send",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.vonage": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"46\"."
+ },
+ {
+ "workflowId": "16",
+ "workflowName": "OpenWeatherMap:: current-weather 5-day-forecast",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.openWeatherMap": 2
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"47\"."
+ },
+ {
+ "workflowId": "182",
+ "workflowName": "Webflow:Item:create get update delete getAll",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.webflow": 5
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"54\"."
+ },
+ {
+ "workflowId": "163",
+ "workflowName": "GoogleSlides:Presentation:create get getSlides replaceText:Page:get getThumbnail",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.googleSlides": 7
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"55\"."
+ },
+ {
+ "workflowId": "162",
+ "workflowName": "AWSSQS:sendMessage",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.awsSqs": 2
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"56\"."
+ },
+ {
+ "workflowId": "187",
+ "workflowName": "Strapi:Entry:create get getAll update delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.strapi": 5,
+ "n8n-nodes-base.set": 2
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"57\"."
+ },
+ {
+ "workflowId": "190",
+ "workflowName": "Discourse:User:create get getAll:Category:create update getAll:Group:create update get getAll:UserGroup:add remove:Post:create update get getAll",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.discourse": 16,
+ "n8n-nodes-base.set": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"58\"."
+ },
+ {
+ "workflowId": "170",
+ "workflowName": "Xero:Contact:create get getAll update:Invoice:create get getAll update",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.xero": 8
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"50\"."
+ },
+ {
+ "workflowId": "166",
+ "workflowName": "Intercom:Company:create get getAll update users:Lead:create get getAll update delete:User:create get getAll update delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.intercom": 15
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"48\"."
+ },
+ {
+ "workflowId": "172",
+ "workflowName": "Paypal:Payout:create get:PayoutItem:get",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.payPal": 4
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"51\"."
+ },
+ {
+ "workflowId": "174",
+ "workflowName": "Vero:User:create alias addTags removeTags unsubscribe resubscribe delete:Event:track",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.vero": 8,
+ "n8n-nodes-base.set": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"52\"."
+ },
+ {
+ "workflowId": "177",
+ "workflowName": "uProc:Finance:*;",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.uproc": 24
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"53\"."
+ },
+ {
+ "workflowId": "191",
+ "workflowName": "Mailerlite:Subscriber:create get update getAll",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.mailerLite": 4
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"59\"."
+ },
+ {
+ "workflowId": "194",
+ "workflowName": "Mailjet:Email:send sendTemplate",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.mailjet": 3
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"60\"."
+ },
+ {
+ "workflowId": "195",
+ "workflowName": "Kitemaker:Organization:get:Space:getAll:User:getAll:WorkItem:create get getAll update",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.kitemaker": 7
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"62\"."
+ },
+ {
+ "workflowId": "196",
+ "workflowName": "QuickBooks:Bill:create get update getAll delete:Item:getAll:get:Vendor:create get getAll update:Employee:create get update getAll:Customer:create get update getAll:Estimate:create get update getAll send delete:Invoice:create get update getAll send delete:Payment:create get update getAll send delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.quickbooks": 37
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"61\"."
+ },
+ {
+ "workflowId": "208",
+ "workflowName": "RocketChat:Chat:postMessage",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.rocketchat": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"72\"."
+ },
+ {
+ "workflowId": "206",
+ "workflowName": "Keap:Company:create getAll:Contact:upsert get getAll delete:ContactNote:create get update getAll delete:ContactTag:create getAll delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.keap": 14
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"70\"."
+ },
+ {
+ "workflowId": "202",
+ "workflowName": "Beeminder:Datapoint:create getAll update delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.beeminder": 5
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"66\"."
+ },
+ {
+ "workflowId": "199",
+ "workflowName": "MailCheck:Email:check",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.mailcheck": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"65\"."
+ },
+ {
+ "workflowId": "198",
+ "workflowName": "GoogleCloudFirestore:Document:create get upset getAll query delete:Collection:getAll",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.googleFirebaseCloudFirestore": 7,
+ "n8n-nodes-base.set": 2
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"64\"."
+ },
+ {
+ "workflowId": "204",
+ "workflowName": "HelpScout:Mailbox:getAll get:Customer:create get update getAll properties:Conversation:create get getAll delete:Thread:create getAll",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.helpScout": 13
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"68\"."
+ },
+ {
+ "workflowId": "197",
+ "workflowName": "MQTT:sendMessage",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.mqtt": 3,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"63\"."
+ },
+ {
+ "workflowId": "203",
+ "workflowName": "Paddle:Payment:getAll reschedule:Plan:getAll get:Product:getAll:Coupon:create update getAll:User:getAll",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.paddle": 9,
+ "n8n-nodes-base.dateTime": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"67\"."
+ },
+ {
+ "workflowId": "205",
+ "workflowName": "Pushover:Message:push",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.pushover": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"69\"."
+ },
+ {
+ "workflowId": "207",
+ "workflowName": "Keap:EcommerceOrder:create get getAll delete:EcommerceProduct:create get getAll delete:Email:createRecord getAll:File:upload getAll delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.keap": 15
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"71\"."
+ },
+ {
+ "workflowId": "209",
+ "workflowName": "AWS Transcribe:TranscriptionJob:create get getAll delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.awsTranscribe": 4,
+ "n8n-nodes-base.set": 1,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"73\"."
+ },
+ {
+ "workflowId": "223",
+ "workflowName": "LingvaNex:Translate",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.lingvaNex": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"75\"."
+ },
+ {
+ "workflowId": "216",
+ "workflowName": "FunctionItem:JSON,Binary and Static data",
+ "executionTime": 0,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.functionItem": 3
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "17",
+ "workflowName": "OpenThesaurus:: Get Synonyms",
+ "executionTime": 1,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.openThesaurus": 1
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "35",
+ "workflowName": "Slack:User:getPresence info:UserProfile:get update:Message:post getPermalink update postEphermera l delete:Reaction:add get remove",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.slack": 12
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"81\"."
+ },
+ {
+ "workflowId": "36",
+ "workflowName": "Slack:File:upload getAll get:Star:add getAll delete:Channgel:create update setPurpose setTopic ge t invite leave join getAll history replies member archive unarchive",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.slack": 22
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"82\"."
+ },
+ {
+ "workflowId": "37",
+ "workflowName": "GitLab:Repository:get getIssues:Issue:create createComment edit get lock:Release:create get getAll update delete:User:getRepositories",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.gitlab": 13
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"83\"."
+ },
+ {
+ "workflowId": "40",
+ "workflowName": "Gmail:Draft:create getAll get delete:Label:create getAll get delete:Message:send getAll get reply delete:MessageLabel:add remove",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.gmail": 16,
+ "n8n-nodes-base.function": 2
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"84\"."
+ },
+ {
+ "workflowId": "29",
+ "workflowName": "ClickUp:Comment:create update getAll delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.clickUp": 8,
+ "n8n-nodes-base.function": 7
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"79\"."
+ },
+ {
+ "workflowId": "41",
+ "workflowName": "GoogleCalendar:Event:create getAll get update delete:Calendar:availability",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.googleCalendar": 6
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"85\"."
+ },
+ {
+ "workflowId": "32",
+ "workflowName": "Drif:Contact:create update get delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.drift": 4
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"80\"."
+ },
+ {
+ "workflowId": "26",
+ "workflowName": "ClickUp:Folder:create update getAll get delete:Goal:create update getAll get delete:GoalKeyResult:create update delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.clickUp": 13,
+ "n8n-nodes-base.function": 11
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"78\"."
+ },
+ {
+ "workflowId": "42",
+ "workflowName": "GoogleTask:create update getAll get delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.googleTasks": 5
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"87\"."
+ },
+ {
+ "workflowId": "43",
+ "workflowName": "GoogleContacts:create update getAll get delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.googleContacts": 5,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"88\"."
+ },
+ {
+ "workflowId": "44",
+ "workflowName": "GoogleDrive:Folder:create share delete:File:upload share list download copy delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.googleDrive": 11
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"89\"."
+ },
+ {
+ "workflowId": "45",
+ "workflowName": "GoogleSheets:SpreadSheet:create:Sheet:create append read lookup update delete clean remove",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.googleSheets": 9,
+ "n8n-nodes-base.set": 1,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"90\"."
+ },
+ {
+ "workflowId": "55",
+ "workflowName": "Hunter: domainSearch emailFinder emailVerifier",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.hunter": 3
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"96\"."
+ },
+ {
+ "workflowId": "46",
+ "workflowName": "GoogleBooks:Volume:getAll get:BookShelf:getAll get:BookShelfVolume:add move getAll remove clear",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.googleBooks": 9
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"97\"."
+ },
+ {
+ "workflowId": "50",
+ "workflowName": "Brandfetch:color company font logo industry",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.Brandfetch": 5
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"92\"."
+ },
+ {
+ "workflowId": "51",
+ "workflowName": "Clockify:Project:create update get getAll:Tag:create update getAll delete:TimeEntry:create update get delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.clockify": 13,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"93\"."
+ },
+ {
+ "workflowId": "58",
+ "workflowName": "Todoist:Task:create get close reopen getAll delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.todoist": 6
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"98\"."
+ },
+ {
+ "workflowId": "53",
+ "workflowName": "ConvertKit:CustomField:create getAll update delete:Form:getAll addSubscriber getSubscriptions:Tag:create getAll:TagSubscriber:add getAll delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.convertKit": 12
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"95\"."
+ },
+ {
+ "workflowId": "48",
+ "workflowName": "Asana:Project:getAll get:Task:create update move getAll get delete:TaskComment:add remove:TaskTag:add remove:TaskProject:add remov e:SubTask:create getAll:User:get getAll",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.asana": 18
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"91\"."
+ },
+ {
+ "workflowId": "52",
+ "workflowName": "Coda:Table:getAllColumns getColumn getAllRows getRow createRow pushButton deleteRow:View:getAll get getAllViewColumns getAllViewRows updateViewRow pushViewButto n:Formula:get getAll:Control:get getAll",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.coda": 17,
+ "n8n-nodes-base.set": 2
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"94\"."
+ },
+ {
+ "workflowId": "60",
+ "workflowName": "Taiga:Issue:create update get getAll delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.taiga": 5
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"100\"."
+ },
+ {
+ "workflowId": "61",
+ "workflowName": "Spotify:Artist:get getAlbums getRelatedArtists getTopTracks:Album:get getNewReleases getTracks:Track:get getAudioFeatures:Playlist:create getUserPlaylists get add getTracks delete:Player:recentylPlayed currentlyPlaying:Library:getLikedTracks",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.spotify": 18
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"101\"."
+ },
+ {
+ "workflowId": "62",
+ "workflowName": "ProfitWell:Company:getSetting:Metric:getMontly getDaily",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.profitWell": 3
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"102\"."
+ },
+ {
+ "workflowId": "67",
+ "workflowName": " Twist:Channel:create update get getAll archive unarchive delete:MessageConversation:create get getAll update delete:Thread:create get update getAll delete:Comment:create get update getAll delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.twist": 23
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"104\"."
+ },
+ {
+ "workflowId": "73",
+ "workflowName": "Youtube:Channel:get getAll update:Playlist:create update getAll get delete:PlaylistItem:add getAll get delete:videoCategory:getAll:Video:rate get upload update delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.youTube": 18,
+ "n8n-nodes-base.httpRequest": 1,
+ "n8n-nodes-base.readBinaryFile": 1,
+ "n8n-nodes-base.function": 7
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"107\"."
+ },
+ {
+ "workflowId": "71",
+ "workflowName": "Contentful-preview-api:locale:getAll:entry:getAll:ContentType:get:Asset:getAll get:Space:get",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.contentful": 7
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"106\"."
+ },
+ {
+ "workflowId": "70",
+ "workflowName": "Contentful-delivery-api:locale:getAll:entry:getAll:ContentType:get:Asset:getAll get:Space:get",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.contentful": 7
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"105\"."
+ },
+ {
+ "workflowId": "75",
+ "workflowName": "Harvest:Client:create update getAll get delete:Invoice:create update getAll get delete:Contact:create update get getAll delete:Company:get",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.harvest": 16
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"108\"."
+ },
+ {
+ "workflowId": "77",
+ "workflowName": "Harvest:Expense:create update get getAll delete:Estimate:create update get getAll delete",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.harvest": 12
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"109\"."
+ },
+ {
+ "workflowId": "63",
+ "workflowName": "Segment:Identify:create:Track:event page",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.segment": 4
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"103\"."
+ },
+ {
+ "workflowId": "76",
+ "workflowName": "Harvest:Project:create update getAll get delete:Task:getAll get:TimeEntry:createByDuration createByStartEnd update getAll restartTime stopTime delete:User:me get getAll update",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.harvest": 24
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"110\"."
+ },
+ {
+ "workflowId": "6",
+ "workflowName": "Static files workflow",
+ "executionTime": 0,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.writeBinaryFile": 1,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "81",
+ "workflowName": "PhantomBuster:getAll get launch getOutput",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.phantombuster": 4
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"111\"."
+ },
+ {
+ "workflowId": "82",
+ "workflowName": "Microsoft OneDrive:Folder:create getChildren share search delete:File:upload get share download copy delete search",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.microsoftOneDrive": 12,
+ "n8n-nodes-base.function": 6
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"112\"."
+ },
+ {
+ "workflowId": "84",
+ "workflowName": "Matrix:Room:create invite kick leave:RoomMember:getAll:Message:create getAll:Account:me:Media:upload:Event:get",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.matrix": 10,
+ "n8n-nodes-base.readBinaryFile": 1,
+ "n8n-nodes-base.merge": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"114\"."
+ },
+ {
+ "workflowId": "91",
+ "workflowName": "HTML Extract:json binary",
+ "executionTime": 0,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.functionItem": 1,
+ "n8n-nodes-base.htmlExtract": 2,
+ "n8n-nodes-base.function": 2,
+ "n8n-nodes-base.moveBinaryData": 1
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "resultData": {
+ "runData": {
+ "Move Binary Data": [
+ [
+ "~",
+ {
+ "data": {
+ "main": [
+ [
+ "~",
+ [
+ [
+ "~",
+ {
+ "binary": {
+ "data": {
+ "fileExtension__added": "json"
+ }
+ }
+ }
+ ]
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+ ]
+ }
+ },
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "88",
+ "workflowName": "ActiveCampaign:EcommerceCustomer:create update get getAll delete:EcommerceOrder:create update get getAll delete:EcommerceOrderProduct:getByProductId getByOrderId getAll",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.activeCampaign": 17
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"115\"."
+ },
+ {
+ "workflowId": "87",
+ "workflowName": "ActiveCampaign:Deal:create update get createNote updateNote getAll delete:Tag:create update get getAll delete:Connection:create update get getAll delete:List:getAll",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.activeCampaign": 20
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"117\"."
+ },
+ {
+ "workflowId": "86",
+ "workflowName": "ActiveCampaign:Contact:create update get getAll delete:Account:create update get getAll delete:AccountContact:create update delete:ContactTag:add remove:ContactList:add remove",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.activeCampaign": 17,
+ "n8n-nodes-base.merge": 1
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"118\"."
+ },
+ {
+ "workflowId": "90",
+ "workflowName": "Date&Time:formatDate",
+ "executionTime": 0,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.dateTime": 6,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "95",
+ "workflowName": "Set",
+ "executionTime": 0,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.set": 1,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "93",
+ "workflowName": "Move Binary Data:toJSON:toBinary",
+ "executionTime": 0,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.moveBinaryData": 2,
+ "n8n-nodes-base.functionItem": 1,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "resultData": {
+ "runData": {
+ "Move Binary Data": [
+ [
+ "~",
+ {
+ "data": {
+ "main": [
+ [
+ "~",
+ [
+ [
+ "~",
+ {
+ "binary": {
+ "data": {
+ "fileExtension__added": "json"
+ }
+ }
+ }
+ ]
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+ ]
+ }
+ },
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "96",
+ "workflowName": "MessageBird:Sms:send:Balance:get",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.messageBird": 2
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"122\"."
+ },
+ {
+ "workflowId": "97",
+ "workflowName": "Crypto",
+ "executionTime": 0,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.crypto": 15,
+ "n8n-nodes-base.function": 3
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "230",
+ "workflowName": "CredentialOnlyNodes",
+ "executionTime": 1,
+ "finished": true,
+ "executionStatus": "success",
+ "coveredNodes": {
+ "n8n-nodes-base.manualTrigger": 1,
+ "n8n-nodes-base.httpRequest": 1
+ }
+ },
+ {
+ "workflowId": "98",
+ "workflowName": "Disqus:Forum:get getCategories getThreads getPosts",
+ "executionTime": 0,
+ "finished": false,
+ "executionStatus": "error",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.disqus": 4
+ },
+ "error": "Workflow failed to execute: There is no active execution with id \"124\"."
+ },
+ {
+ "workflowId": "83",
+ "workflowName": "RSS Feed",
+ "executionTime": 1,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.rssFeedRead": 1,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "212",
+ "workflowName": "Git:*",
+ "executionTime": 3,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.git": 14,
+ "n8n-nodes-base.executeCommand": 2
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "resultData": {
+ "runData": {
+ "Git2": [
+ [
+ "~",
+ {
+ "data": {
+ "main": [
+ [
+ "~",
+ [
+ [
+ " "
+ ],
+ [
+ "-",
+ {
+ "json": {
+ "success": true
+ },
+ "pairedItem": {
+ "item": 1
+ }
+ }
+ ]
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+ ],
+ "Git7": [
+ [
+ "~",
+ {
+ "data": {
+ "main": [
+ [
+ "~",
+ [
+ [
+ " "
+ ],
+ [
+ "-",
+ {
+ "json": {
+ "success": true
+ },
+ "pairedItem": {
+ "item": 1
+ }
+ }
+ ]
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+ ]
+ }
+ },
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "155",
+ "workflowName": "AWSS3:Bucket:create getAll search:File:upload getAll download delete:Folder:create getAll delete",
+ "executionTime": 16,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.awsS3": 12,
+ "n8n-nodes-base.set": 2,
+ "n8n-nodes-base.function": 1
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ },
+ {
+ "workflowId": "229",
+ "workflowName": "GoogleDrive:Folder:create share delete:File:upload share list download copy delete copy (RL)",
+ "executionTime": 23,
+ "finished": true,
+ "executionStatus": "warning",
+ "coveredNodes": {
+ "n8n-nodes-base.start": 1,
+ "n8n-nodes-base.googleDrive": 20,
+ "n8n-nodes-base.stickyNote": 2
+ },
+ "error": "Workflow contains new data that previously did not exist.",
+ "changes": {
+ "data": {
+ "executionData": {
+ "metadata__added": {}
+ }
+ }
+ }
+ }
+ ]
+}
\ No newline at end of file