feat: Migrate Test Workflows to Main Repo (#15504)

This commit is contained in:
shortstacked
2025-05-20 07:24:56 +01:00
committed by GitHub
parent 7e3bcd3895
commit 867842d473
408 changed files with 161037 additions and 8 deletions

View File

@@ -0,0 +1,49 @@
name: 'Setup Environment and Build Project'
description: 'Sets up Node.js with pnpm, installs dependencies, enables Turborepo caching, and builds the project.'
inputs:
node-version:
description: 'Node.js version to use.'
required: false
default: '22.x'
enable-caching:
description: Flag to enable/disable all caching (pnpm store, Turborepo, and dist folders).'
required: false
default: 'true'
cache-suffix:
description: 'Suffix to add to the dist folder cache key.'
required: false
default: 'build'
runs:
using: "composite"
steps:
- name: Setup pnpm CLI
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
with:
run_install: false
- name: Setup Node.js
uses: useblacksmith/setup-node@v5
with:
node-version: ${{ inputs.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
shell: bash
- name: Configure Turborepo Cache
if: inputs.enable-caching == 'true'
uses: useblacksmith/caching-for-turbo@v1
- name: Build packages
run: pnpm build
shell: bash
- name: Cache 'dist' folders
if: inputs.enable-caching == 'true'
uses: useblacksmith/cache@v5
with:
path: ./packages/**/dist
key: ${{ github.sha }}:${{ inputs.cache-suffix }}

View File

@@ -0,0 +1,217 @@
name: Callable Test Workflows
on:
workflow_call:
inputs:
git_ref:
description: 'The Git ref (branch, tag, or SHA) to checkout and test.'
required: true
type: string
send_webhook_report:
description: 'Set to true to send test results to the webhook.'
required: false
type: boolean
default: false
pr_number:
description: 'The PR number, if applicable (for context in webhook).'
required: false
type: string
default: ''
secrets:
N8N_ENCRYPTION_KEY:
description: 'Encryption key for n8n operations.'
required: true
CI_SENTRY_DSN:
description: 'Sentry DSN for CI test runs.'
required: false
RESULTS_WEBHOOK_URL:
description: 'Webhook URL to send test results to (if enabled).'
required: false
jobs:
build_and_test:
name: Install, Build, and Test Workflows
runs-on: blacksmith-2vcpu-ubuntu-2204
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
ref: ${{ inputs.git_ref }}
- name: Setup Environment and Build Project
uses: ./.github/actions/setup-and-build
with:
node-version: '22.x'
cache-suffix: 'workflow-test'
- name: Install OS dependencies
run: |
sudo apt update -y
echo 'tzdata tzdata/Areas select Europe' | sudo debconf-set-selections
echo 'tzdata tzdata/Zones/Europe select Paris' | sudo debconf-set-selections
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends graphicsmagick
sudo apt-get clean
sudo rm -rf /var/lib/apt/lists/*
- name: Import credentials
run: ./packages/cli/bin/n8n import:credentials --input=test-workflows/credentials.json
env:
N8N_ENCRYPTION_KEY: ${{ secrets.N8N_ENCRYPTION_KEY }}
- name: Import workflows
run: ./packages/cli/bin/n8n import:workflow --separate --input=test-workflows/workflows
env:
N8N_ENCRYPTION_KEY: ${{ secrets.N8N_ENCRYPTION_KEY }}
- name: Copy static assets
run: |
mkdir -p /tmp/testData/pdfs
cp assets/n8n-logo.png /tmp/n8n-logo.png
cp assets/n8n-screenshot.png /tmp/n8n-screenshot.png
cp test-workflows/testData/pdfs/*.pdf /tmp/testData/pdfs/
- name: Run tests
id: tests
run: ./packages/cli/bin/n8n executeBatch --shallow --skipList=test-workflows/skipList.json --githubWorkflow --shortOutput --output=test-results.json --concurrency=16 --compare=test-workflows/snapshots
continue-on-error: true
env:
N8N_ENCRYPTION_KEY: ${{ secrets.N8N_ENCRYPTION_KEY }}
SKIP_STATISTICS_EVENTS: "true"
DB_SQLITE_POOL_SIZE: "4"
N8N_SENTRY_DSN: ${{ secrets.CI_SENTRY_DSN }}
- name: Report test outcome
if: always()
run: |
echo "Test step outcome was: ${{ steps.tests.outcome }}"
if [[ "${{ steps.tests.outcome }}" == "failure" ]]; then
echo "Workflow tests failed but the workflow will continue."
elif [[ "${{ steps.tests.outcome }}" == "success" ]]; then
echo "Workflow tests passed."
else
echo "Workflow tests outcome: ${{ steps.tests.outcome }}"
fi
- name: Prepare and Send Test Results to Webhook
if: inputs.send_webhook_report == true
shell: bash
env:
WEBHOOK_URL: ${{ secrets.RESULTS_WEBHOOK_URL }}
TEST_RESULTS_FILE: ./test-results.json
GH_REPOSITORY: ${{ github.repository }}
GH_RUN_ID: ${{ github.run_id }}
GH_RUN_ATTEMPT: ${{ github.run_attempt }}
GH_REF_TESTED: ${{ inputs.git_ref }}
GH_EVENT_NAME: ${{ github.event_name }}
GH_PR_NUMBER_INPUT: ${{ inputs.pr_number }}
GH_WORKFLOW_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
GH_ACTOR: ${{ github.actor }}
run: |
echo "Attempting to send test results to webhook..."
echo "Test results file expected at: $TEST_RESULTS_FILE"
if [ ! -f "$TEST_RESULTS_FILE" ]; then
echo "::warning::Test results file ($TEST_RESULTS_FILE) not found. Skipping webhook."
exit 0
fi
if ! command -v jq &> /dev/null; then
echo "jq not found. Installing jq..."
sudo apt-get update -qq && sudo apt-get install -y -qq jq
if ! command -v jq &> /dev/null; then
echo "::error::Failed to install jq. Cannot process JSON."
exit 1
fi
fi
pr_number_to_send="$GH_PR_NUMBER_INPUT"
echo "Preparing JSON payload..."
if [ ! -s "$TEST_RESULTS_FILE" ]; then
echo "::warning::Test results file ($TEST_RESULTS_FILE) is empty. Sending only GitHub context."
enriched_payload=$(jq -n \
--arg repository "$GH_REPOSITORY" \
--arg run_id "$GH_RUN_ID" \
--arg run_attempt "$GH_RUN_ATTEMPT" \
--arg ref_tested "$GH_REF_TESTED" \
--arg event_name "$GH_EVENT_NAME" \
--arg pr_num "$pr_number_to_send" \
--arg workflow_run_url "$GH_WORKFLOW_RUN_URL" \
--arg actor "$GH_ACTOR" \
'{
githubWorkflowContext: {
repository: $repository,
runId: $run_id,
runAttempt: $run_attempt,
gitRefTested: $ref_tested,
triggeringEventName: $event_name,
prNumber: (if $pr_num == "" then null else $pr_num | tonumber? // $pr_num end),
workflowRunUrl: $workflow_run_url,
triggeredBy: $actor
}
}')
else
enriched_payload=$(jq \
--arg repository "$GH_REPOSITORY" \
--arg run_id "$GH_RUN_ID" \
--arg run_attempt "$GH_RUN_ATTEMPT" \
--arg ref_tested "$GH_REF_TESTED" \
--arg event_name "$GH_EVENT_NAME" \
--arg pr_num "$pr_number_to_send" \
--arg workflow_run_url "$GH_WORKFLOW_RUN_URL" \
--arg actor "$GH_ACTOR" \
'. + {
githubWorkflowContext: {
repository: $repository,
runId: $run_id,
runAttempt: $run_attempt,
gitRefTested: $ref_tested,
triggeringEventName: $event_name,
prNumber: (if $pr_num == "" then null else $pr_num | tonumber? // $pr_num end),
workflowRunUrl: $workflow_run_url,
triggeredBy: $actor
}
}' "$TEST_RESULTS_FILE")
fi
jq_exit_code=$?
if [ $jq_exit_code -ne 0 ] || [ -z "$enriched_payload" ]; then
echo "::error::Failed to process JSON with jq (exit code: $jq_exit_code). Input file: $TEST_RESULTS_FILE"
if [ -s "$TEST_RESULTS_FILE" ]; then
echo "Contents of $TEST_RESULTS_FILE that may have caused an error:"
head -c 1000 "$TEST_RESULTS_FILE" # Print first 1000 chars
echo "" # Newline after head
elif [ -f "$TEST_RESULTS_FILE" ]; then
echo "$TEST_RESULTS_FILE exists but is empty."
fi
exit 1
fi
echo "Enriched payload to send (first 500 chars):"
echo "$enriched_payload" | head -c 500
echo ""
echo "Sending data to webhook: $WEBHOOK_URL"
http_response_code=$(curl -s -w "%{http_code}" \
-X POST \
-H "Content-Type: application/json" \
-H "X-GitHub-Event: $GH_EVENT_NAME" \
-H "X-GitHub-Run-Id: $GH_RUN_ID" \
--data "$enriched_payload" \
"$WEBHOOK_URL" \
-o curl_response_body.txt 2>curl_stderr.txt)
curl_stderr_content=$(cat curl_stderr.txt)
if [ -n "$curl_stderr_content" ]; then
echo "::warning::curl stderr: $curl_stderr_content"
fi
echo "Webhook response code: $http_response_code"
echo "Webhook response body:"
cat curl_response_body.txt
if [[ "$http_response_code" -ge 200 && "$http_response_code" -lt 300 ]]; then
echo "Successfully sent data to webhook."
else
echo "::error::Webhook call failed with status code $http_response_code."
fi

View File

@@ -0,0 +1,45 @@
name: Test Workflows Nightly and Manual
on:
schedule:
- cron: '0 2 * * *'
workflow_dispatch:
inputs:
git_ref_to_test:
description: 'The Git ref (branch, tag, or SHA) to run tests against.'
required: true
type: string
default: 'master'
permissions:
contents: read
jobs:
run_tests:
name: Run Workflow Tests
runs-on: blacksmith-2vcpu-ubuntu-2204
timeout-minutes: 10
steps:
- name: Determine Git Ref for Testing
id: determine_ref
shell: bash
run: |
if [[ "${{ github.event_name }}" == "schedule" ]]; then
echo "EFFECTIVE_GIT_REF=master" >> $GITHUB_OUTPUT
echo "Scheduled run: Using 'master' branch."
elif [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
echo "EFFECTIVE_GIT_REF=${{ github.event.inputs.git_ref_to_test }}" >> $GITHUB_OUTPUT
echo "Manual dispatch: Using ref '${{ github.event.inputs.git_ref_to_test }}'."
else
echo "EFFECTIVE_GIT_REF=master" >> $GITHUB_OUTPUT
echo "Warning: Unknown event type '${{ github.event_name }}', defaulting to 'master'."
fi
- name: Call Reusable Test Workflow
uses: ./.github/workflows/run-test-workflows.yml
with:
git_ref: ${{ steps.determine_ref.outputs.EFFECTIVE_GIT_REF }}
send_webhook_report: false
pr_number: ''
secrets: inherit

View File

@@ -0,0 +1,25 @@
name: Test Workflows on PR Approval
on:
pull_request_review:
types: [submitted]
permissions:
contents: read
pull-requests: read
jobs:
run_tests_after_approval:
name: Run Tests on Approved PR
if: github.event.review.state == 'approved'
runs-on: blacksmith-2vcpu-ubuntu-2204
timeout-minutes: 10
steps:
- name: Call Reusable Test Workflow on Approved PR
uses: ./.github/workflows/test-workflows-callable.yml
with:
git_ref: ${{ github.event.pull_request.head.sha }}
send_webhook_report: true
pr_number: ${{ github.event.pull_request.number }}
secrets: inherit

View File

@@ -0,0 +1,78 @@
name: Test Workflows on PR Comment
on:
issue_comment:
types: [created]
permissions:
pull-requests: read
contents: read
jobs:
trigger_tests_on_comment:
name: Handle /test-workflows command
if: github.event.issue.pull_request && startsWith(github.event.comment.body, '/test-workflows')
runs-on: ubuntu-latest
steps:
- name: Check User Permission and Get PR Details
id: pr_check
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
result-encoding: json
script: |
const commenter = context.actor;
const issue = context.issue;
let hasPermission = false;
let prDetails = null;
try {
const { data: permissions } = await github.rest.repos.getCollaboratorPermissionLevel({
owner: issue.owner,
repo: issue.repo,
username: commenter
});
const allowedPermissions = ['admin', 'write', 'maintain'];
if (allowedPermissions.includes(permissions.permission)) {
console.log(`User @${commenter} has '${permissions.permission}' permission.`);
hasPermission = true;
} else {
core.setFailed(`User @${commenter} does not have sufficient permissions (admin/write/maintain) to trigger workflows.`);
}
} catch (error) {
core.setFailed(`Could not verify permissions for @${commenter}: ${error.message}`);
}
if (!hasPermission) {
return { permission_granted: false };
}
const prNumber = issue.number;
try {
const { data: pr } = await github.rest.pulls.get({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: prNumber,
});
prDetails = {
head_sha: pr.head.sha,
pr_number_string: prNumber.toString()
};
console.log(`Workspaceed PR details: SHA - ${prDetails.head_sha}, PR Number - ${prDetails.pr_number_string}`);
} catch (error) {
core.setFailed(`Failed to fetch PR details for PR #${prNumber}: ${error.message}`);
return { permission_granted: true, pr_fetch_error: true };
}
return { permission_granted: true, ...prDetails };
- name: Call Reusable Test Workflow
if: steps.pr_check.outcome == 'success' && fromJson(steps.pr_check.outputs.result).permission_granted == true && fromJson(steps.pr_check.outputs.result).head_sha
uses: ./.github/workflows/test-workflows-callable.yml
with:
git_ref: ${{ fromJson(steps.pr_check.outputs.result).head_sha }}
send_webhook_report: true
pr_number: ${{ fromJson(steps.pr_check.outputs.result).pr_number_string }}
secrets: inherit

1
.gitignore vendored
View File

@@ -24,3 +24,4 @@ CHANGELOG-*.md
build-storybook.log build-storybook.log
*.junit.xml *.junit.xml
junit.xml junit.xml
test-results.json

View File

@@ -21,7 +21,8 @@
"node_modules": true, "node_modules": true,
"dist": true, "dist": true,
"pnpm-lock.yaml": true, "pnpm-lock.yaml": true,
"**/*.snapshot.json": true "**/*.snapshot.json": true,
"test-workflows": true
}, },
"typescript.format.enable": false, "typescript.format.enable": false,
"typescript.tsdk": "node_modules/typescript/lib", "typescript.tsdk": "node_modules/typescript/lib",

View File

@@ -6,3 +6,4 @@ export * from './module';
export * from './multi-main'; export * from './multi-main';
export { Redactable } from './redactable'; export { Redactable } from './redactable';
export * from './shutdown'; export * from './shutdown';
export * from './module/module-metadata';

View File

@@ -28,6 +28,13 @@ import type {
const re = /\d+/; const re = /\d+/;
interface ISkipList {
workflowId: string;
status: string;
skipReason: string;
ticketReference: string;
}
export class ExecuteBatch extends BaseCommand { export class ExecuteBatch extends BaseCommand {
static description = '\nExecutes multiple workflows once'; static description = '\nExecutes multiple workflows once';
@@ -53,7 +60,7 @@ export class ExecuteBatch extends BaseCommand {
static examples = [ static examples = [
'$ n8n executeBatch', '$ n8n executeBatch',
'$ n8n executeBatch --concurrency=10 --skipList=/data/skipList.txt', '$ n8n executeBatch --concurrency=10 --skipList=/data/skipList.json',
'$ n8n executeBatch --debug --output=/data/output.json', '$ n8n executeBatch --debug --output=/data/output.json',
'$ n8n executeBatch --ids=10,13,15 --shortOutput', '$ n8n executeBatch --ids=10,13,15 --shortOutput',
'$ n8n executeBatch --snapshot=/data/snapshots --shallow', '$ n8n executeBatch --snapshot=/data/snapshots --shallow',
@@ -245,12 +252,15 @@ export class ExecuteBatch extends BaseCommand {
if (flags.skipList !== undefined) { if (flags.skipList !== undefined) {
if (fs.existsSync(flags.skipList)) { if (fs.existsSync(flags.skipList)) {
const contents = fs.readFileSync(flags.skipList, { encoding: 'utf-8' }); const contents = fs.readFileSync(flags.skipList, { encoding: 'utf-8' });
skipIds.push( try {
...contents const parsedSkipList = JSON.parse(contents) as ISkipList[];
.trimEnd() parsedSkipList.forEach((item) => {
.split(',') skipIds.push(item.workflowId);
.filter((id) => re.exec(id)), });
); } catch (error) {
this.logger.error('Skip list file is not a valid JSON. Exiting.');
return;
}
} else { } else {
this.logger.error('Skip list file not found. Exiting.'); this.logger.error('Skip list file not found. Exiting.');
return; return;

2
test-workflows/README.md Normal file
View File

@@ -0,0 +1,2 @@
# test-workflows
n8n workflows used for testing nodes

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,926 @@
[
{
"workflowId": "1",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "4",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "5",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "10",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "19",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "20",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "21",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "22",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "26",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "27",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "28",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "29",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "30",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "31",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "33",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "34",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "38",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "39",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "40",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "41",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "42",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "43",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "45",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "46",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "47",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "49",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "50",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "51",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "54",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "56",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "57",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "59",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "60",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "64",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "65",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "66",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "68",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "69",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "72",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "73",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "74",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "75",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "76",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "77",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "78",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "79",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "80",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "82",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "85",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "89",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "92",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "94",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "102",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "104",
"status": "SKIPPED",
"skipReason": "This node is deprecated and has been replaced by the Extract From File node. Also it didn't interact with any live services, it could have been an integation test.",
"ticketReference": ""
},
{
"workflowId": "106",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "109",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "110",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "112",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "113",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "115",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "116",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "117",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "118",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "119",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "120",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "121",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "122",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "123",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "124",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "125",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "126",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "127",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "128",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "129",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "130",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "131",
"status": "SKIPPED",
"skipReason": "This API service has been discontinued. For more details, please check here: https://notify-bot.line.me/closing-announce on node Line",
"ticketReference": ""
},
{
"workflowId": "134",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "133",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "135",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "136",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "137",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "138",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "139",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "141",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "142",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "144",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "145",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "146",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "147",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "148",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "149",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "151",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "157",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "158",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "159",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "160",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "163",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "164",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "165",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "167",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "168",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "169",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "170",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "171",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "173",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "176",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "177",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "179",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "180",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "183",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "184",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "185",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "186",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "187",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "188",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "189",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "190",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "191",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "192",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "193",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "194",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "196",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "197",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "198",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "199",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "200",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "201",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "202",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "204",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "206",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "207",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "208",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "214",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "215",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "217",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "218",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "219",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "220",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "221",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "222",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "224",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "225",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "226",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "227",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "252",
"status": "SKIPPED",
"skipReason": "",
"ticketReference": ""
},
{
"workflowId": "223",
"status": "SKIPPED",
"skipReason": "You can not complete this operation. Please check your balance on node LingvaNex",
"ticketReference": ""
},
{
"workflowId": "143",
"status": "SKIPPED",
"skipReason": "Invalid API key for Clearbit.",
"ticketReference": ""
},
{
"workflowId": "86",
"status": "SKIPPED",
"skipReason": "It looks like a timing issue with the delete operation. The contact was created but not found when trying to delete it. Tested it with the same workflow and it worked.",
"ticketReference": "CAT-790"
},
{
"workflowId": "87",
"status": "SKIPPED",
"skipReason": "It looks like a timing issue with the delete operation. The contact was created but not found when trying to delete it. Tested it with the same workflow and it worked.",
"ticketReference": "CAT-790"
},
{
"workflowId": "88",
"status": "SKIPPED",
"skipReason": "It looks like a timing issue with the delete operation. The contact was created but not found when trying to delete it. Tested it with the same workflow and it worked.",
"ticketReference": "CAT-790"
},
{
"workflowId": "233",
"status": "SKIPPED",
"skipReason": "Not Found on node Qdrant Vector Store. Could be a timing issue.",
"ticketReference": ""
},
{
"workflowId": "241",
"status": "SKIPPED",
"skipReason": "OpenAIAgent requires an OpenAI chat model on node AI Agent1",
"ticketReference": ""
},
{
"workflowId": "259",
"status": "SKIPPED",
"skipReason": "Please return an array of objects, one for each item you would like to output. on node Code",
"ticketReference": ""
},
{
"workflowId": "254",
"status": "SKIPPED",
"skipReason": "Overloaded on node AI Agent3. Is this because I ran the test workflow multiple times?",
"ticketReference": ""
}
]

View File

@@ -0,0 +1,397 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1676891385621,
"executionTime": 1,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Twitter": [
{
"startTime": 1676891385623,
"executionTime": 416,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"created_at": "Mon Feb 20 11:09:45 +0000 2023",
"id": 1627626558218182700,
"id_str": "1627626558218182657",
"text": "Hello from n8n testing framework 0.5036048381984097",
"truncated": false,
"entities": {
"object": true
},
"source": "<a href=\"https://empty-quail-11.hooks.n8n.cloud/\" rel=\"nofollow\">n8n testing framework</a>",
"in_reply_to_status_id": {
"object": true
},
"in_reply_to_status_id_str": {
"object": true
},
"in_reply_to_user_id": {
"object": true
},
"in_reply_to_user_id_str": {
"object": true
},
"in_reply_to_screen_name": {
"object": true
},
"user": {
"object": true
},
"geo": {
"object": true
},
"coordinates": {
"object": true
},
"place": {
"object": true
},
"contributors": {
"object": true
},
"is_quote_status": false,
"retweet_count": 0,
"favorite_count": 0,
"favorited": false,
"retweeted": false,
"lang": "en"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Twitter4": [
{
"startTime": 1676891386039,
"executionTime": 227,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"created_at": "Sun Feb 19 15:58:36 +0000 2023",
"id": 1627336861717876700,
"id_str": "1627336861717876742",
"text": "- @PlausibleHQ tracking plan, in progress 🚧\n- @n8n_io workflows✅\n- @MailerLite add Users subscription✅\n- @NotionHQ… https://t.co/2Mb94nO48X",
"truncated": true,
"entities": {
"object": true
},
"metadata": {
"object": true
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"in_reply_to_status_id": {
"object": true
},
"in_reply_to_status_id_str": {
"object": true
},
"in_reply_to_user_id": {
"object": true
},
"in_reply_to_user_id_str": {
"object": true
},
"in_reply_to_screen_name": {
"object": true
},
"user": {
"object": true
},
"geo": {
"object": true
},
"coordinates": {
"object": true
},
"place": {
"object": true
},
"contributors": {
"object": true
},
"is_quote_status": true,
"retweet_count": 0,
"favorite_count": 4,
"favorited": false,
"retweeted": false,
"lang": "en"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Twitter1": [
{
"startTime": 1676891386266,
"executionTime": 234,
"source": [
{
"previousNode": "Twitter"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"created_at": "Mon Feb 20 11:09:45 +0000 2023",
"id": 1627626558218182700,
"id_str": "1627626558218182657",
"text": "Hello from n8n testing framework 0.5036048381984097",
"truncated": false,
"entities": {
"object": true
},
"source": "<a href=\"https://empty-quail-11.hooks.n8n.cloud/\" rel=\"nofollow\">n8n testing framework</a>",
"in_reply_to_status_id": {
"object": true
},
"in_reply_to_status_id_str": {
"object": true
},
"in_reply_to_user_id": {
"object": true
},
"in_reply_to_user_id_str": {
"object": true
},
"in_reply_to_screen_name": {
"object": true
},
"user": {
"object": true
},
"geo": {
"object": true
},
"coordinates": {
"object": true
},
"place": {
"object": true
},
"contributors": {
"object": true
},
"is_quote_status": false,
"retweet_count": 0,
"favorite_count": 0,
"favorited": true,
"retweeted": false,
"lang": "en"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Twitter2": [
{
"startTime": 1676891386500,
"executionTime": 244,
"source": [
{
"previousNode": "Twitter1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"created_at": "Mon Feb 20 11:09:46 +0000 2023",
"id": 1627626561162682400,
"id_str": "1627626561162682372",
"text": "RT @nodeqa1: Hello from n8n testing framework 0.5036048381984097",
"truncated": false,
"entities": {
"object": true
},
"source": "<a href=\"https://empty-quail-11.hooks.n8n.cloud/\" rel=\"nofollow\">n8n testing framework</a>",
"in_reply_to_status_id": {
"object": true
},
"in_reply_to_status_id_str": {
"object": true
},
"in_reply_to_user_id": {
"object": true
},
"in_reply_to_user_id_str": {
"object": true
},
"in_reply_to_screen_name": {
"object": true
},
"user": {
"object": true
},
"geo": {
"object": true
},
"coordinates": {
"object": true
},
"place": {
"object": true
},
"contributors": {
"object": true
},
"retweeted_status": {
"object": true
},
"is_quote_status": false,
"retweet_count": 1,
"favorite_count": 0,
"favorited": true,
"retweeted": true,
"lang": "en"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Twitter3": [
{
"startTime": 1676891386744,
"executionTime": 218,
"source": [
{
"previousNode": "Twitter2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"created_at": "Mon Feb 20 11:09:45 +0000 2023",
"id": 1627626558218182700,
"id_str": "1627626558218182657",
"text": "Hello from n8n testing framework 0.5036048381984097",
"truncated": false,
"entities": {
"object": true
},
"source": "<a href=\"https://empty-quail-11.hooks.n8n.cloud/\" rel=\"nofollow\">n8n testing framework</a>",
"in_reply_to_status_id": {
"object": true
},
"in_reply_to_status_id_str": {
"object": true
},
"in_reply_to_user_id": {
"object": true
},
"in_reply_to_user_id_str": {
"object": true
},
"in_reply_to_screen_name": {
"object": true
},
"user": {
"object": true
},
"geo": {
"object": true
},
"coordinates": {
"object": true
},
"place": {
"object": true
},
"contributors": {
"object": true
},
"is_quote_status": false,
"retweet_count": 1,
"favorite_count": 1,
"favorited": true,
"retweeted": true,
"lang": "en"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Twitter3"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-02-20T11:09:45.616Z",
"stoppedAt": "2023-02-20T11:09:46.962Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,708 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1710331886877,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PagerDuty": [
{
"startTime": 1710331886877,
"executionTime": 1389,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"incident_number": 1722,
"title": "Test",
"description": "Test",
"created_at": "2024-03-13T12:11:28Z",
"updated_at": "2024-03-13T12:11:28Z",
"status": "triggered",
"incident_key": "d3b8964acebb45b4a91944a06bc89930",
"service": {
"object": true
},
"assignments": [
"json array"
],
"assigned_via": "escalation_policy",
"last_status_change_at": "2024-03-13T12:11:28Z",
"resolved_at": {
"object": true
},
"first_trigger_log_entry": {
"object": true
},
"alert_counts": {
"object": true
},
"is_mergeable": true,
"escalation_policy": {
"object": true
},
"teams": [
"json array"
],
"impacted_services": [
"json array"
],
"pending_actions": [
"json array"
],
"acknowledgements": [
"json array"
],
"basic_alert_grouping": {
"object": true
},
"alert_grouping": {
"object": true
},
"last_status_change_by": {
"object": true
},
"incidents_responders": [
"json array"
],
"responder_requests": [
"json array"
],
"subscriber_requests": [
"json array"
],
"urgency": "high",
"id": "Q3Z252030C2VEG",
"type": "incident",
"summary": "[#1722] Test",
"self": "https://api.pagerduty.com/incidents/Q3Z252030C2VEG",
"html_url": "https://dev-nodeqan8n.pagerduty.com/incidents/Q3Z252030C2VEG"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PagerDuty7": [
{
"startTime": 1710331888266,
"executionTime": 1108,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "R4CLO6G4XRB6395SM2S6WLWH4A",
"type": "assign_log_entry",
"summary": "Assigned to Node Qa.",
"self": "https://api.pagerduty.com/log_entries/R4CLO6G4XRB6395SM2S6WLWH4A",
"html_url": {
"object": true
},
"created_at": "2024-03-13T12:11:28Z",
"agent": {
"object": true
},
"channel": {
"object": true
},
"service": {
"object": true
},
"incident": {
"object": true
},
"teams": [
"json array"
],
"contexts": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PagerDuty6": [
{
"startTime": 1710331889374,
"executionTime": 861,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"name": "Node Qa",
"email": "nodeqa@n8n.io",
"time_zone": "Europe/Berlin",
"color": "purple",
"avatar_url": "https://secure.gravatar.com/avatar/c81277605b129fdafaacede5ae34e07c.png?d=mm&r=PG",
"billed": true,
"role": "owner",
"description": {
"object": true
},
"invitation_sent": false,
"job_title": {
"object": true
},
"teams": [
"json array"
],
"contact_methods": [
"json array"
],
"notification_rules": [
"json array"
],
"personal_web_cal_url": "webcal://dev-nodeqan8n.pagerduty.com/private/effe61535b688813e51b31cd68f98cf54428fe2848b86672bcff8689c9900c5a/feed",
"personal_http_cal_url": "https://dev-nodeqan8n.pagerduty.com/private/effe61535b688813e51b31cd68f98cf54428fe2848b86672bcff8689c9900c5a/feed",
"coordinated_incidents": [
"json array"
],
"id": "PT0VVWO",
"type": "user",
"summary": "Node Qa",
"self": "https://api.pagerduty.com/users/PT0VVWO",
"html_url": "https://dev-nodeqan8n.pagerduty.com/users/PT0VVWO"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PagerDuty1": [
{
"startTime": 1710331890235,
"executionTime": 919,
"source": [
{
"previousNode": "PagerDuty"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"incident_number": 1722,
"title": "Test",
"description": "Test",
"created_at": "2024-03-13T12:11:28Z",
"updated_at": "2024-03-13T12:11:28Z",
"status": "triggered",
"incident_key": "d3b8964acebb45b4a91944a06bc89930",
"service": {
"object": true
},
"assignments": [
"json array"
],
"assigned_via": "escalation_policy",
"last_status_change_at": "2024-03-13T12:11:28Z",
"resolved_at": {
"object": true
},
"first_trigger_log_entry": {
"object": true
},
"alert_counts": {
"object": true
},
"is_mergeable": true,
"escalation_policy": {
"object": true
},
"teams": [
"json array"
],
"impacted_services": [
"json array"
],
"pending_actions": [
"json array"
],
"acknowledgements": [
"json array"
],
"basic_alert_grouping": {
"object": true
},
"alert_grouping": {
"object": true
},
"last_status_change_by": {
"object": true
},
"incidents_responders": [
"json array"
],
"responder_requests": [
"json array"
],
"subscriber_requests": [
"json array"
],
"urgency": "high",
"id": "Q3Z252030C2VEG",
"type": "incident",
"summary": "[#1722] Test",
"self": "https://api.pagerduty.com/incidents/Q3Z252030C2VEG",
"html_url": "https://dev-nodeqan8n.pagerduty.com/incidents/Q3Z252030C2VEG"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Sleep 0.5 second1": [
{
"startTime": 1710331891154,
"executionTime": 503,
"source": [
{
"previousNode": "PagerDuty"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"incident_number": 1722,
"title": "Test",
"description": "Test",
"created_at": "2024-03-13T12:11:28Z",
"updated_at": "2024-03-13T12:11:28Z",
"status": "triggered",
"incident_key": "d3b8964acebb45b4a91944a06bc89930",
"service": {
"object": true
},
"assignments": [
"json array"
],
"assigned_via": "escalation_policy",
"last_status_change_at": "2024-03-13T12:11:28Z",
"resolved_at": {
"object": true
},
"first_trigger_log_entry": {
"object": true
},
"alert_counts": {
"object": true
},
"is_mergeable": true,
"escalation_policy": {
"object": true
},
"teams": [
"json array"
],
"impacted_services": [
"json array"
],
"pending_actions": [
"json array"
],
"acknowledgements": [
"json array"
],
"basic_alert_grouping": {
"object": true
},
"alert_grouping": {
"object": true
},
"last_status_change_by": {
"object": true
},
"incidents_responders": [
"json array"
],
"responder_requests": [
"json array"
],
"subscriber_requests": [
"json array"
],
"urgency": "high",
"id": "Q3Z252030C2VEG",
"type": "incident",
"summary": "[#1722] Test",
"self": "https://api.pagerduty.com/incidents/Q3Z252030C2VEG",
"html_url": "https://dev-nodeqan8n.pagerduty.com/incidents/Q3Z252030C2VEG"
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"PagerDuty4": [
{
"startTime": 1710331891657,
"executionTime": 1169,
"source": [
{
"previousNode": "PagerDuty1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"note": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PagerDuty5": [
{
"startTime": 1710331892826,
"executionTime": 843,
"source": [
{
"previousNode": "PagerDuty1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "POGZPU2",
"user": {
"object": true
},
"content": "Simple note for an incident",
"created_at": "2024-03-13T13:11:32+01:00",
"channel": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PagerDuty2": [
{
"startTime": 1710331893669,
"executionTime": 1144,
"source": [
{
"previousNode": "PagerDuty1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"incident_number": 1722,
"title": "Test",
"description": "Test",
"created_at": "2024-03-13T12:11:28Z",
"updated_at": "2024-03-13T12:11:34Z",
"status": "acknowledged",
"incident_key": "d3b8964acebb45b4a91944a06bc89930",
"service": {
"object": true
},
"assignments": [
"json array"
],
"assigned_via": "escalation_policy",
"last_status_change_at": "2024-03-13T12:11:34Z",
"resolved_at": {
"object": true
},
"first_trigger_log_entry": {
"object": true
},
"alert_counts": {
"object": true
},
"is_mergeable": true,
"escalation_policy": {
"object": true
},
"teams": [
"json array"
],
"impacted_services": [
"json array"
],
"pending_actions": [
"json array"
],
"acknowledgements": [
"json array"
],
"basic_alert_grouping": {
"object": true
},
"alert_grouping": {
"object": true
},
"last_status_change_by": {
"object": true
},
"incidents_responders": [
"json array"
],
"responder_requests": [
"json array"
],
"subscriber_requests": [
"json array"
],
"urgency": "high",
"id": "Q3Z252030C2VEG",
"type": "incident",
"summary": "[#1722] Test",
"self": "https://api.pagerduty.com/incidents/Q3Z252030C2VEG",
"html_url": "https://dev-nodeqan8n.pagerduty.com/incidents/Q3Z252030C2VEG"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PagerDuty8": [
{
"startTime": 1710331894813,
"executionTime": 871,
"source": [
{
"previousNode": "Sleep 0.5 second1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "RQHI382RHNLDBDSY2RC947RRYM",
"type": "trigger_log_entry",
"summary": "Triggered through the website.",
"self": "https://api.pagerduty.com/log_entries/RQHI382RHNLDBDSY2RC947RRYM",
"html_url": "https://dev-nodeqan8n.pagerduty.com/incidents/Q3Z252030C2VEG/log_entries/RQHI382RHNLDBDSY2RC947RRYM",
"created_at": "2024-03-13T12:11:28Z",
"agent": {
"object": true
},
"channel": {
"object": true
},
"service": {
"object": true
},
"incident": {
"object": true
},
"teams": [
"json array"
],
"contexts": [
"json array"
],
"event_details": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PagerDuty3": [
{
"startTime": 1710331895685,
"executionTime": 940,
"source": [
{
"previousNode": "PagerDuty2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"incident_number": 1673,
"title": "Test",
"description": "Test",
"created_at": "2024-02-14T02:09:08Z",
"updated_at": "2024-02-14T02:09:12Z",
"status": "acknowledged",
"incident_key": "d11eee79ee8048e99aa37675daf7a621",
"service": {
"object": true
},
"assignments": [
"json array"
],
"assigned_via": "escalation_policy",
"last_status_change_at": "2024-02-14T02:09:12Z",
"resolved_at": {
"object": true
},
"first_trigger_log_entry": {
"object": true
},
"alert_counts": {
"object": true
},
"is_mergeable": true,
"escalation_policy": {
"object": true
},
"teams": [
"json array"
],
"pending_actions": [
"json array"
],
"acknowledgements": [
"json array"
],
"basic_alert_grouping": {
"object": true
},
"alert_grouping": {
"object": true
},
"last_status_change_by": {
"object": true
},
"incidents_responders": [
"json array"
],
"responder_requests": [
"json array"
],
"subscriber_requests": [
"json array"
],
"urgency": "high",
"id": "Q3SVCZJPSB89X4",
"type": "incident",
"summary": "[#1673] Test",
"self": "https://api.pagerduty.com/incidents/Q3SVCZJPSB89X4",
"html_url": "https://dev-nodeqan8n.pagerduty.com/incidents/Q3SVCZJPSB89X4"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "PagerDuty3"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-03-13T12:11:26.876Z",
"stoppedAt": "2024-03-13T12:11:36.625Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,132 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994468,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set": [
{
"startTime": 1747343994468,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"name": "test",
"toBeRenamed": "name"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Rename Keys": [
{
"startTime": 1747343994468,
"executionIndex": 2,
"source": [
{
"previousNode": "Set"
}
],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"name": "test",
"Renamed": "name"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Function": [
{
"startTime": 1747343994468,
"executionIndex": 3,
"source": [
{
"previousNode": "Rename Keys"
}
],
"hints": [],
"executionTime": 2,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"name": "test",
"Renamed": "name"
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
]
},
"lastNodeExecuted": "Function"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.467Z",
"stoppedAt": "2025-05-15T21:19:54.470Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,213 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994471,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set": [
{
"startTime": 1747343994471,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 4,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"filename": "filename1747343994475"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Execute Command": [
{
"startTime": 1747343994475,
"executionIndex": 2,
"source": [
{
"previousNode": "Set"
}
],
"hints": [],
"executionTime": 61,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"exitCode": 0,
"stderr": "",
"stdout": ""
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Read Binary File": [
{
"startTime": 1747343994536,
"executionIndex": 3,
"source": [
{
"previousNode": "Execute Command"
}
],
"hints": [],
"executionTime": 14,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"exitCode": 0,
"stderr": "",
"stdout": ""
},
"binary": {
"data": {
"mimeType": "text/plain",
"fileType": "text",
"data": "dGVzdAo=",
"directory": "/tmp",
"fileName": "filename1747343994475",
"fileSize": "5 B"
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Function": [
{
"startTime": 1747343994550,
"executionIndex": 4,
"source": [
{
"previousNode": "Read Binary File"
}
],
"hints": [],
"executionTime": 1,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"exitCode": 0,
"stderr": "",
"stdout": ""
},
"binary": {
"data": {
"mimeType": "text/plain",
"fileType": "text",
"data": "dGVzdAo=",
"directory": "/tmp",
"fileName": "filename1747343994475",
"fileSize": "5 B"
}
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Execute Command1": [
{
"startTime": 1747343994551,
"executionIndex": 5,
"source": [
{
"previousNode": "Function"
}
],
"hints": [],
"executionTime": 10,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"exitCode": 0,
"stderr": "",
"stdout": ""
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Execute Command1"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.471Z",
"stoppedAt": "2025-05-15T21:19:54.561Z",
"status": "running",
"finished": true
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,191 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994464,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Function": [
{
"startTime": 1747343994464,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 2,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"binary": {
"data": {
"data": "VGVzdCBXcml0ZSBCaW5hcnkgRmlsZSBub2Rl",
"fileExtension": "txt",
"fileName": "file.txt"
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Write Binary File": [
{
"startTime": 1747343994467,
"executionIndex": 2,
"source": [
{
"previousNode": "Function"
}
],
"hints": [],
"executionTime": 74,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"fileName": "/tmp/test_write_binary_file.txt"
},
"pairedItem": {
"item": 0
},
"binary": {
"data": {
"data": "VGVzdCBXcml0ZSBCaW5hcnkgRmlsZSBub2Rl",
"fileExtension": "txt",
"fileName": "file.txt"
}
}
}
]
]
}
}
],
"Read Binary File": [
{
"startTime": 1747343994541,
"executionIndex": 3,
"source": [
{
"previousNode": "Write Binary File"
}
],
"hints": [],
"executionTime": 18,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"fileName": "/tmp/test_write_binary_file.txt"
},
"binary": {
"data": {
"mimeType": "text/plain",
"fileType": "text",
"fileExtension": "txt",
"data": "VGVzdCBXcml0ZSBCaW5hcnkgRmlsZSBub2Rl",
"directory": "/tmp",
"fileName": "test_write_binary_file.txt",
"fileSize": "27 B"
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Function1": [
{
"startTime": 1747343994559,
"executionIndex": 4,
"source": [
{
"previousNode": "Read Binary File"
}
],
"hints": [],
"executionTime": 1,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"fileName": "/tmp/test_write_binary_file.txt"
},
"binary": {
"data": {
"mimeType": "text/plain",
"fileType": "text",
"fileExtension": "txt",
"data": "VGVzdCBXcml0ZSBCaW5hcnkgRmlsZSBub2Rl",
"directory": "/tmp",
"fileName": "test_write_binary_file.txt",
"fileSize": "27 B"
}
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
]
},
"lastNodeExecuted": "Function1"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.464Z",
"stoppedAt": "2025-05-15T21:19:54.560Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,63 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994481,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Read Binary Files": [
{
"startTime": 1747343994481,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 54,
"executionStatus": "success",
"data": {
"main": [
[]
]
}
}
]
},
"lastNodeExecuted": "Read Binary Files"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.481Z",
"stoppedAt": "2025-05-15T21:19:54.535Z",
"status": "running",
"finished": true
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,423 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343895845,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"CustomerIo": [
{
"startTime": 1747343895845,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 391,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 1,
"deduplicate_id": "1:1621034971",
"name": "Onboarding Campaign",
"type": "segment",
"created": 1614868557,
"updated": 1621034971,
"active": false,
"state": "draft",
"actions": [
"json array"
],
"first_started": 0,
"created_by": "nodeqa@n8n.io",
"tags": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"CustomerIo3": [
{
"startTime": 1747343896236,
"executionIndex": 2,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 184,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "customer1747343896241",
"email": "fakeemail1747343896244@gmail.com"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"CustomerIo1": [
{
"startTime": 1747343896420,
"executionIndex": 3,
"source": [
{
"previousNode": "CustomerIo"
}
],
"hints": [],
"executionTime": 393,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"series": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"CustomerIo5": [
{
"startTime": 1747343896813,
"executionIndex": 4,
"source": [
{
"previousNode": "CustomerIo3"
}
],
"hints": [],
"executionTime": 173,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"CustomerIo7": [
{
"startTime": 1747343896986,
"executionIndex": 5,
"source": [
{
"previousNode": "CustomerIo3"
}
],
"hints": [],
"executionTime": 167,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"CustomerIo2": [
{
"startTime": 1747343897153,
"executionIndex": 6,
"source": [
{
"previousNode": "CustomerIo1"
}
],
"hints": [],
"executionTime": 365,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 1,
"deduplicate_id": "1:1621034971",
"name": "Onboarding Campaign",
"type": "segment",
"created": 1614868557,
"updated": 1621034971,
"active": false,
"state": "draft",
"actions": [
"json array"
],
"first_started": 0,
"tags": [
"json array"
]
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": 2,
"deduplicate_id": "2:1621034971",
"name": "Re-engage Inactive Users",
"type": "segment",
"created": 1614868557,
"updated": 1621034971,
"active": false,
"state": "draft",
"actions": [
"json array"
],
"first_started": 0,
"tags": [
"json array"
]
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": 4,
"deduplicate_id": "4:1646029232",
"name": "Order Confirmation",
"type": "event",
"created": 1614868557,
"updated": 1646029232,
"active": false,
"state": "draft",
"actions": [
"json array"
],
"first_started": 0,
"tags": [
"json array"
],
"event_name": "purchase"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": 5,
"deduplicate_id": "5:1646029232",
"name": "Anniversary Campaign",
"type": "date",
"created": 1614868557,
"updated": 1646029232,
"active": false,
"state": "draft",
"actions": [
"json array"
],
"first_started": 0,
"tags": [
"json array"
],
"frequency": "yearly",
"date_attribute": "created_at",
"timezone": "US/Eastern",
"use_customer_timezone": false,
"start_hour": 10,
"start_minutes": 0
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": 7,
"deduplicate_id": "7:1657207430",
"name": "test cmpg",
"type": "segment",
"created": 1657207358,
"updated": 1657207430,
"active": false,
"state": "draft",
"actions": [
"json array"
],
"first_started": 0,
"tags": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"CustomerIo6": [
{
"startTime": 1747343897518,
"executionIndex": 7,
"source": [
{
"previousNode": "CustomerIo5"
}
],
"hints": [],
"executionTime": 166,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"CustomerIo8": [
{
"startTime": 1747343897684,
"executionIndex": 8,
"source": [
{
"previousNode": "CustomerIo7"
}
],
"hints": [],
"executionTime": 178,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"CustomerIo4": [
{
"startTime": 1747343897862,
"executionIndex": 9,
"source": [
{
"previousNode": "CustomerIo8"
}
],
"hints": [],
"executionTime": 168,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "CustomerIo4"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:18:15.844Z",
"stoppedAt": "2025-05-15T21:18:18.030Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,642 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994528,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailchimp1": [
{
"startTime": 1747343994528,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 2401,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "c81277605b129fdafaacede5ae34e07c",
"email_address": "nodeqa@n8n.io",
"unique_email_id": "cb7624ba4b",
"contact_id": "2f4ff7f445018adb50969f99df88dd9e",
"full_name": "node qa",
"web_id": 502612022,
"email_type": "html",
"status": "subscribed",
"consents_to_one_to_one_messaging": true,
"sms_phone_number": "",
"sms_subscription_status": "",
"sms_subscription_last_updated": "",
"merge_fields": {
"object": true
},
"interests": {
"object": true
},
"stats": {
"object": true
},
"ip_signup": "",
"timestamp_signup": "",
"ip_opt": "41.62.62.149",
"timestamp_opt": "2021-02-19T10:59:04+00:00",
"member_rating": 2,
"last_changed": "2025-05-15T21:19:00+00:00",
"language": "",
"vip": false,
"email_client": "",
"location": {
"object": true
},
"source": "Admin Add",
"tags_count": 0,
"tags": [
"json array"
],
"list_id": "eb9ad4be19",
"_links": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Function": [
{
"startTime": 1747343996929,
"executionIndex": 2,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 1,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"email": "test43996930@gmail.com"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailchimp7": [
{
"startTime": 1747343996930,
"executionIndex": 3,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 398,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"category_id": "2adbc0d543",
"list_id": "eb9ad4be19",
"id": "928c597e2a",
"name": "QA",
"subscriber_count": "1",
"display_order": 1,
"_links": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailchimp8": [
{
"startTime": 1747343997328,
"executionIndex": 4,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 446,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "e117a6f053",
"status": "sent",
"settings": {
"object": true
},
"tracking": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailchimp": [
{
"startTime": 1747343997774,
"executionIndex": 5,
"source": [
{
"previousNode": "Mailchimp1"
}
],
"hints": [],
"executionTime": 359,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "c81277605b129fdafaacede5ae34e07c",
"email_address": "nodeqa@n8n.io",
"unique_email_id": "cb7624ba4b",
"contact_id": "2f4ff7f445018adb50969f99df88dd9e",
"full_name": "node qa",
"web_id": 502612022,
"email_type": "html",
"status": "subscribed",
"consents_to_one_to_one_messaging": true,
"sms_phone_number": "",
"sms_subscription_status": "",
"sms_subscription_last_updated": "",
"merge_fields": {
"object": true
},
"interests": {
"object": true
},
"stats": {
"object": true
},
"ip_signup": "",
"timestamp_signup": "",
"ip_opt": "41.62.62.149",
"timestamp_opt": "2021-02-19T10:59:04+00:00",
"member_rating": 2,
"last_changed": "2025-05-15T21:19:00+00:00",
"language": "",
"vip": false,
"email_client": "",
"location": {
"object": true
},
"source": "Admin Add",
"tags_count": 0,
"tags": [
"json array"
],
"list_id": "eb9ad4be19",
"_links": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailchimp3": [
{
"startTime": 1747343998133,
"executionIndex": 6,
"source": [
{
"previousNode": "Function"
}
],
"hints": [],
"executionTime": 571,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "e73ff29160716a59a89fa9ebe5dfb51d",
"email_address": "test43996930@gmail.com",
"unique_email_id": "a157130acb",
"contact_id": "77fbbbd43baa1fdc2164af11cdc785a5",
"full_name": "",
"web_id": 606621185,
"email_type": "html",
"status": "subscribed",
"consents_to_one_to_one_messaging": true,
"sms_phone_number": "",
"sms_subscription_status": "",
"sms_subscription_last_updated": "",
"merge_fields": {
"object": true
},
"interests": {
"object": true
},
"stats": {
"object": true
},
"ip_signup": "",
"timestamp_signup": "",
"ip_opt": "193.203.152.163",
"timestamp_opt": "2025-05-15T21:19:58+00:00",
"member_rating": 2,
"last_changed": "2025-05-15T21:19:58+00:00",
"language": "",
"vip": false,
"email_client": "",
"location": {
"object": true
},
"source": "API - Generic",
"tags_count": 0,
"tags": [
"json array"
],
"list_id": "eb9ad4be19",
"_links": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailchimp9": [
{
"startTime": 1747343998704,
"executionIndex": 7,
"source": [
{
"previousNode": "Mailchimp8"
}
],
"hints": [],
"executionTime": 372,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "e117a6f053",
"web_id": 4820246,
"type": "plaintext",
"create_time": "2021-02-19T12:32:03+00:00",
"archive_url": "http://eepurl.com/hq3G0v",
"long_archive_url": "https://us1.campaign-archive.com/?u=396affb9e515ed83edaecbba9&id=e117a6f053",
"status": "sent",
"emails_sent": 1,
"send_time": "2021-02-19T12:33:21+00:00",
"content_type": "template",
"needs_block_refresh": false,
"resendable": false,
"recipients": {
"object": true
},
"settings": {
"object": true
},
"tracking": {
"object": true
},
"report_summary": {
"object": true
},
"delivery_status": {
"object": true
},
"_links": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailchimp2": [
{
"startTime": 1747343999076,
"executionIndex": 8,
"source": [
{
"previousNode": "Mailchimp"
}
],
"hints": [],
"executionTime": 454,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "c81277605b129fdafaacede5ae34e07c",
"email_address": "nodeqa@n8n.io",
"unique_email_id": "cb7624ba4b",
"contact_id": "2f4ff7f445018adb50969f99df88dd9e",
"full_name": "node qa",
"web_id": 502612022,
"email_type": "html",
"status": "subscribed",
"consents_to_one_to_one_messaging": true,
"sms_phone_number": "",
"sms_subscription_status": "",
"sms_subscription_last_updated": "",
"merge_fields": {
"object": true
},
"interests": {
"object": true
},
"stats": {
"object": true
},
"ip_signup": "",
"timestamp_signup": "",
"ip_opt": "41.62.62.149",
"timestamp_opt": "2021-02-19T10:59:04+00:00",
"member_rating": 2,
"last_changed": "2025-05-15T21:19:00+00:00",
"language": "",
"vip": false,
"email_client": "",
"location": {
"object": true
},
"source": "Admin Add",
"tags_count": 0,
"tags": [
"json array"
],
"list_id": "eb9ad4be19",
"_links": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailchimp4": [
{
"startTime": 1747343999530,
"executionIndex": 9,
"source": [
{
"previousNode": "Mailchimp"
}
],
"hints": [],
"executionTime": 429,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailchimp6": [
{
"startTime": 1747343999959,
"executionIndex": 10,
"source": [
{
"previousNode": "Mailchimp3"
}
],
"hints": [],
"executionTime": 514,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailchimp10": [
{
"startTime": 1747344000473,
"executionIndex": 11,
"source": [
{
"previousNode": "Mailchimp9"
}
],
"hints": [],
"executionTime": 2041,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "3e3f70f4ea",
"web_id": 11040424,
"type": "plaintext",
"create_time": "2025-05-15T21:20:00+00:00",
"archive_url": "http://eepurl.com/jeUIs2",
"long_archive_url": "https://us1.campaign-archive.com/?u=396affb9e515ed83edaecbba9&id=3e3f70f4ea",
"status": "save",
"emails_sent": 0,
"send_time": "",
"content_type": "template",
"needs_block_refresh": false,
"resendable": false,
"recipients": {
"object": true
},
"settings": {
"object": true
},
"tracking": {
"object": true
},
"delivery_status": {
"object": true
},
"_links": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailchimp5": [
{
"startTime": 1747344002514,
"executionIndex": 12,
"source": [
{
"previousNode": "Mailchimp4"
}
],
"hints": [],
"executionTime": 369,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailchimp11": [
{
"startTime": 1747344002883,
"executionIndex": 13,
"source": [
{
"previousNode": "Mailchimp10"
}
],
"hints": [],
"executionTime": 621,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Mailchimp11"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.527Z",
"stoppedAt": "2025-05-15T21:20:03.504Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,105 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343907477,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"GraphQL": [
{
"startTime": 1747343907477,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 177,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"data": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Function": [
{
"startTime": 1747343907655,
"executionIndex": 2,
"source": [
{
"previousNode": "GraphQL"
}
],
"hints": [],
"executionTime": 4,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"data": {
"object": true
}
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
]
},
"lastNodeExecuted": "Function"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:18:27.477Z",
"stoppedAt": "2025-05-15T21:18:27.659Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,320 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994482,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Function": [
{
"startTime": 1747343994482,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 2,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"names": [
"json array"
]
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"names": [
"json array"
]
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"names": [
"json array"
]
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"names": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Spreadsheet File": [
{
"startTime": 1747343994484,
"executionIndex": 2,
"source": [
{
"previousNode": "Function"
}
],
"hints": [],
"executionTime": 7,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"binary": {
"data": {
"mimeType": "text/html",
"fileType": "html",
"fileExtension": "html",
"data": "PGh0bWw+PGhlYWQ+PG1ldGEgY2hhcnNldD0idXRmLTgiLz48dGl0bGU+U2hlZXRKUyBUYWJsZSBFeHBvcnQ8L3RpdGxlPjwvaGVhZD48Ym9keT48dGFibGU+PHRyPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0ibmFtZXMuMCIgaWQ9InNqcy1BMSI+bmFtZXMuMDwvdGQ+PHRkIGRhdGEtdD0icyIgZGF0YS12PSJuYW1lcy4xIiBpZD0ic2pzLUIxIj5uYW1lcy4xPC90ZD48dGQgZGF0YS10PSJzIiBkYXRhLXY9Im5hbWVzLjIiIGlkPSJzanMtQzEiPm5hbWVzLjI8L3RkPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0ibmFtZXMuMyIgaWQ9InNqcy1EMSI+bmFtZXMuMzwvdGQ+PC90cj48dHI+PHRkIGRhdGEtdD0icyIgZGF0YS12PSJ0ZXN0MSIgaWQ9InNqcy1BMiI+dGVzdDE8L3RkPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0idGVzdDEyIiBpZD0ic2pzLUIyIj50ZXN0MTI8L3RkPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0idGVzdDEzIiBpZD0ic2pzLUMyIj50ZXN0MTM8L3RkPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0idGVzdDE0IiBpZD0ic2pzLUQyIj50ZXN0MTQ8L3RkPjwvdHI+PHRyPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0idGVzdDIiIGlkPSJzanMtQTMiPnRlc3QyPC90ZD48dGQgZGF0YS10PSJzIiBkYXRhLXY9InRlc3QyMiIgaWQ9InNqcy1CMyI+dGVzdDIyPC90ZD48dGQgZGF0YS10PSJzIiBkYXRhLXY9InRlc3QyMyIgaWQ9InNqcy1DMyI+dGVzdDIzPC90ZD48dGQgZGF0YS10PSJzIiBkYXRhLXY9InRlc3QyNCIgaWQ9InNqcy1EMyI+dGVzdDI0PC90ZD48L3RyPjx0cj48dGQgZGF0YS10PSJzIiBkYXRhLXY9InRlc3QzIiBpZD0ic2pzLUE0Ij50ZXN0MzwvdGQ+PHRkIGRhdGEtdD0icyIgZGF0YS12PSJ0ZXN0MzIiIGlkPSJzanMtQjQiPnRlc3QzMjwvdGQ+PHRkIGRhdGEtdD0icyIgZGF0YS12PSJ0ZXN0MzMiIGlkPSJzanMtQzQiPnRlc3QzMzwvdGQ+PHRkIGRhdGEtdD0icyIgZGF0YS12PSJ0ZXN0MzQiIGlkPSJzanMtRDQiPnRlc3QzNDwvdGQ+PC90cj48dHI+PHRkIGRhdGEtdD0icyIgZGF0YS12PSJ0ZXN0NCIgaWQ9InNqcy1BNSI+dGVzdDQ8L3RkPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0idGVzdDQyIiBpZD0ic2pzLUI1Ij50ZXN0NDI8L3RkPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0idGVzdDQzIiBpZD0ic2pzLUM1Ij50ZXN0NDM8L3RkPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0idGVzdDQ0IiBpZD0ic2pzLUQ1Ij50ZXN0NDQ8L3RkPjwvdHI+PC90YWJsZT48L2JvZHk+PC9odG1sPg==",
"fileName": "spreadsheet.html",
"fileSize": "1.24 kB"
}
},
"pairedItem": [
{
"item": 0
},
{
"item": 1
},
{
"item": 2
},
{
"item": 3
}
]
}
]
]
}
}
],
"Function1": [
{
"startTime": 1747343994491,
"executionIndex": 3,
"source": [
{
"previousNode": "Spreadsheet File"
}
],
"hints": [],
"executionTime": 2,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"binary": {
"data": {
"mimeType": "text/html",
"fileType": "html",
"fileExtension": "html",
"data": "PGh0bWw+PGhlYWQ+PG1ldGEgY2hhcnNldD0idXRmLTgiLz48dGl0bGU+U2hlZXRKUyBUYWJsZSBFeHBvcnQ8L3RpdGxlPjwvaGVhZD48Ym9keT48dGFibGU+PHRyPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0ibmFtZXMuMCIgaWQ9InNqcy1BMSI+bmFtZXMuMDwvdGQ+PHRkIGRhdGEtdD0icyIgZGF0YS12PSJuYW1lcy4xIiBpZD0ic2pzLUIxIj5uYW1lcy4xPC90ZD48dGQgZGF0YS10PSJzIiBkYXRhLXY9Im5hbWVzLjIiIGlkPSJzanMtQzEiPm5hbWVzLjI8L3RkPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0ibmFtZXMuMyIgaWQ9InNqcy1EMSI+bmFtZXMuMzwvdGQ+PC90cj48dHI+PHRkIGRhdGEtdD0icyIgZGF0YS12PSJ0ZXN0MSIgaWQ9InNqcy1BMiI+dGVzdDE8L3RkPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0idGVzdDEyIiBpZD0ic2pzLUIyIj50ZXN0MTI8L3RkPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0idGVzdDEzIiBpZD0ic2pzLUMyIj50ZXN0MTM8L3RkPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0idGVzdDE0IiBpZD0ic2pzLUQyIj50ZXN0MTQ8L3RkPjwvdHI+PHRyPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0idGVzdDIiIGlkPSJzanMtQTMiPnRlc3QyPC90ZD48dGQgZGF0YS10PSJzIiBkYXRhLXY9InRlc3QyMiIgaWQ9InNqcy1CMyI+dGVzdDIyPC90ZD48dGQgZGF0YS10PSJzIiBkYXRhLXY9InRlc3QyMyIgaWQ9InNqcy1DMyI+dGVzdDIzPC90ZD48dGQgZGF0YS10PSJzIiBkYXRhLXY9InRlc3QyNCIgaWQ9InNqcy1EMyI+dGVzdDI0PC90ZD48L3RyPjx0cj48dGQgZGF0YS10PSJzIiBkYXRhLXY9InRlc3QzIiBpZD0ic2pzLUE0Ij50ZXN0MzwvdGQ+PHRkIGRhdGEtdD0icyIgZGF0YS12PSJ0ZXN0MzIiIGlkPSJzanMtQjQiPnRlc3QzMjwvdGQ+PHRkIGRhdGEtdD0icyIgZGF0YS12PSJ0ZXN0MzMiIGlkPSJzanMtQzQiPnRlc3QzMzwvdGQ+PHRkIGRhdGEtdD0icyIgZGF0YS12PSJ0ZXN0MzQiIGlkPSJzanMtRDQiPnRlc3QzNDwvdGQ+PC90cj48dHI+PHRkIGRhdGEtdD0icyIgZGF0YS12PSJ0ZXN0NCIgaWQ9InNqcy1BNSI+dGVzdDQ8L3RkPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0idGVzdDQyIiBpZD0ic2pzLUI1Ij50ZXN0NDI8L3RkPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0idGVzdDQzIiBpZD0ic2pzLUM1Ij50ZXN0NDM8L3RkPjx0ZCBkYXRhLXQ9InMiIGRhdGEtdj0idGVzdDQ0IiBpZD0ic2pzLUQ1Ij50ZXN0NDQ8L3RkPjwvdHI+PC90YWJsZT48L2JvZHk+PC9odG1sPg==",
"fileName": "spreadsheet.html",
"fileSize": "1.24 kB"
}
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Spreadsheet File1": [
{
"startTime": 1747343994493,
"executionIndex": 4,
"source": [
{
"previousNode": "Spreadsheet File"
}
],
"hints": [],
"executionTime": 3,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"names.0": "test1",
"names.1": "test12",
"names.2": "test13",
"names.3": "test14"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"names.0": "test2",
"names.1": "test22",
"names.2": "test23",
"names.3": "test24"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"names.0": "test3",
"names.1": "test32",
"names.2": "test33",
"names.3": "test34"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"names.0": "test4",
"names.1": "test42",
"names.2": "test43",
"names.3": "test44"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Function2": [
{
"startTime": 1747343994496,
"executionIndex": 5,
"source": [
{
"previousNode": "Spreadsheet File1"
}
],
"hints": [],
"executionTime": 2,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"names.0": "test1",
"names.1": "test12",
"names.2": "test13",
"names.3": "test14"
},
"pairedItem": {
"item": 0
},
"index": 0
},
{
"json": {
"names.0": "test2",
"names.1": "test22",
"names.2": "test23",
"names.3": "test24"
},
"pairedItem": {
"item": 1
},
"index": 1
},
{
"json": {
"names.0": "test3",
"names.1": "test32",
"names.2": "test33",
"names.3": "test34"
},
"pairedItem": {
"item": 2
},
"index": 2
},
{
"json": {
"names.0": "test4",
"names.1": "test42",
"names.2": "test43",
"names.3": "test44"
},
"pairedItem": {
"item": 3
},
"index": 3
}
]
]
}
}
]
},
"lastNodeExecuted": "Function2"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.482Z",
"stoppedAt": "2025-05-15T21:19:54.498Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,172 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1710331886879,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"RabbitMQ": [
{
"startTime": 1710331886879,
"executionTime": 703,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"RabbitMQ1": [
{
"startTime": 1710331887582,
"executionTime": 244,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"RabbitMQ2": [
{
"startTime": 1710331887826,
"executionTime": 262,
"source": [
{
"previousNode": "RabbitMQ1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"RabbitMQ3": [
{
"startTime": 1710331888088,
"executionTime": 260,
"source": [
{
"previousNode": "RabbitMQ2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"RabbitMQ4": [
{
"startTime": 1710331888349,
"executionTime": 240,
"source": [
{
"previousNode": "RabbitMQ3"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "RabbitMQ4"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-03-13T12:11:26.879Z",
"stoppedAt": "2024-03-13T12:11:28.589Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,94 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1710331887198,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set": [
{
"startTime": 1710331887198,
"executionTime": 3,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"message": "AMQPMessage1710331887201"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AMQP Sender": [
{
"startTime": 1710331887201,
"executionTime": 449,
"source": [
{
"previousNode": "Set"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 0
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "AMQP Sender"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-03-13T12:11:27.197Z",
"stoppedAt": "2024-03-13T12:11:27.650Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,619 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994499,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com": [
{
"startTime": 1747343994499,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 1493,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "9163279560"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com1": [
{
"startTime": 1747343995992,
"executionIndex": 2,
"source": [
{
"previousNode": "Monday.com"
}
],
"hints": [],
"executionTime": 705,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "9163279560",
"name": "Board1747343994501",
"description": {
"object": true
},
"state": "active",
"board_folder_id": {
"object": true
},
"board_kind": "private",
"owners": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com2": [
{
"startTime": 1747343996697,
"executionIndex": 3,
"source": [
{
"previousNode": "Monday.com1"
}
],
"hints": [],
"executionTime": 363,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "9163279560",
"name": "Board1747343994501",
"description": {
"object": true
},
"state": "active",
"board_folder_id": {
"object": true
},
"board_kind": "private",
"owners": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com4": [
{
"startTime": 1747343997060,
"executionIndex": 4,
"source": [
{
"previousNode": "Monday.com2"
}
],
"hints": [],
"executionTime": 820,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "boolean_mkqzts11"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com6": [
{
"startTime": 1747343997880,
"executionIndex": 5,
"source": [
{
"previousNode": "Monday.com4"
}
],
"hints": [],
"executionTime": 707,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "group_mkqzjrxd"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com9": [
{
"startTime": 1747343998587,
"executionIndex": 6,
"source": [
{
"previousNode": "Monday.com6"
}
],
"hints": [],
"executionTime": 699,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "9163280038"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com10": [
{
"startTime": 1747343999286,
"executionIndex": 7,
"source": [
{
"previousNode": "Monday.com9"
}
],
"hints": [],
"executionTime": 1154,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "4124607906"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com11": [
{
"startTime": 1747344000440,
"executionIndex": 8,
"source": [
{
"previousNode": "Monday.com10"
}
],
"hints": [],
"executionTime": 627,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "9163280038"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com12": [
{
"startTime": 1747344001067,
"executionIndex": 9,
"source": [
{
"previousNode": "Monday.com11"
}
],
"hints": [],
"executionTime": 334,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "9163280038",
"name": "Item1747343998592",
"created_at": "2025-05-15T21:19:59Z",
"state": "active",
"column_values": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com13": [
{
"startTime": 1747344001401,
"executionIndex": 10,
"source": [
{
"previousNode": "Monday.com12"
}
],
"hints": [],
"executionTime": 568,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "9163280038",
"name": "Item1747343998592",
"created_at": "2025-05-15T21:19:59Z",
"state": "active",
"column_values": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com14": [
{
"startTime": 1747344001969,
"executionIndex": 11,
"source": [
{
"previousNode": "Monday.com13"
}
],
"hints": [],
"executionTime": 562,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "9163279581",
"name": "Task 1",
"created_at": "2025-05-15T21:19:55Z",
"state": "active",
"board": {
"object": true
},
"column_values": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com15": [
{
"startTime": 1747344002531,
"executionIndex": 12,
"source": [
{
"previousNode": "Monday.com14"
}
],
"hints": [],
"executionTime": 819,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "9163280038"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com16": [
{
"startTime": 1747344003350,
"executionIndex": 13,
"source": [
{
"previousNode": "Monday.com15"
}
],
"hints": [],
"executionTime": 809,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "9163280038"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com7": [
{
"startTime": 1747344004159,
"executionIndex": 14,
"source": [
{
"previousNode": "Monday.com16"
}
],
"hints": [],
"executionTime": 1162,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "group_mkqzjrxd"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com8": [
{
"startTime": 1747344005321,
"executionIndex": 15,
"source": [
{
"previousNode": "Monday.com7"
}
],
"hints": [],
"executionTime": 373,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "topics",
"title": "Group Title",
"color": "#037f4c",
"position": "65536",
"archived": false
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Monday.com5": [
{
"startTime": 1747344005695,
"executionIndex": 16,
"source": [
{
"previousNode": "Monday.com8"
}
],
"hints": [],
"executionTime": 340,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "name",
"title": "Name",
"type": "name",
"settings_str": "{}",
"archived": false
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": "boolean_mkqzts11",
"title": "Column1747343997063",
"type": "checkbox",
"settings_str": "{}",
"archived": false
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Merge": [
{
"startTime": 1747344006035,
"executionIndex": 17,
"source": [
{
"previousNode": "Monday.com5"
},
{
"previousNode": "Monday.com5"
}
],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": [
{
"item": 0
},
{
"item": 1
}
]
}
]
]
}
}
],
"Monday.com3": [
{
"startTime": 1747344006036,
"executionIndex": 18,
"source": [
{
"previousNode": "Merge"
}
],
"hints": [],
"executionTime": 660,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "9163279560"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Monday.com3"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.498Z",
"stoppedAt": "2025-05-15T21:20:06.696Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,186 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1710331887209,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Cockpit": [
{
"startTime": 1710331887209,
"executionTime": 302,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"Name": "entry1710331887212",
"_by": "604887bce94fea0ea177c951",
"_modified": 1710331887,
"_created": 1710331887,
"_id": "65f197ef674387269e75af55"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Cockpit3": [
{
"startTime": 1710331887511,
"executionTime": 83,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"name": "FixedName",
"_mby": "604887bce94fea0ea177c951",
"_by": "604887bce94fea0ea177c951"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Cockpit4": [
{
"startTime": 1710331887594,
"executionTime": 74,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"name": "name1710331887596",
"tag": "tag1710331887597"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Cockpit1": [
{
"startTime": 1710331887668,
"executionTime": 76,
"source": [
{
"previousNode": "Cockpit"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "65f197ef674387269e75af55",
"Name": "UpdatedEntry1710331887671",
"_by": "604887bce94fea0ea177c951",
"_modified": 1710331887
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Cockpit2": [
{
"startTime": 1710331887744,
"executionTime": 55,
"source": [
{
"previousNode": "Cockpit1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"Name": "UpdatedEntry1615366572785",
"_by": "604887bce94fea0ea177c951",
"_modified": 1615366572,
"_created": 1615366532,
"_id": "6048898478f13b61a46fc881"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Cockpit2"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-03-13T12:11:27.209Z",
"stoppedAt": "2024-03-13T12:11:27.799Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,611 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1676891405872,
"executionTime": 1,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Ghost": [
{
"startTime": 1676891405873,
"executionTime": 475,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "63f3550e3464df0001bf1bbc",
"uuid": "25ff3cb7-725f-478d-9710-8798ce3ceccd",
"title": "PostTitle1676891405907",
"slug": "posttitle1676891405907",
"mobiledoc": "{\"version\":\"0.3.1\",\"atoms\":[],\"cards\":[],\"markups\":[],\"sections\":[[1,\"p\",[[0,[],0,\"Post Content written at 1676891405907\"]]]]}",
"comment_id": "63f3550e3464df0001bf1bbc",
"feature_image": {
"object": true
},
"featured": false,
"status": "draft",
"visibility": "public",
"created_at": "2023-02-20T11:10:06.000Z",
"updated_at": "2023-02-20T11:10:06.000Z",
"published_at": {
"object": true
},
"custom_excerpt": {
"object": true
},
"codeinjection_head": {
"object": true
},
"codeinjection_foot": {
"object": true
},
"custom_template": {
"object": true
},
"canonical_url": {
"object": true
},
"authors": [
"json array"
],
"tags": [
"json array"
],
"primary_author": {
"object": true
},
"primary_tag": {
"object": true
},
"url": "http://localhost:2368/p/25ff3cb7-725f-478d-9710-8798ce3ceccd/",
"excerpt": "Post Content written at 1676891405907",
"og_image": {
"object": true
},
"og_title": {
"object": true
},
"og_description": {
"object": true
},
"twitter_image": {
"object": true
},
"twitter_title": {
"object": true
},
"twitter_description": {
"object": true
},
"meta_title": {
"object": true
},
"meta_description": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Ghost1": [
{
"startTime": 1676891406348,
"executionTime": 386,
"source": [
{
"previousNode": "Ghost"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "63f3550e3464df0001bf1bbc",
"uuid": "25ff3cb7-725f-478d-9710-8798ce3ceccd",
"title": "UpdateTitle1676891406349",
"slug": "posttitle1676891405907",
"mobiledoc": "{\"version\":\"0.3.1\",\"atoms\":[],\"cards\":[],\"markups\":[],\"sections\":[[1,\"p\",[[0,[],0,\"Post Content written at 1676891405907\"]]]]}",
"comment_id": "63f3550e3464df0001bf1bbc",
"feature_image": {
"object": true
},
"featured": false,
"status": "draft",
"visibility": "public",
"created_at": "2023-02-20T11:10:06.000Z",
"updated_at": "2023-02-20T11:10:06.000Z",
"published_at": {
"object": true
},
"custom_excerpt": {
"object": true
},
"codeinjection_head": {
"object": true
},
"codeinjection_foot": {
"object": true
},
"custom_template": {
"object": true
},
"canonical_url": {
"object": true
},
"tags": [
"json array"
],
"authors": [
"json array"
],
"primary_author": {
"object": true
},
"primary_tag": {
"object": true
},
"url": "http://localhost:2368/p/25ff3cb7-725f-478d-9710-8798ce3ceccd/",
"excerpt": "Post Content written at 1676891405907",
"og_image": {
"object": true
},
"og_title": {
"object": true
},
"og_description": {
"object": true
},
"twitter_image": {
"object": true
},
"twitter_title": {
"object": true
},
"twitter_description": {
"object": true
},
"meta_title": {
"object": true
},
"meta_description": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Ghost2": [
{
"startTime": 1676891406734,
"executionTime": 248,
"source": [
{
"previousNode": "Ghost1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "63f3550e3464df0001bf1bbc",
"uuid": "25ff3cb7-725f-478d-9710-8798ce3ceccd",
"title": "UpdateTitle1676891406349",
"slug": "posttitle1676891405907",
"mobiledoc": "{\"version\":\"0.3.1\",\"atoms\":[],\"cards\":[],\"markups\":[],\"sections\":[[1,\"p\",[[0,[],0,\"Post Content written at 1676891405907\"]]]]}",
"comment_id": "63f3550e3464df0001bf1bbc",
"feature_image": {
"object": true
},
"featured": false,
"status": "draft",
"visibility": "public",
"created_at": "2023-02-20T11:10:06.000Z",
"updated_at": "2023-02-20T11:10:06.000Z",
"published_at": {
"object": true
},
"custom_excerpt": {
"object": true
},
"codeinjection_head": {
"object": true
},
"codeinjection_foot": {
"object": true
},
"custom_template": {
"object": true
},
"canonical_url": {
"object": true
},
"tags": [
"json array"
],
"authors": [
"json array"
],
"primary_author": {
"object": true
},
"primary_tag": {
"object": true
},
"url": "http://localhost:2368/p/25ff3cb7-725f-478d-9710-8798ce3ceccd/",
"excerpt": "Post Content written at 1676891405907",
"og_image": {
"object": true
},
"og_title": {
"object": true
},
"og_description": {
"object": true
},
"twitter_image": {
"object": true
},
"twitter_title": {
"object": true
},
"twitter_description": {
"object": true
},
"meta_title": {
"object": true
},
"meta_description": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Ghost3": [
{
"startTime": 1676891406983,
"executionTime": 244,
"source": [
{
"previousNode": "Ghost2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "63f3550e3464df0001bf1bbc",
"uuid": "25ff3cb7-725f-478d-9710-8798ce3ceccd",
"title": "UpdateTitle1676891406349",
"slug": "posttitle1676891405907",
"mobiledoc": "{\"version\":\"0.3.1\",\"atoms\":[],\"cards\":[],\"markups\":[],\"sections\":[[1,\"p\",[[0,[],0,\"Post Content written at 1676891405907\"]]]]}",
"comment_id": "63f3550e3464df0001bf1bbc",
"feature_image": {
"object": true
},
"featured": false,
"status": "draft",
"visibility": "public",
"created_at": "2023-02-20T11:10:06.000Z",
"updated_at": "2023-02-20T11:10:06.000Z",
"published_at": {
"object": true
},
"custom_excerpt": {
"object": true
},
"codeinjection_head": {
"object": true
},
"codeinjection_foot": {
"object": true
},
"custom_template": {
"object": true
},
"canonical_url": {
"object": true
},
"tags": [
"json array"
],
"authors": [
"json array"
],
"primary_author": {
"object": true
},
"primary_tag": {
"object": true
},
"url": "http://localhost:2368/p/25ff3cb7-725f-478d-9710-8798ce3ceccd/",
"excerpt": "Post Content written at 1676891405907",
"og_image": {
"object": true
},
"og_title": {
"object": true
},
"og_description": {
"object": true
},
"twitter_image": {
"object": true
},
"twitter_title": {
"object": true
},
"twitter_description": {
"object": true
},
"meta_title": {
"object": true
},
"meta_description": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Ghost4": [
{
"startTime": 1676891407227,
"executionTime": 164,
"source": [
{
"previousNode": "Ghost3"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "60489c2d8b68c800011955f0",
"uuid": "51c60db4-8ef0-4de9-8529-c1cde7460591",
"title": "Welcome to Ghost",
"slug": "welcome",
"html": "<h2 id=\"a-few-things-you-should-know\"><strong>A few things you should know</strong></h2><ol><li>Ghost is designed for ambitious, professional publishers who want to actively build a business around their content. That's who it works best for. </li><li>The entire platform can be modified and customised to suit your needs. It's very powerful, but does require some knowledge of code. Ghost is not necessarily a good platform for beginners or people who just want a simple personal blog. </li><li>It's possible to work with all your favourite tools and apps with hundreds of <a href=\"https://ghost.org/integrations/\">integrations</a> to speed up your workflows, connect email lists, build communities and much more.</li></ol><h2 id=\"behind-the-scenes\">Behind the scenes</h2><p>Ghost is made by an independent non-profit organisation called the Ghost Foundation. We are 100% self funded by revenue from our <a href=\"https://ghost.org/pricing\">Ghost(Pro)</a> service, and every penny we make is re-invested into funding further development of free, open source technology for modern publishing.</p><p>The version of Ghost you are looking at right now would not have been made possible without generous contributions from the open source <a href=\"https://github.com/TryGhost\">community</a>.</p><h2 id=\"next-up-the-editor\">Next up, the editor</h2><p>The main thing you'll want to read about next is probably: <a href=\"http://localhost:2368/the-editor/\">the Ghost editor</a>. This is where the good stuff happens.</p><blockquote>By the way, once you're done reading, you can simply delete the default Ghost user from your team to remove all of these introductory posts! </blockquote>",
"comment_id": "60489c2d8b68c800011955f0",
"feature_image": "https://static.ghost.org/v3.0.0/images/welcome-to-ghost.png",
"featured": false,
"visibility": "public",
"email_recipient_filter": "none",
"created_at": "2021-03-10T10:15:09.000+00:00",
"updated_at": "2021-03-10T10:15:09.000+00:00",
"published_at": "2021-03-10T10:15:15.000+00:00",
"custom_excerpt": "Welcome, it's great to have you here.\nWe know that first impressions are important, so we've populated your new site with some initial getting started posts that will help you get familiar with everything in no time.",
"codeinjection_head": {
"object": true
},
"codeinjection_foot": {
"object": true
},
"custom_template": {
"object": true
},
"canonical_url": {
"object": true
},
"url": "http://localhost:2368/welcome/",
"excerpt": "Welcome, it's great to have you here.\nWe know that first impressions are important, so we've populated your new site with some initial getting started posts that will help you get familiar with everything in no time.",
"reading_time": 1,
"access": true,
"send_email_when_published": false,
"og_image": {
"object": true
},
"og_title": {
"object": true
},
"og_description": {
"object": true
},
"twitter_image": {
"object": true
},
"twitter_title": {
"object": true
},
"twitter_description": {
"object": true
},
"meta_title": {
"object": true
},
"meta_description": {
"object": true
},
"email_subject": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Ghost5": [
{
"startTime": 1676891407391,
"executionTime": 182,
"source": [
{
"previousNode": "Ghost4"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "60489c2d8b68c800011955f0",
"uuid": "51c60db4-8ef0-4de9-8529-c1cde7460591",
"title": "Welcome to Ghost",
"slug": "welcome",
"html": "<h2 id=\"a-few-things-you-should-know\"><strong>A few things you should know</strong></h2><ol><li>Ghost is designed for ambitious, professional publishers who want to actively build a business around their content. That's who it works best for. </li><li>The entire platform can be modified and customised to suit your needs. It's very powerful, but does require some knowledge of code. Ghost is not necessarily a good platform for beginners or people who just want a simple personal blog. </li><li>It's possible to work with all your favourite tools and apps with hundreds of <a href=\"https://ghost.org/integrations/\">integrations</a> to speed up your workflows, connect email lists, build communities and much more.</li></ol><h2 id=\"behind-the-scenes\">Behind the scenes</h2><p>Ghost is made by an independent non-profit organisation called the Ghost Foundation. We are 100% self funded by revenue from our <a href=\"https://ghost.org/pricing\">Ghost(Pro)</a> service, and every penny we make is re-invested into funding further development of free, open source technology for modern publishing.</p><p>The version of Ghost you are looking at right now would not have been made possible without generous contributions from the open source <a href=\"https://github.com/TryGhost\">community</a>.</p><h2 id=\"next-up-the-editor\">Next up, the editor</h2><p>The main thing you'll want to read about next is probably: <a href=\"http://localhost:2368/the-editor/\">the Ghost editor</a>. This is where the good stuff happens.</p><blockquote>By the way, once you're done reading, you can simply delete the default Ghost user from your team to remove all of these introductory posts! </blockquote>",
"comment_id": "60489c2d8b68c800011955f0",
"feature_image": "https://static.ghost.org/v3.0.0/images/welcome-to-ghost.png",
"featured": false,
"visibility": "public",
"email_recipient_filter": "none",
"created_at": "2021-03-10T10:15:09.000+00:00",
"updated_at": "2021-03-10T10:15:09.000+00:00",
"published_at": "2021-03-10T10:15:15.000+00:00",
"custom_excerpt": "Welcome, it's great to have you here.\nWe know that first impressions are important, so we've populated your new site with some initial getting started posts that will help you get familiar with everything in no time.",
"codeinjection_head": {
"object": true
},
"codeinjection_foot": {
"object": true
},
"custom_template": {
"object": true
},
"canonical_url": {
"object": true
},
"url": "http://localhost:2368/welcome/",
"excerpt": "Welcome, it's great to have you here.\nWe know that first impressions are important, so we've populated your new site with some initial getting started posts that will help you get familiar with everything in no time.",
"reading_time": 1,
"access": true,
"send_email_when_published": false,
"og_image": {
"object": true
},
"og_title": {
"object": true
},
"og_description": {
"object": true
},
"twitter_image": {
"object": true
},
"twitter_title": {
"object": true
},
"twitter_description": {
"object": true
},
"meta_title": {
"object": true
},
"meta_description": {
"object": true
},
"email_subject": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Ghost6": [
{
"startTime": 1676891407573,
"executionTime": 170,
"source": [
{
"previousNode": "Ghost5"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Ghost6"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-02-20T11:10:05.871Z",
"stoppedAt": "2023-02-20T11:10:07.743Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,130 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1710331887222,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Gotify": [
{
"startTime": 1710331887223,
"executionTime": 287,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 1306,
"appid": 1,
"message": "Message content 1710331887225",
"title": "Title1710331887228",
"priority": 0,
"date": "2024-03-13T12:11:27.484571026Z"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Gotify1": [
{
"startTime": 1710331887510,
"executionTime": 58,
"source": [
{
"previousNode": "Gotify"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 1306,
"appid": 1,
"message": "Message content 1710331887225",
"title": "Title1710331887228",
"priority": 0,
"date": "2024-03-13T12:11:27.484571026Z"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Gotify2": [
{
"startTime": 1710331887568,
"executionTime": 62,
"source": [
{
"previousNode": "Gotify1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Gotify2"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-03-13T12:11:27.222Z",
"stoppedAt": "2024-03-13T12:11:27.630Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,554 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1710331887342,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set": [
{
"startTime": 1710331887342,
"executionTime": 3,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"key": "TestKey",
"value": "Value1710331887344"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Redis": [
{
"startTime": 1710331887345,
"executionTime": 230,
"source": [
{
"previousNode": "Set"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"redis_version": 6.2,
"redis_git_sha1": 0,
"redis_git_dirty": 0,
"redis_build_id": "a26c8b6d79010f4f",
"redis_mode": "standalone",
"os": "Linux 5.4.0-65-generic x86_64",
"arch_bits": 64,
"multiplexing_api": "epoll",
"atomicvar_api": "c11-builtin",
"gcc_version": 8.3,
"process_id": 1,
"process_supervised": "no",
"run_id": "335ae737a685624354ebf06e053072c8dde37824",
"tcp_port": 6379,
"server_time_usec": 1710331887537701,
"uptime_in_seconds": 34307370,
"uptime_in_days": 397,
"hz": 10,
"configured_hz": 10,
"lru_clock": 15833071,
"executable": "/data/redis-server",
"config_file": "/usr/local/etc/redis.conf",
"io_threads_active": 0,
"connected_clients": 1,
"cluster_connections": 0,
"maxclients": 10000,
"client_recent_max_input_buffer": 40,
"client_recent_max_output_buffer": 0,
"blocked_clients": 0,
"tracking_clients": 0,
"clients_in_timeout_table": 0,
"used_memory": 988872,
"used_memory_human": "965.70K",
"used_memory_rss": 4448256,
"used_memory_rss_human": "4.24M",
"used_memory_peak": 3094400,
"used_memory_peak_human": "2.95M",
"used_memory_peak_perc": "31.96%",
"used_memory_overhead": 831184,
"used_memory_startup": 810184,
"used_memory_dataset": 157688,
"used_memory_dataset_perc": "88.25%",
"allocator_allocated": 1020376,
"allocator_active": 1339392,
"allocator_resident": 3866624,
"total_system_memory": 16395214848,
"total_system_memory_human": "15.27G",
"used_memory_lua": 37888,
"used_memory_lua_human": "37.00K",
"used_memory_scripts": 0,
"used_memory_scripts_human": "0B",
"number_of_cached_scripts": 0,
"maxmemory": 0,
"maxmemory_human": "0B",
"maxmemory_policy": "noeviction",
"allocator_frag_ratio": 1.31,
"allocator_frag_bytes": 319016,
"allocator_rss_ratio": 2.89,
"allocator_rss_bytes": 2527232,
"rss_overhead_ratio": 1.15,
"rss_overhead_bytes": 581632,
"mem_fragmentation_ratio": 4.51,
"mem_fragmentation_bytes": 3461176,
"mem_not_counted_for_evict": 0,
"mem_replication_backlog": 0,
"mem_clients_slaves": 0,
"mem_clients_normal": 20520,
"mem_aof_buffer": 0,
"mem_allocator": "jemalloc-5.1.0",
"active_defrag_running": 0,
"lazyfree_pending_objects": 0,
"lazyfreed_objects": 0,
"loading": 0,
"current_cow_size": 0,
"current_fork_perc": "0.00%",
"current_save_keys_processed": 0,
"current_save_keys_total": 0,
"rdb_changes_since_last_save": 0,
"rdb_bgsave_in_progress": 0,
"rdb_last_save_time": 1710299433,
"rdb_last_bgsave_status": "ok",
"rdb_last_bgsave_time_sec": 0,
"rdb_current_bgsave_time_sec": "-1",
"rdb_last_cow_size": 483328,
"aof_enabled": 0,
"aof_rewrite_in_progress": 0,
"aof_rewrite_scheduled": 0,
"aof_last_rewrite_time_sec": "-1",
"aof_current_rewrite_time_sec": "-1",
"aof_last_bgrewrite_status": "ok",
"aof_last_write_status": "ok",
"aof_last_cow_size": 0,
"module_fork_in_progress": 0,
"module_fork_last_cow_size": 0,
"total_connections_received": 43137,
"total_commands_processed": 389780,
"instantaneous_ops_per_sec": 1,
"total_net_input_bytes": 7316126,
"total_net_output_bytes": 47053879,
"instantaneous_input_kbps": 0.09,
"instantaneous_output_kbps": 0.11,
"rejected_connections": 0,
"sync_full": 0,
"sync_partial_ok": 0,
"sync_partial_err": 0,
"expired_keys": 0,
"expired_stale_perc": 0,
"expired_time_cap_reached_count": 0,
"expire_cycle_cpu_milliseconds": 1228670,
"evicted_keys": 0,
"keyspace_hits": 3820,
"keyspace_misses": 0,
"pubsub_channels": 0,
"pubsub_patterns": 0,
"latest_fork_usec": 983,
"total_forks": 108873,
"migrate_cached_sockets": 0,
"slave_expires_tracked_keys": 0,
"active_defrag_hits": 0,
"active_defrag_misses": 0,
"active_defrag_key_hits": 0,
"active_defrag_key_misses": 0,
"tracking_total_keys": 0,
"tracking_total_items": 0,
"tracking_total_prefixes": 0,
"unexpected_error_replies": 0,
"total_error_replies": 400712,
"dump_payload_sanitizations": 0,
"total_reads_processed": 266496,
"total_writes_processed": 227508,
"io_threaded_reads_processed": 0,
"io_threaded_writes_processed": 0,
"role": "master",
"connected_slaves": 0,
"master_failover_state": "no-failover",
"master_replid": "5bcfb8d0e50aae43141a6bc4de0e07b90f780906",
"master_replid2": 0,
"master_repl_offset": 0,
"second_repl_offset": "-1",
"repl_backlog_active": 0,
"repl_backlog_size": 1048576,
"repl_backlog_first_byte_offset": 0,
"repl_backlog_histlen": 0,
"used_cpu_sys": 81544.939292,
"used_cpu_user": 114072.000995,
"used_cpu_sys_children": 259.550501,
"used_cpu_user_children": 136.476364,
"used_cpu_sys_main_thread": 81531.244451,
"used_cpu_user_main_thread": 114059.326093,
"errorstat_ERR": {
"object": true
},
"errorstat_MISCONF": {
"object": true
},
"errorstat_NOAUTH": {
"object": true
},
"errorstat_WRONGPASS": {
"object": true
},
"cluster_enabled": 0,
"db0": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Redis1": [
{
"startTime": 1710331887575,
"executionTime": 143,
"source": [
{
"previousNode": "Redis"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"redis_version": 6.2,
"redis_git_sha1": 0,
"redis_git_dirty": 0,
"redis_build_id": "a26c8b6d79010f4f",
"redis_mode": "standalone",
"os": "Linux 5.4.0-65-generic x86_64",
"arch_bits": 64,
"multiplexing_api": "epoll",
"atomicvar_api": "c11-builtin",
"gcc_version": 8.3,
"process_id": 1,
"process_supervised": "no",
"run_id": "335ae737a685624354ebf06e053072c8dde37824",
"tcp_port": 6379,
"server_time_usec": 1710331887537701,
"uptime_in_seconds": 34307370,
"uptime_in_days": 397,
"hz": 10,
"configured_hz": 10,
"lru_clock": 15833071,
"executable": "/data/redis-server",
"config_file": "/usr/local/etc/redis.conf",
"io_threads_active": 0,
"connected_clients": 1,
"cluster_connections": 0,
"maxclients": 10000,
"client_recent_max_input_buffer": 40,
"client_recent_max_output_buffer": 0,
"blocked_clients": 0,
"tracking_clients": 0,
"clients_in_timeout_table": 0,
"used_memory": 988872,
"used_memory_human": "965.70K",
"used_memory_rss": 4448256,
"used_memory_rss_human": "4.24M",
"used_memory_peak": 3094400,
"used_memory_peak_human": "2.95M",
"used_memory_peak_perc": "31.96%",
"used_memory_overhead": 831184,
"used_memory_startup": 810184,
"used_memory_dataset": 157688,
"used_memory_dataset_perc": "88.25%",
"allocator_allocated": 1020376,
"allocator_active": 1339392,
"allocator_resident": 3866624,
"total_system_memory": 16395214848,
"total_system_memory_human": "15.27G",
"used_memory_lua": 37888,
"used_memory_lua_human": "37.00K",
"used_memory_scripts": 0,
"used_memory_scripts_human": "0B",
"number_of_cached_scripts": 0,
"maxmemory": 0,
"maxmemory_human": "0B",
"maxmemory_policy": "noeviction",
"allocator_frag_ratio": 1.31,
"allocator_frag_bytes": 319016,
"allocator_rss_ratio": 2.89,
"allocator_rss_bytes": 2527232,
"rss_overhead_ratio": 1.15,
"rss_overhead_bytes": 581632,
"mem_fragmentation_ratio": 4.51,
"mem_fragmentation_bytes": 3461176,
"mem_not_counted_for_evict": 0,
"mem_replication_backlog": 0,
"mem_clients_slaves": 0,
"mem_clients_normal": 20520,
"mem_aof_buffer": 0,
"mem_allocator": "jemalloc-5.1.0",
"active_defrag_running": 0,
"lazyfree_pending_objects": 0,
"lazyfreed_objects": 0,
"loading": 0,
"current_cow_size": 0,
"current_fork_perc": "0.00%",
"current_save_keys_processed": 0,
"current_save_keys_total": 0,
"rdb_changes_since_last_save": 0,
"rdb_bgsave_in_progress": 0,
"rdb_last_save_time": 1710299433,
"rdb_last_bgsave_status": "ok",
"rdb_last_bgsave_time_sec": 0,
"rdb_current_bgsave_time_sec": "-1",
"rdb_last_cow_size": 483328,
"aof_enabled": 0,
"aof_rewrite_in_progress": 0,
"aof_rewrite_scheduled": 0,
"aof_last_rewrite_time_sec": "-1",
"aof_current_rewrite_time_sec": "-1",
"aof_last_bgrewrite_status": "ok",
"aof_last_write_status": "ok",
"aof_last_cow_size": 0,
"module_fork_in_progress": 0,
"module_fork_last_cow_size": 0,
"total_connections_received": 43137,
"total_commands_processed": 389780,
"instantaneous_ops_per_sec": 1,
"total_net_input_bytes": 7316126,
"total_net_output_bytes": 47053879,
"instantaneous_input_kbps": 0.09,
"instantaneous_output_kbps": 0.11,
"rejected_connections": 0,
"sync_full": 0,
"sync_partial_ok": 0,
"sync_partial_err": 0,
"expired_keys": 0,
"expired_stale_perc": 0,
"expired_time_cap_reached_count": 0,
"expire_cycle_cpu_milliseconds": 1228670,
"evicted_keys": 0,
"keyspace_hits": 3820,
"keyspace_misses": 0,
"pubsub_channels": 0,
"pubsub_patterns": 0,
"latest_fork_usec": 983,
"total_forks": 108873,
"migrate_cached_sockets": 0,
"slave_expires_tracked_keys": 0,
"active_defrag_hits": 0,
"active_defrag_misses": 0,
"active_defrag_key_hits": 0,
"active_defrag_key_misses": 0,
"tracking_total_keys": 0,
"tracking_total_items": 0,
"tracking_total_prefixes": 0,
"unexpected_error_replies": 0,
"total_error_replies": 400712,
"dump_payload_sanitizations": 0,
"total_reads_processed": 266496,
"total_writes_processed": 227508,
"io_threaded_reads_processed": 0,
"io_threaded_writes_processed": 0,
"role": "master",
"connected_slaves": 0,
"master_failover_state": "no-failover",
"master_replid": "5bcfb8d0e50aae43141a6bc4de0e07b90f780906",
"master_replid2": 0,
"master_repl_offset": 0,
"second_repl_offset": "-1",
"repl_backlog_active": 0,
"repl_backlog_size": 1048576,
"repl_backlog_first_byte_offset": 0,
"repl_backlog_histlen": 0,
"used_cpu_sys": 81544.939292,
"used_cpu_user": 114072.000995,
"used_cpu_sys_children": 259.550501,
"used_cpu_user_children": 136.476364,
"used_cpu_sys_main_thread": 81531.244451,
"used_cpu_user_main_thread": 114059.326093,
"errorstat_ERR": {
"object": true
},
"errorstat_MISCONF": {
"object": true
},
"errorstat_NOAUTH": {
"object": true
},
"errorstat_WRONGPASS": {
"object": true
},
"cluster_enabled": 0,
"db0": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Redis2": [
{
"startTime": 1710331887718,
"executionTime": 166,
"source": [
{
"previousNode": "Redis1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"TestKey": "Value1710331887344"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Redis3": [
{
"startTime": 1710331887885,
"executionTime": 124,
"source": [
{
"previousNode": "Redis2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"value": "Value1710331887344"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Redis4": [
{
"startTime": 1710331888009,
"executionTime": 126,
"source": [
{
"previousNode": "Redis3"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"value": "Value1710331887344"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Function": [
{
"startTime": 1710331888135,
"executionTime": 3,
"source": [
{
"previousNode": "Redis3"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"value": "Value1710331887344"
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
]
},
"lastNodeExecuted": "Function"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-03-13T12:11:27.342Z",
"stoppedAt": "2024-03-13T12:11:28.138Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,166 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1676891406511,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set": [
{
"startTime": 1676891406512,
"executionTime": 65,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 90783,
"name": "Name1676891406577"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"CrateDB": [
{
"startTime": 1676891406578,
"executionTime": 322,
"source": [
{
"previousNode": "Set"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 90783,
"name": "Name1676891406577"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set1": [
{
"startTime": 1676891406901,
"executionTime": 13,
"source": [
{
"previousNode": "CrateDB"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 90783,
"name": "UpdatedName1676891406903"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"CrateDB1": [
{
"startTime": 1676891406916,
"executionTime": 310,
"source": [
{
"previousNode": "Set1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 90783,
"name": "UpdatedName1676891406903"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"CrateDB2": [
{
"startTime": 1676891407227,
"executionTime": 251,
"source": [
{
"previousNode": "CrateDB1"
}
],
"executionStatus": "success",
"data": {
"main": [
[]
]
}
}
]
},
"lastNodeExecuted": "CrateDB2"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-02-20T11:10:06.509Z",
"stoppedAt": "2023-02-20T11:10:07.478Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,223 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1710331887427,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set": [
{
"startTime": 1710331887427,
"executionTime": 10,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 65660,
"name": "Name1710331887437"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"MySQL": [
{
"startTime": 1710331887437,
"executionTime": 151,
"source": [
{
"previousNode": "Set"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"fieldCount": 0,
"affectedRows": 1,
"insertId": 0,
"info": "",
"serverStatus": 2,
"warningStatus": 0
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set1": [
{
"startTime": 1710331887589,
"executionTime": 4,
"source": [
{
"previousNode": "MySQL"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"fieldCount": 0,
"affectedRows": 1,
"insertId": 0,
"info": "",
"serverStatus": 2,
"warningStatus": 0,
"id": 65660,
"name": "UpdatedName1710331887592"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"MySQL1": [
{
"startTime": 1710331887593,
"executionTime": 133,
"source": [
{
"previousNode": "Set1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"fieldCount": 0,
"affectedRows": 1,
"insertId": 0,
"info": "Rows matched: 1 Changed: 1 Warnings: 0",
"serverStatus": 34,
"warningStatus": 0,
"changedRows": 1
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"MySQL2": [
{
"startTime": 1710331887726,
"executionTime": 123,
"source": [
{
"previousNode": "MySQL1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 21457,
"name": "Name1627394768518"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"MySQL3": [
{
"startTime": 1710331887849,
"executionTime": 128,
"source": [
{
"previousNode": "MySQL2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"fieldCount": 0,
"affectedRows": 1,
"insertId": 0,
"info": "",
"serverStatus": 34,
"warningStatus": 0
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "MySQL3"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-03-13T12:11:27.426Z",
"stoppedAt": "2024-03-13T12:11:27.977Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,139 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1676891407793,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set": [
{
"startTime": 1676891407794,
"executionTime": 100,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 545,
"name": "Name1676891407894"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"QuestDB": [
{
"startTime": 1676891407894,
"executionTime": 172,
"source": [
{
"previousNode": "Set"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 545,
"name": "Name1676891407894"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"QuestDB1": [
{
"startTime": 1676891408068,
"executionTime": 123,
"source": [
{
"previousNode": "QuestDB"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 545,
"name": "Name1676891407894"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"QuestDB2": [
{
"startTime": 1676891408192,
"executionTime": 119,
"source": [
{
"previousNode": "QuestDB1"
}
],
"executionStatus": "success",
"data": {
"main": [
[]
]
}
}
]
},
"lastNodeExecuted": "QuestDB2"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-02-20T11:10:07.791Z",
"stoppedAt": "2023-02-20T11:10:08.312Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,338 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1676891408444,
"executionTime": 1,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set": [
{
"startTime": 1676891408445,
"executionTime": 42,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 555,
"name": "Name1676891408487"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Postgres": [
{
"startTime": 1676891408487,
"executionTime": 187,
"source": [
{
"previousNode": "Set"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 555,
"name": "Name1676891408487"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set1": [
{
"startTime": 1676891408675,
"executionTime": 3,
"source": [
{
"previousNode": "Postgres"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 555,
"name": "UpdatedName1676891408677"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Postgres1": [
{
"startTime": 1676891408678,
"executionTime": 194,
"source": [
{
"previousNode": "Set1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 555,
"name": "UpdatedName1676891408677"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Postgres2": [
{
"startTime": 1676891408873,
"executionTime": 202,
"source": [
{
"previousNode": "Postgres1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": {
"object": true
},
"name": "omar456"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": {
"object": true
},
"name": "omar123"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": {
"object": true
},
"name": "omar456"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": {
"object": true
},
"name": "omar123"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": {
"object": true
},
"name": "omar456"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": {
"object": true
},
"name": "omar123"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": {
"object": true
},
"name": "omar456"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": {
"object": true
},
"name": "omar123"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": {
"object": true
},
"name": "omar456"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": {
"object": true
},
"name": "omar123"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": {
"object": true
},
"name": "omar456"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": {
"object": true
},
"name": "omar123"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": 555,
"name": "UpdatedName1676891408677"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": {
"object": true
},
"name": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Postgres3": [
{
"startTime": 1676891409075,
"executionTime": 126,
"source": [
{
"previousNode": "Postgres2"
}
],
"executionStatus": "success",
"data": {
"main": [
[]
]
}
}
]
},
"lastNodeExecuted": "Postgres3"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-02-20T11:10:08.443Z",
"stoppedAt": "2023-02-20T11:10:09.202Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,137 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1710331887439,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Yourls": [
{
"startTime": 1710331887439,
"executionTime": 121,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"url": {
"object": true
},
"status": "success",
"message": "https://n8n.io/1710331887441 added to database",
"title": "n8n-ulr with random suffix",
"shorturl": "http://157.90.159.163:8095/10c",
"statusCode": 200
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Yourls1": [
{
"startTime": 1710331887560,
"executionTime": 80,
"source": [
{
"previousNode": "Yourls"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"shorturl": "http://157.90.159.163:8095/10c",
"url": "https://n8n.io/1710331887441",
"title": "n8n-ulr with random suffix",
"timestamp": "2024-03-13 12:11:27",
"ip": "84.145.34.143",
"clicks": "0"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Yourls2": [
{
"startTime": 1710331887641,
"executionTime": 64,
"source": [
{
"previousNode": "Yourls1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"keyword": "10c",
"shorturl": "http://157.90.159.163:8095/10c",
"longurl": "https://n8n.io/1710331887441",
"title": "n8n-ulr with random suffix",
"message": "success",
"statusCode": 200
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Yourls2"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-03-13T12:11:27.439Z",
"stoppedAt": "2024-03-13T12:11:27.705Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,815 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1676891410333,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan": [
{
"startTime": 1676891410334,
"executionTime": 226,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "QDPRfemxRr6XDXZbE",
"defaultSwimlaneId": "7EEQmusaGFfc4beR2"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan1": [
{
"startTime": 1676891410560,
"executionTime": 93,
"source": [
{
"previousNode": "Wekan"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "QDPRfemxRr6XDXZbE",
"title": "Board1676891410370",
"members": [
"json array"
],
"permission": "private",
"color": "belize",
"slug": "board1676891410370",
"archived": false,
"createdAt": "2023-02-20T11:10:10.525Z",
"modifiedAt": "2023-02-20T11:10:10.525Z",
"stars": 0,
"labels": [
"json array"
],
"subtasksDefaultBoardId": {
"object": true
},
"subtasksDefaultListId": {
"object": true
},
"dateSettingsDefaultBoardId": {
"object": true
},
"dateSettingsDefaultListId": {
"object": true
},
"allowsSubtasks": true,
"allowsAttachments": true,
"allowsChecklists": true,
"allowsComments": true,
"allowsDescriptionTitle": true,
"allowsDescriptionText": true,
"allowsActivities": true,
"allowsLabels": true,
"allowsAssignee": true,
"allowsMembers": true,
"allowsRequestedBy": true,
"allowsAssignedBy": true,
"allowsReceivedDate": true,
"allowsStartDate": true,
"allowsEndDate": true,
"allowsDueDate": true,
"presentParentTask": "no-parent",
"isOvertime": false,
"type": "board",
"sort": 4
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan2": [
{
"startTime": 1676891410653,
"executionTime": 87,
"source": [
{
"previousNode": "Wekan1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "P2rsgwsk7pdqeLvgs",
"title": "Templates"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan4": [
{
"startTime": 1676891410741,
"executionTime": 129,
"source": [
{
"previousNode": "Wekan2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "hmHTXSeYTdC2huq4i"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan5": [
{
"startTime": 1676891410871,
"executionTime": 88,
"source": [
{
"previousNode": "Wekan4"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "hmHTXSeYTdC2huq4i",
"title": "List1676891410743",
"boardId": "QDPRfemxRr6XDXZbE",
"sort": 0,
"starred": false,
"archived": false,
"swimlaneId": "",
"createdAt": "2023-02-20T11:10:10.871Z",
"updatedAt": "2023-02-20T11:10:10.871Z",
"modifiedAt": "2023-02-20T11:10:10.871Z",
"wipLimit": {
"object": true
},
"type": "list"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan6": [
{
"startTime": 1676891410959,
"executionTime": 75,
"source": [
{
"previousNode": "Wekan5"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "hmHTXSeYTdC2huq4i",
"title": "List1676891410743"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan8": [
{
"startTime": 1676891411034,
"executionTime": 106,
"source": [
{
"previousNode": "Wekan6"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "3eghZWSaCNrXDF5Fq"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan9": [
{
"startTime": 1676891411140,
"executionTime": 88,
"source": [
{
"previousNode": "Wekan8"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "3eghZWSaCNrXDF5Fq"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan10": [
{
"startTime": 1676891411228,
"executionTime": 82,
"source": [
{
"previousNode": "Wekan9"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "3eghZWSaCNrXDF5Fq",
"title": "UpdatedCard1676891411141",
"boardId": "QDPRfemxRr6XDXZbE",
"listId": "hmHTXSeYTdC2huq4i",
"userId": "E27bvzwJ5A26xfAPG",
"swimlaneId": "CJ44cd7gPRf8qT3Xb",
"sort": 0,
"archived": false,
"parentId": "",
"coverId": "",
"createdAt": "2023-02-20T11:10:11.153Z",
"modifiedAt": "2023-02-20T11:10:11.243Z",
"customFields": [
"json array"
],
"dateLastActivity": "2023-02-20T11:10:11.243Z",
"description": "",
"requestedBy": "",
"assignedBy": "",
"labelIds": [
"json array"
],
"members": [
"json array"
],
"assignees": [
"json array"
],
"spentTime": 0,
"isOvertime": false,
"subtaskSort": -1,
"type": "cardType-card",
"linkedId": "",
"vote": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan11": [
{
"startTime": 1676891411310,
"executionTime": 97,
"source": [
{
"previousNode": "Wekan10"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "3eghZWSaCNrXDF5Fq",
"title": "UpdatedCard1676891411141",
"description": "",
"assignees": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan13": [
{
"startTime": 1676891411407,
"executionTime": 79,
"source": [
{
"previousNode": "Wekan11"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "jYfDm5RWaj9H5cCYx"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan17": [
{
"startTime": 1676891411486,
"executionTime": 180,
"source": [
{
"previousNode": "Wekan11"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "Kjz6WRTqtowBCsSJm"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan14": [
{
"startTime": 1676891411666,
"executionTime": 95,
"source": [
{
"previousNode": "Wekan13"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "jYfDm5RWaj9H5cCYx",
"userId": "E27bvzwJ5A26xfAPG",
"text": "CardComment1676891411409",
"cardId": "3eghZWSaCNrXDF5Fq",
"boardId": "QDPRfemxRr6XDXZbE",
"createdAt": "2023-02-20T11:10:11.510Z",
"modifiedAt": "2023-02-20T11:10:11.510Z"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan18": [
{
"startTime": 1676891411762,
"executionTime": 104,
"source": [
{
"previousNode": "Wekan17"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "Kjz6WRTqtowBCsSJm",
"title": "Checklist1676891411489",
"cardId": "3eghZWSaCNrXDF5Fq",
"sort": 0,
"createdAt": "2023-02-20T11:10:11.607Z",
"modifiedAt": "2023-02-20T11:10:11.606Z",
"items": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan15": [
{
"startTime": 1676891411867,
"executionTime": 76,
"source": [
{
"previousNode": "Wekan14"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "jYfDm5RWaj9H5cCYx",
"comment": "CardComment1676891411409",
"authorId": "E27bvzwJ5A26xfAPG"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan19": [
{
"startTime": 1676891411944,
"executionTime": 82,
"source": [
{
"previousNode": "Wekan18"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "Kjz6WRTqtowBCsSJm",
"title": "Checklist1676891411489"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan16": [
{
"startTime": 1676891412026,
"executionTime": 122,
"source": [
{
"previousNode": "Wekan15"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "3eghZWSaCNrXDF5Fq"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan21": [
{
"startTime": 1676891412149,
"executionTime": 91,
"source": [
{
"previousNode": "Wekan19"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "ud2FR3gp7ki3dGx5X",
"cardId": "3eghZWSaCNrXDF5Fq",
"checklistId": "Kjz6WRTqtowBCsSJm",
"title": "ChecklistItem1676891411489",
"sort": 0,
"isFinished": false,
"createdAt": "2023-02-20T11:10:11.641Z",
"modifiedAt": "2023-02-20T11:10:11.641Z"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan22": [
{
"startTime": 1676891412240,
"executionTime": 79,
"source": [
{
"previousNode": "Wekan21"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "ud2FR3gp7ki3dGx5X"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan23": [
{
"startTime": 1676891412319,
"executionTime": 87,
"source": [
{
"previousNode": "Wekan22"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "ud2FR3gp7ki3dGx5X"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan20": [
{
"startTime": 1676891412406,
"executionTime": 156,
"source": [
{
"previousNode": "Wekan23"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "Kjz6WRTqtowBCsSJm"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Merge": [
{
"startTime": 1676891412562,
"executionTime": 2,
"source": [
{
"previousNode": "Wekan20"
},
{
"previousNode": "Wekan16"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {}
}
]
]
}
}
],
"Wekan12": [
{
"startTime": 1676891412565,
"executionTime": 112,
"source": [
{
"previousNode": "Merge"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "3eghZWSaCNrXDF5Fq"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan7": [
{
"startTime": 1676891412678,
"executionTime": 108,
"source": [
{
"previousNode": "Wekan12"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "hmHTXSeYTdC2huq4i"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wekan3": [
{
"startTime": 1676891412786,
"executionTime": 137,
"source": [
{
"previousNode": "Wekan7"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "QDPRfemxRr6XDXZbE"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Wekan3"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-02-20T11:10:10.328Z",
"stoppedAt": "2023-02-20T11:10:12.923Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,71 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"hints": [],
"startTime": 1738078143830,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Line": [
{
"hints": [],
"startTime": 1738078143831,
"executionTime": 1446,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": 200,
"message": "ok"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Line"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-01-28T15:29:03.830Z",
"stoppedAt": "2025-01-28T15:29:05.277Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,112 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994524,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mandrill": [
{
"startTime": 1747343994524,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 578,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"email": "nodeqa1747343994527@email.test",
"status": "rejected",
"_id": "8111baeb0ff141db9aa0f2f7cc96a08d",
"reject_reason": "unsigned",
"queued_reason": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mandrill1": [
{
"startTime": 1747343995102,
"executionIndex": 2,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 512,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"email": "nodeqa1747343995103@email.test",
"status": "rejected",
"_id": "769293eaca9843c2926c7ec1e5df052a",
"reject_reason": "unsigned",
"queued_reason": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Mandrill1"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.524Z",
"stoppedAt": "2025-05-15T21:19:55.614Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,99 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1710331887804,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Twilio": [
{
"startTime": 1710331887804,
"executionTime": 661,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"body": "Message1710331887805",
"num_segments": "1",
"direction": "outbound-api",
"from": "+15005550006",
"date_updated": "Wed, 13 Mar 2024 12:11:28 +0000",
"price": {
"object": true
},
"error_message": {
"object": true
},
"uri": "/2010-04-01/Accounts/AC8dd0c6e08b0f196d34adde4f00507d9f/Messages/SMd99c4e5b501391cb4fbe91937f23ec3b.json",
"account_sid": "AC8dd0c6e08b0f196d34adde4f00507d9f",
"num_media": "0",
"to": "+15005550006",
"date_created": "Wed, 13 Mar 2024 12:11:28 +0000",
"status": "queued",
"sid": "SMd99c4e5b501391cb4fbe91937f23ec3b",
"date_sent": {
"object": true
},
"messaging_service_sid": {
"object": true
},
"error_code": {
"object": true
},
"price_unit": "USD",
"api_version": "2010-04-01",
"subresource_uris": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Twilio"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-03-13T12:11:27.804Z",
"stoppedAt": "2024-03-13T12:11:28.465Z",
"status": "running",
"finished": true
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,73 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994520,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailgun": [
{
"startTime": 1747343994520,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 689,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "<20250515211955.750e4c368fa24e88@sandbox9d3ed7f14628495f83c01d31dbc98ce4.mailgun.org>",
"message": "Queued. Thank you."
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Mailgun"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.520Z",
"stoppedAt": "2025-05-15T21:19:55.209Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,278 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"hints": [],
"startTime": 1738078145786,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Clearbit2": [
{
"hints": [],
"startTime": 1738078145786,
"executionTime": 523,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "f949b35a-6158-41c7-8b50-dc2c238cfbf3",
"name": {
"object": true
},
"email": "jan@n8n.io",
"location": "Berlin, Berlin, DE",
"timeZone": "Europe/Berlin",
"utcOffset": 1,
"geo": {
"object": true
},
"bio": {
"object": true
},
"site": {
"object": true
},
"avatar": "https://d1ts43dypk8bqh.cloudfront.net/v1/avatars/f949b35a-6158-41c7-8b50-dc2c238cfbf3",
"employment": {
"object": true
},
"facebook": {
"object": true
},
"github": {
"object": true
},
"twitter": {
"object": true
},
"linkedin": {
"object": true
},
"googleplus": {
"object": true
},
"gravatar": {
"object": true
},
"fuzzy": false,
"emailProvider": false,
"indexedAt": "2025-01-16T15:13:36.503Z",
"phone": {
"object": true
},
"inactiveAt": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Clearbit": [
{
"hints": [],
"startTime": 1738078146310,
"executionTime": 530,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "546ba3f6-a6b7-41a1-aed8-4f9bba4119e8",
"name": "n8n",
"legalName": {
"object": true
},
"domain": "n8n.io",
"domainAliases": [
"json array"
],
"site": {
"object": true
},
"category": {
"object": true
},
"tags": [
"json array"
],
"description": "n8n.io is a leading low-code automation tool that connects anything to everything through its open, fair code model, enabling users to build multi-step workflows with ease.",
"foundedYear": 2019,
"location": "Borsigstraße 27, 10115 Berlin, Germany",
"timeZone": "Europe/Berlin",
"utcOffset": 1,
"geo": {
"object": true
},
"logo": "https://logo.clearbit.com/n8n.io",
"facebook": {
"object": true
},
"linkedin": {
"object": true
},
"twitter": {
"object": true
},
"crunchbase": {
"object": true
},
"emailProvider": false,
"type": "private",
"ticker": {
"object": true
},
"identifiers": {
"object": true
},
"phone": {
"object": true
},
"metrics": {
"object": true
},
"indexedAt": "2025-01-02T01:00:13.309Z",
"tech": [
"json array"
],
"techCategories": [
"json array"
],
"parent": {
"object": true
},
"ultimateParent": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Clearbit1": [
{
"hints": [],
"startTime": 1738078146840,
"executionTime": 262,
"source": [
{
"previousNode": "Clearbit"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"name": "Nielsen Norman Group",
"domain": "nngroup.com",
"logo": "https://logo.clearbit.com/nngroup.com"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"name": "Новости НН.ру",
"domain": "nn.ru",
"logo": "https://logo.clearbit.com/nn.ru"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"name": "NNY360",
"domain": "nny360.com",
"logo": "https://logo.clearbit.com/nny360.com"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"name": "City of Newport News, VA - Government",
"domain": "nnva.gov",
"logo": "https://logo.clearbit.com/nnva.gov"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"name": "NNNOW",
"domain": "nnnow.com",
"logo": "https://logo.clearbit.com/nnnow.com"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Clearbit1"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-01-28T15:29:05.785Z",
"stoppedAt": "2025-01-28T15:29:07.103Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,105 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1706635217888,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Peekalink1": [
{
"startTime": 1706635217888,
"executionTime": 1099,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"url": "https://example.com/",
"domain": "example.com",
"lastUpdated": "2024-01-28T02:10:25.125799Z",
"nextUpdate": "2024-02-04T02:10:25.123122Z",
"contentType": "html",
"mimeType": "text/html",
"size": 648,
"redirected": false,
"title": "Example Domain",
"description": "This domain is for use in illustrative examples in documents. You may use this domain in literature without prior coordination or asking for permission.",
"name": "EXAMPLE.COM",
"trackersDetected": false
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Peekalink": [
{
"startTime": 1706635218987,
"executionTime": 285,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"isAvailable": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Peekalink"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-01-30T17:20:17.888Z",
"stoppedAt": "2024-01-30T17:20:19.272Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,198 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1676891412800,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set": [
{
"startTime": 1676891412801,
"executionTime": 35,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"temperature": 40.4032385941659,
"location": "n8n",
"time": "2023-02-20T11:10:12.835Z"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"TimescaleDB": [
{
"startTime": 1676891412836,
"executionTime": 177,
"source": [
{
"previousNode": "Set"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"time": "2023-02-20T11:10:12.835Z",
"location": "n8n",
"temperature": 40.4032385941659
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"TimescaleDB2": [
{
"startTime": 1676891413014,
"executionTime": 178,
"source": [
{
"previousNode": "TimescaleDB"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"time": "2023-02-20T11:10:12.835Z",
"location": "n8n",
"temperature": 40.4032385941659
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set1": [
{
"startTime": 1676891413193,
"executionTime": 1,
"source": [
{
"previousNode": "TimescaleDB2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"time": "2023-02-20T11:10:12.835Z",
"location": "updatedn8n",
"temperature": 40.4032385941659
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"TimescaleDB1": [
{
"startTime": 1676891413195,
"executionTime": 192,
"source": [
{
"previousNode": "Set1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"time": "2023-02-20T11:10:12.835Z",
"location": "updatedn8n",
"temperature": "40.4032385941659"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"TimescaleDB3": [
{
"startTime": 1676891413387,
"executionTime": 157,
"source": [
{
"previousNode": "TimescaleDB1"
}
],
"executionStatus": "success",
"data": {
"main": [
[]
]
}
}
]
},
"lastNodeExecuted": "TimescaleDB3"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-02-20T11:10:12.798Z",
"stoppedAt": "2023-02-20T11:10:13.544Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,613 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1683532113975,
"executionTime": 1,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Raindrop": [
{
"startTime": 1683532113976,
"executionTime": 482,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"tfa": {
"object": true
},
"files": {
"object": true
},
"_id": 618756,
"pro": false,
"name": "nodeqa",
"fullName": "nodeqa",
"email": "nodeqa@n8n.io",
"groups": [
"json array"
],
"lastAction": "2023-05-08T02:25:37.144Z",
"lastVisit": "2023-05-08T02:23:04.375Z",
"registered": "2021-03-24T08:38:18.892Z",
"lastUpdate": "2023-05-08T02:25:37.144Z",
"config": {
"object": true
},
"avatar": "",
"password": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Raindrop1": [
{
"startTime": 1683532114459,
"executionTime": 258,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"title": "Collection1683532114491",
"description": "",
"user": {
"object": true
},
"public": false,
"count": 0,
"cover": [
"json array"
],
"expanded": true,
"creatorRef": 618756,
"lastAction": "2023-05-08T07:48:34.585Z",
"created": "2023-05-08T07:48:34.586Z",
"lastUpdate": "2023-05-08T07:48:34.586Z",
"_id": 34146645,
"sort": 34146645,
"slug": "collection1683532114491",
"__v": 0,
"access": {
"object": true
},
"author": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Raindrop2": [
{
"startTime": 1683532114718,
"executionTime": 136,
"source": [
{
"previousNode": "Raindrop1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"view": "list",
"_id": 34146645,
"title": "Collection1683532114491",
"description": "",
"user": {
"object": true
},
"public": false,
"count": 0,
"cover": [
"json array"
],
"expanded": true,
"creatorRef": {
"object": true
},
"lastAction": "2023-05-08T07:48:34.585Z",
"created": "2023-05-08T07:48:34.586Z",
"lastUpdate": "2023-05-08T07:48:34.586Z",
"sort": 34146645,
"slug": "collection1683532114491",
"access": {
"object": true
},
"author": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Raindrop3": [
{
"startTime": 1683532114854,
"executionTime": 165,
"source": [
{
"previousNode": "Raindrop2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": 34146645,
"title": "UpdatedCollection1683532114491",
"description": "",
"slug": "updated-collection1683532114491",
"user": {
"object": true
},
"creatorRef": {
"object": true
},
"public": false,
"view": "list",
"count": 0,
"cover": [
"json array"
],
"sort": 34146645,
"expanded": true,
"lastAction": "2023-05-08T07:48:34.585Z",
"created": "2023-05-08T07:48:34.586Z",
"lastUpdate": "2023-05-08T07:48:34.983Z",
"access": {
"object": true
},
"author": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Raindrop4": [
{
"startTime": 1683532115020,
"executionTime": 137,
"source": [
{
"previousNode": "Raindrop3"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": 34146645,
"title": "UpdatedCollection1683532114491",
"description": "",
"user": {
"object": true
},
"public": false,
"count": 0,
"cover": [
"json array"
],
"expanded": true,
"creatorRef": {
"object": true
},
"lastAction": "2023-05-08T07:48:34.585Z",
"created": "2023-05-08T07:48:34.586Z",
"lastUpdate": "2023-05-08T07:48:34.983Z",
"sort": 34146645,
"slug": "updated-collection1683532114491",
"view": "list",
"access": {
"object": true
},
"author": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Raindrop6": [
{
"startTime": 1683532115158,
"executionTime": 191,
"source": [
{
"previousNode": "Raindrop4"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"link": "https://n8n.io/",
"title": "Bookmark1683532115161",
"excerpt": "",
"note": "",
"type": "link",
"user": {
"object": true
},
"cover": "",
"tags": [
"json array"
],
"removed": false,
"collection": {
"object": true
},
"media": [
"json array"
],
"created": "2023-05-08T07:48:35.288Z",
"lastUpdate": "2023-05-08T07:48:35.288Z",
"domain": "n8n.io",
"_id": 569394745,
"creatorRef": 618756,
"sort": 569394745,
"__v": 0,
"collectionId": 34146645
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Raindrop7": [
{
"startTime": 1683532115349,
"executionTime": 132,
"source": [
{
"previousNode": "Raindrop6"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": 569394745,
"link": "https://n8n.io/",
"title": "Bookmark1683532115161",
"excerpt": "",
"note": "",
"type": "link",
"user": {
"object": true
},
"cover": "",
"tags": [
"json array"
],
"removed": false,
"collection": {
"object": true
},
"media": [
"json array"
],
"created": "2023-05-08T07:48:35.288Z",
"lastUpdate": "2023-05-08T07:48:35.288Z",
"domain": "n8n.io",
"creatorRef": {
"object": true
},
"sort": 569394745,
"highlights": [
"json array"
],
"collectionId": 34146645
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Raindrop8": [
{
"startTime": 1683532115482,
"executionTime": 175,
"source": [
{
"previousNode": "Raindrop7"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": 569394745,
"link": "https://n8n.io/",
"domain": "n8n.io",
"title": "UpdatedBookmark1683532115161",
"excerpt": "",
"note": "",
"type": "link",
"user": {
"object": true
},
"creatorRef": {
"object": true
},
"cover": "",
"media": [
"json array"
],
"tags": [
"json array"
],
"highlights": [
"json array"
],
"removed": false,
"sort": 569394745,
"created": "2023-05-08T07:48:35.288Z",
"lastUpdate": "2023-05-08T07:48:35.624Z",
"collection": {
"object": true
},
"__v": 1,
"collectionId": 34146645
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Raindrop9": [
{
"startTime": 1683532115658,
"executionTime": 143,
"source": [
{
"previousNode": "Raindrop8"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": 569394745,
"link": "https://n8n.io/",
"title": "UpdatedBookmark1683532115161",
"excerpt": "",
"note": "",
"type": "link",
"user": {
"object": true
},
"cover": "",
"tags": [
"json array"
],
"removed": false,
"collection": {
"object": true
},
"media": [
"json array"
],
"created": "2023-05-08T07:48:35.288Z",
"lastUpdate": "2023-05-08T07:48:35.624Z",
"domain": "n8n.io",
"creatorRef": {
"object": true
},
"sort": 569394745,
"highlights": [
"json array"
],
"collectionId": 34146645
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Raindrop11": [
{
"startTime": 1683532115802,
"executionTime": 272,
"source": [
{
"previousNode": "Raindrop9"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_id": "automation",
"count": 4
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Raindrop12": [
{
"startTime": 1683532116075,
"executionTime": 153,
"source": [
{
"previousNode": "Raindrop11"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"result": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Raindrop10": [
{
"startTime": 1683532116228,
"executionTime": 178,
"source": [
{
"previousNode": "Raindrop12"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"result": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Raindrop5": [
{
"startTime": 1683532116406,
"executionTime": 227,
"source": [
{
"previousNode": "Raindrop10"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"result": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Raindrop5"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-05-08T07:48:33.974Z",
"stoppedAt": "2023-05-08T07:48:36.634Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,96 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1676891413308,
"executionTime": 1,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"DeepL": [
{
"startTime": 1676891413309,
"executionTime": 601,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"detected_source_language": "EN",
"text": "n8n (ausgesprochen n-eight-n) hilft Ihnen, jede App mit einer API auf der Welt miteinander zu verbinden, um ihre Daten ohne eine einzige Zeile Code zu teilen und zu manipulieren. Es ist ein einfach zu bedienender, benutzerfreundlicher und hochgradig anpassbarer Dienst."
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Function": [
{
"startTime": 1676891413911,
"executionTime": 10,
"source": [
{
"previousNode": "DeepL"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"detected_source_language": "EN",
"text": "n8n (ausgesprochen n-eight-n) hilft Ihnen, jede App mit einer API auf der Welt miteinander zu verbinden, um ihre Daten ohne eine einzige Zeile Code zu teilen und zu manipulieren. Es ist ein einfach zu bedienender, benutzerfreundlicher und hochgradig anpassbarer Dienst."
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
]
},
"lastNodeExecuted": "Function"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-02-20T11:10:13.307Z",
"stoppedAt": "2023-02-20T11:10:13.921Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,644 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994529,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Dropbox8": [
{
"startTime": 1747343994529,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 1620,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"metadata": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Read Binary File": [
{
"startTime": 1747343996149,
"executionIndex": 2,
"source": [
{
"previousNode": "Dropbox8"
}
],
"hints": [],
"executionTime": 6,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"metadata": {
"object": true
}
},
"binary": {
"data": {
"mimeType": "image/png",
"fileType": "image",
"fileExtension": "png",
"data": "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",
"directory": "/tmp",
"fileName": "n8n-logo.png",
"fileSize": "2.67 kB"
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Sleep 0.8 seconds": [
{
"startTime": 1747343996155,
"executionIndex": 3,
"source": [
{
"previousNode": "Read Binary File"
}
],
"hints": [],
"executionTime": 803,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"metadata": {
"object": true
}
},
"binary": {
"data": {
"mimeType": "image/png",
"fileType": "image",
"fileExtension": "png",
"data": "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",
"directory": "/tmp",
"fileName": "n8n-logo.png",
"fileSize": "2.67 kB"
}
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Dropbox": [
{
"startTime": 1747343996958,
"executionIndex": 4,
"source": [
{
"previousNode": "Sleep 0.8 seconds"
}
],
"hints": [],
"executionTime": 1679,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"name": "testFile",
"path_lower": "/testfolder1747343995365/testfile",
"path_display": "/testFolder1747343995365/testFile",
"id": "id:2Tke52G4OWEAAAAAAAAc-A",
"client_modified": "2025-05-15T21:19:58Z",
"server_modified": "2025-05-15T21:19:58Z",
"rev": "01635333a543eef0000000222408c10",
"size": 2675,
"is_downloadable": true,
"content_hash": "1fbea2b44830c71ca338c89a5e3a45585f74d9e15c19bfef69b19b38e9da99b9"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Sleep 0.8 seconds1": [
{
"startTime": 1747343998638,
"executionIndex": 5,
"source": [
{
"previousNode": "Dropbox"
}
],
"hints": [],
"executionTime": 801,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"name": "testFile",
"path_lower": "/testfolder1747343995365/testfile",
"path_display": "/testFolder1747343995365/testFile",
"id": "id:2Tke52G4OWEAAAAAAAAc-A",
"client_modified": "2025-05-15T21:19:58Z",
"server_modified": "2025-05-15T21:19:58Z",
"rev": "01635333a543eef0000000222408c10",
"size": 2675,
"is_downloadable": true,
"content_hash": "1fbea2b44830c71ca338c89a5e3a45585f74d9e15c19bfef69b19b38e9da99b9"
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Dropbox2": [
{
"startTime": 1747343999439,
"executionIndex": 6,
"source": [
{
"previousNode": "Sleep 0.8 seconds1"
}
],
"hints": [],
"executionTime": 3055,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"metadata": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Dropbox3": [
{
"startTime": 1747344002494,
"executionIndex": 7,
"source": [
{
"previousNode": "Dropbox2"
}
],
"hints": [],
"executionTime": 2030,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"metadata": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Dropbox5": [
{
"startTime": 1747344004524,
"executionIndex": 8,
"source": [
{
"previousNode": "Dropbox2"
}
],
"hints": [],
"executionTime": 1541,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"metadata": {
"object": true
}
},
"binary": {
"data": {
"mimeType": "image/png",
"fileType": "image",
"fileExtension": "png",
"data": "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",
"directory": "/testFolder1747343995365",
"fileName": "moveTestFile1747344000304",
"fileSize": "2.67 kB"
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Sleep 0.8 seconds2": [
{
"startTime": 1747344006065,
"executionIndex": 9,
"source": [
{
"previousNode": "Dropbox3"
}
],
"hints": [],
"executionTime": 806,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"metadata": {
"object": true
}
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Sleep 0.8 seconds3": [
{
"startTime": 1747344006871,
"executionIndex": 10,
"source": [
{
"previousNode": "Dropbox5"
}
],
"hints": [],
"executionTime": 807,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"metadata": {
"object": true
}
},
"binary": {
"data": {
"mimeType": "image/png",
"fileType": "image",
"fileExtension": "png",
"data": "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",
"directory": "/testFolder1747343995365",
"fileName": "moveTestFile1747344000304",
"fileSize": "2.67 kB"
}
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Dropbox4": [
{
"startTime": 1747344007678,
"executionIndex": 11,
"source": [
{
"previousNode": "Sleep 0.8 seconds2"
}
],
"hints": [],
"executionTime": 1769,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"metadata": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Dropbox6": [
{
"startTime": 1747344009447,
"executionIndex": 12,
"source": [
{
"previousNode": "Sleep 0.8 seconds3"
}
],
"hints": [],
"executionTime": 1815,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"metadata": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Sleep 0.8 seconds6": [
{
"startTime": 1747344011262,
"executionIndex": 13,
"source": [
{
"previousNode": "Dropbox6"
}
],
"hints": [],
"executionTime": 803,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"metadata": {
"object": true
}
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Dropbox10": [
{
"startTime": 1747344012065,
"executionIndex": 14,
"source": [
{
"previousNode": "Sleep 0.8 seconds6"
}
],
"hints": [],
"executionTime": 3083,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"metadata": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Sleep 0.8 seconds5": [
{
"startTime": 1747344015149,
"executionIndex": 15,
"source": [
{
"previousNode": "Dropbox10"
}
],
"hints": [],
"executionTime": 805,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"metadata": {
"object": true
}
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Dropbox9": [
{
"startTime": 1747344015954,
"executionIndex": 16,
"source": [
{
"previousNode": "Sleep 0.8 seconds5"
}
],
"hints": [],
"executionTime": 1070,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": [
{
"item": 0,
"input": 0
}
]
}
]
]
}
}
],
"Sleep 0.8 seconds4": [
{
"startTime": 1747344017024,
"executionIndex": 17,
"source": [
{
"previousNode": "Dropbox9"
}
],
"hints": [],
"executionTime": 806,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Dropbox11": [
{
"startTime": 1747344017830,
"executionIndex": 18,
"source": [
{
"previousNode": "Sleep 0.8 seconds4"
}
],
"hints": [],
"executionTime": 1794,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"metadata": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Dropbox11"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.529Z",
"stoppedAt": "2025-05-15T21:20:19.624Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,184 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994529,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PostHog": [
{
"startTime": 1747343994529,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 175,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": 1
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PostHog1": [
{
"startTime": 1747343994704,
"executionIndex": 2,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 79,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": 1
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PostHog2": [
{
"startTime": 1747343994783,
"executionIndex": 3,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 75,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": 1
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PostHog3": [
{
"startTime": 1747343994858,
"executionIndex": 4,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 82,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": 1
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PostHog4": [
{
"startTime": 1747343994940,
"executionIndex": 5,
"source": [
{
"previousNode": "PostHog3"
}
],
"hints": [],
"executionTime": 67,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": 1
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "PostHog4"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.529Z",
"stoppedAt": "2025-05-15T21:19:55.007Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,799 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1710331888599,
"executionTime": 1,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise5": [
{
"startTime": 1710331888600,
"executionTime": 341,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 700007874,
"business": {
"object": true
},
"profile": 16154361,
"accountHolderName": "Node QA",
"currency": "EUR",
"country": "NL",
"type": "iban",
"details": {
"object": true
},
"user": 5681537,
"active": true,
"ownedByCustomer": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise4": [
{
"startTime": 1710331888941,
"executionTime": 384,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 16154361,
"type": "personal",
"details": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise3": [
{
"startTime": 1710331889325,
"executionTime": 240,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"rate": 1.09309,
"source": "EUR",
"target": "USD",
"time": "2024-03-12T00:00:00+0000"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise2": [
{
"startTime": 1710331889565,
"executionTime": 249,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"accountHolder": {
"object": true
},
"issuer": {
"object": true
},
"bankDetails": [
"json array"
],
"transactions": [
"json array"
],
"startOfStatementBalance": {
"object": true
},
"endOfStatementBalance": {
"object": true
},
"endOfStatementUnrealisedGainLoss": {
"object": true
},
"balanceAssetConfiguration": {
"object": true
},
"query": {
"object": true
},
"request": {
"object": true
},
"feeSummary": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise6": [
{
"startTime": 1710331889814,
"executionTime": 751,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"sourceAmount": 2,
"guaranteedTargetAmountAllowed": false,
"targetAmountAllowed": true,
"paymentOptions": [
"json array"
],
"notices": [
"json array"
],
"transferFlowConfig": {
"object": true
},
"rateTimestamp": "2024-03-13T12:11:29Z",
"clientId": "transferwise-personal-tokens",
"expirationTime": "2024-03-13T12:41:29Z",
"id": "9d0519da-b525-4d4d-92c2-d9ca1df535ad",
"type": "REGULAR",
"createdTime": "2024-03-13T12:11:29Z",
"user": 5681537,
"rateType": "FIXED",
"rateExpirationTime": "2024-04-12T12:11:29Z",
"payOut": "BANK_TRANSFER",
"guaranteedTargetAmount": false,
"providedAmountType": "SOURCE",
"status": "PENDING",
"profile": 16154361,
"rate": 1,
"sourceCurrency": "EUR",
"targetCurrency": "EUR",
"payInCountry": "GB",
"funding": "POST"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise14": [
{
"startTime": 1710331890565,
"executionTime": 513,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"sourceAmount": 2,
"guaranteedTargetAmountAllowed": false,
"targetAmountAllowed": true,
"paymentOptions": [
"json array"
],
"notices": [
"json array"
],
"transferFlowConfig": {
"object": true
},
"rateTimestamp": "2024-03-13T12:11:30Z",
"clientId": "transferwise-personal-tokens",
"expirationTime": "2024-03-13T12:41:30Z",
"id": "f4ac8d5d-2d97-4a7f-a695-c6709e1a930d",
"type": "REGULAR",
"createdTime": "2024-03-13T12:11:30Z",
"user": 5681537,
"rateType": "FIXED",
"rateExpirationTime": "2024-04-12T12:11:30Z",
"payOut": "BANK_TRANSFER",
"guaranteedTargetAmount": false,
"providedAmountType": "SOURCE",
"status": "PENDING",
"profile": 16154361,
"rate": 1,
"sourceCurrency": "EUR",
"targetCurrency": "EUR",
"payInCountry": "GB",
"funding": "POST"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise12": [
{
"startTime": 1710331891078,
"executionTime": 304,
"source": [
{
"previousNode": "Wise4"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 16154361,
"type": "personal",
"details": {
"object": true
}
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": 16154362,
"type": "business",
"details": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise": [
{
"startTime": 1710331891382,
"executionTime": 282,
"source": [
{
"previousNode": "Wise2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 23302,
"profileId": 16154361,
"recipientId": 147784111,
"creationTime": "2021-03-24T14:32:25.979Z",
"modificationTime": "2021-03-24T14:32:25.979Z",
"active": true,
"eligible": true,
"balances": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise7": [
{
"startTime": 1710331891664,
"executionTime": 471,
"source": [
{
"previousNode": "Wise6"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"sourceAmount": 2,
"guaranteedTargetAmountAllowed": false,
"targetAmountAllowed": true,
"paymentOptions": [
"json array"
],
"notices": [
"json array"
],
"transferFlowConfig": {
"object": true
},
"rateTimestamp": "2024-03-13T12:11:29Z",
"clientId": "transferwise-personal-tokens",
"expirationTime": "2024-03-13T12:41:29Z",
"id": "9d0519da-b525-4d4d-92c2-d9ca1df535ad",
"type": "REGULAR",
"createdTime": "2024-03-13T12:11:29Z",
"user": 5681537,
"rateType": "FIXED",
"rateExpirationTime": "2024-04-12T12:11:29Z",
"payOut": "BANK_TRANSFER",
"guaranteedTargetAmount": false,
"providedAmountType": "SOURCE",
"payInCountry": "GB",
"funding": "POST",
"status": "PENDING",
"profile": 16154361,
"rate": 1,
"sourceCurrency": "EUR",
"targetCurrency": "EUR"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise16": [
{
"startTime": 1710331892136,
"executionTime": 2032,
"source": [
{
"previousNode": "Wise14"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 53112532,
"user": 5681537,
"targetAccount": 700007874,
"sourceAccount": {
"object": true
},
"quote": {
"object": true
},
"quoteUuid": "f4ac8d5d-2d97-4a7f-a695-c6709e1a930d",
"status": "incoming_payment_waiting",
"reference": "",
"rate": 1,
"created": "2024-03-13 12:11:34",
"business": {
"object": true
},
"transferRequest": {
"object": true
},
"details": {
"object": true
},
"hasActiveIssues": false,
"sourceCurrency": "EUR",
"sourceValue": 1.37,
"targetCurrency": "EUR",
"targetValue": 1.37,
"customerTransactionId": "6c67d18c-6639-4158-b8a6-325858c7d155"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise1": [
{
"startTime": 1710331894168,
"executionTime": 136,
"source": [
{
"previousNode": "Wise"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"code": "AED",
"hasBankDetails": false,
"payInAllowed": false,
"sampleBankDetails": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise8": [
{
"startTime": 1710331894305,
"executionTime": 1875,
"source": [
{
"previousNode": "Wise7"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 53112534,
"user": 5681537,
"targetAccount": 700007874,
"sourceAccount": {
"object": true
},
"quote": {
"object": true
},
"quoteUuid": "9d0519da-b525-4d4d-92c2-d9ca1df535ad",
"status": "incoming_payment_waiting",
"reference": "",
"rate": 1,
"created": "2024-03-13 12:11:36",
"business": {
"object": true
},
"transferRequest": {
"object": true
},
"details": {
"object": true
},
"hasActiveIssues": false,
"sourceCurrency": "EUR",
"sourceValue": 1.37,
"targetCurrency": "EUR",
"targetValue": 1.37,
"customerTransactionId": "f162e8de-8d10-4bc9-88ef-4840fd22b6a5"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise15": [
{
"startTime": 1710331896180,
"executionTime": 258,
"source": [
{
"previousNode": "Wise16"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 53112532,
"user": 5681537,
"targetAccount": 700007874,
"sourceAccount": {
"object": true
},
"quote": {
"object": true
},
"quoteUuid": "f4ac8d5d-2d97-4a7f-a695-c6709e1a930d",
"status": "cancelled",
"reference": "",
"rate": 1,
"created": "2024-03-13 12:11:34",
"business": {
"object": true
},
"transferRequest": {
"object": true
},
"details": {
"object": true
},
"hasActiveIssues": false,
"sourceCurrency": "EUR",
"sourceValue": 1.37,
"targetCurrency": "EUR",
"targetValue": 1.37,
"customerTransactionId": "6c67d18c-6639-4158-b8a6-325858c7d155"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise9": [
{
"startTime": 1710331896438,
"executionTime": 250,
"source": [
{
"previousNode": "Wise8"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 53112534,
"user": 5681537,
"targetAccount": 700007874,
"sourceAccount": {
"object": true
},
"quote": {
"object": true
},
"quoteUuid": "9d0519da-b525-4d4d-92c2-d9ca1df535ad",
"status": "incoming_payment_waiting",
"reference": "",
"rate": 1,
"created": "2024-03-13 12:11:36",
"business": {
"object": true
},
"transferRequest": {
"object": true
},
"details": {
"object": true
},
"hasActiveIssues": false,
"sourceCurrency": "EUR",
"sourceValue": 1.37,
"targetCurrency": "EUR",
"targetValue": 1.37,
"customerTransactionId": "f162e8de-8d10-4bc9-88ef-4840fd22b6a5"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise10": [
{
"startTime": 1710331896689,
"executionTime": 355,
"source": [
{
"previousNode": "Wise9"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 52915297,
"user": 5681537,
"targetAccount": 147784111,
"sourceAccount": {
"object": true
},
"quote": {
"object": true
},
"quoteUuid": "2eabfb55-3b8f-4d8d-82dc-b92db67d5117",
"status": "cancelled",
"reference": "",
"rate": 1,
"created": "2024-02-13 02:08:50",
"business": {
"object": true
},
"transferRequest": {
"object": true
},
"details": {
"object": true
},
"hasActiveIssues": false,
"sourceCurrency": "EUR",
"sourceValue": 2,
"targetCurrency": "EUR",
"targetValue": 2,
"customerTransactionId": "f0431a1e-fe5f-456a-a254-4c7cc774545d"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Wise13": [
{
"startTime": 1710331897044,
"executionTime": 0,
"source": [
{
"previousNode": "Wise10"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 52915297,
"user": 5681537,
"targetAccount": 147784111,
"sourceAccount": {
"object": true
},
"quote": {
"object": true
},
"quoteUuid": "2eabfb55-3b8f-4d8d-82dc-b92db67d5117",
"status": "cancelled",
"reference": "",
"rate": 1,
"created": "2024-02-13 02:08:50",
"business": {
"object": true
},
"transferRequest": {
"object": true
},
"details": {
"object": true
},
"hasActiveIssues": false,
"sourceCurrency": "EUR",
"sourceValue": 2,
"targetCurrency": "EUR",
"targetValue": 2,
"customerTransactionId": "f0431a1e-fe5f-456a-a254-4c7cc774545d"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Wise13"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-03-13T12:11:28.599Z",
"stoppedAt": "2024-03-13T12:11:37.044Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,171 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994528,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS Comprehend": [
{
"startTime": 1747343994528,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 535,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"en": 0.995190441608429
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS Comprehend1": [
{
"startTime": 1747343995063,
"executionIndex": 2,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 441,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"Sentiment": "POSITIVE",
"SentimentScore": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS Comprehend2": [
{
"startTime": 1747343995504,
"executionIndex": 3,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 533,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"BeginOffset": 0,
"EndOffset": 3,
"Score": 0.4956623315811157,
"Text": "n8n",
"Type": "OTHER"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"BeginOffset": 18,
"EndOffset": 23,
"Score": 0.4929276704788208,
"Text": "eight",
"Type": "OTHER"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"BeginOffset": 53,
"EndOffset": 62,
"Score": 0.7383686304092407,
"Text": "every app",
"Type": "QUANTITY"
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"BeginOffset": 147,
"EndOffset": 158,
"Score": 0.9422106146812439,
"Text": "single line",
"Type": "QUANTITY"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "AWS Comprehend2"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.528Z",
"stoppedAt": "2025-05-15T21:19:56.037Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,100 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994432,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 1,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS Lambda": [
{
"startTime": 1747343994433,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 493,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"result": "Hello world!, this is n8n"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS Lambda1": [
{
"startTime": 1747343994926,
"executionIndex": 2,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 296,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"result": "Hello world!, this is nodeqa"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "AWS Lambda1"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.431Z",
"stoppedAt": "2025-05-15T21:19:55.222Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,109 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994435,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Function": [
{
"startTime": 1747343994435,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 14,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"binary": {
"data": {
"data": "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",
"mimeType": "image/png",
"fileExtension": "png",
"fileName": "n8n-logo.png"
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS Rekognition": [
{
"startTime": 1747343994449,
"executionIndex": 2,
"source": [
{
"previousNode": "Function"
}
],
"hints": [],
"executionTime": 953,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"TextDetections": [
"json array"
],
"TextModelVersion": "3.0"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "AWS Rekognition"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.434Z",
"stoppedAt": "2025-05-15T21:19:55.402Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,523 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994451,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set": [
{
"startTime": 1747343994451,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 12,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"bucketName": "Bucket1747343994463"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS S3": [
{
"startTime": 1747343994463,
"executionIndex": 2,
"source": [
{
"previousNode": "Set"
}
],
"hints": [],
"executionTime": 679,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS S": [
{
"startTime": 1747343995142,
"executionIndex": 3,
"source": [
{
"previousNode": "AWS S3"
}
],
"hints": [],
"executionTime": 399,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"Name": "adi.testing",
"CreationDate": "2023-09-20T10:14:46.000Z"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set1": [
{
"startTime": 1747343995541,
"executionIndex": 4,
"source": [
{
"previousNode": "AWS S3"
}
],
"hints": [],
"executionTime": 2,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"folderName": "Folder1747343995543"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Function": [
{
"startTime": 1747343995543,
"executionIndex": 5,
"source": [
{
"previousNode": "AWS S"
}
],
"hints": [],
"executionTime": 2,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"binary": {
"data": {
"data": "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",
"mimeType": "image/png",
"fileExtension": "png",
"fileName": "n8n-logo.png"
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS S8": [
{
"startTime": 1747343995545,
"executionIndex": 6,
"source": [
{
"previousNode": "Set1"
}
],
"hints": [],
"executionTime": 881,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS S2": [
{
"startTime": 1747343996426,
"executionIndex": 7,
"source": [
{
"previousNode": "Function"
}
],
"hints": [],
"executionTime": 930,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS S9": [
{
"startTime": 1747343997356,
"executionIndex": 8,
"source": [
{
"previousNode": "AWS S8"
}
],
"hints": [],
"executionTime": 712,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"Key": "Folder1747343995543/",
"LastModified": "2025-05-15T21:19:57.000Z",
"ETag": "\"d41d8cd98f00b204e9800998ecf8427e\"",
"ChecksumAlgorithm": "CRC64NVME",
"ChecksumType": "FULL_OBJECT",
"Size": "0",
"StorageClass": "STANDARD"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS S4": [
{
"startTime": 1747343998068,
"executionIndex": 9,
"source": [
{
"previousNode": "AWS S2"
}
],
"hints": [],
"executionTime": 714,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"Key": "n8n-logo.png",
"LastModified": "2025-05-15T21:19:58.000Z",
"ETag": "\"174dbbfbcabb9dc0c2e82002e5ce289e\"",
"ChecksumAlgorithm": "CRC64NVME",
"ChecksumType": "FULL_OBJECT",
"Size": "2675",
"StorageClass": "STANDARD"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS S10": [
{
"startTime": 1747343998782,
"executionIndex": 10,
"source": [
{
"previousNode": "AWS S9"
}
],
"hints": [],
"executionTime": 1222,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"deleted": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS S5": [
{
"startTime": 1747344000004,
"executionIndex": 11,
"source": [
{
"previousNode": "AWS S4"
}
],
"hints": [],
"executionTime": 686,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"Key": "n8n-logo.png",
"LastModified": "2025-05-15T21:19:58.000Z",
"ETag": "\"174dbbfbcabb9dc0c2e82002e5ce289e\"",
"ChecksumAlgorithm": "CRC64NVME",
"ChecksumType": "FULL_OBJECT",
"Size": "2675",
"StorageClass": "STANDARD"
},
"binary": {
"data": {
"mimeType": "image/png",
"fileType": "image",
"fileExtension": "png",
"data": "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",
"fileName": "n8n-logo.png",
"fileSize": "2.67 kB"
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS S6": [
{
"startTime": 1747344000690,
"executionIndex": 12,
"source": [
{
"previousNode": "AWS S5"
}
],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"Key": "n8n-logo.png",
"LastModified": "2025-05-15T21:19:58.000Z",
"ETag": "\"174dbbfbcabb9dc0c2e82002e5ce289e\"",
"ChecksumAlgorithm": "CRC64NVME",
"ChecksumType": "FULL_OBJECT",
"Size": "2675",
"StorageClass": "STANDARD"
},
"binary": {
"data": {
"mimeType": "image/png",
"fileType": "image",
"fileExtension": "png",
"data": "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",
"fileName": "n8n-logo.png",
"fileSize": "2.67 kB"
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS S1": [
{
"startTime": 1747344000690,
"executionIndex": 13,
"source": [
{
"previousNode": "AWS S6"
}
],
"hints": [],
"executionTime": 756,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"Key": "n8n-logo.png",
"LastModified": "2025-05-15T21:19:58.000Z",
"ETag": "\"174dbbfbcabb9dc0c2e82002e5ce289e\"",
"ChecksumAlgorithm": "CRC64NVME",
"ChecksumType": "FULL_OBJECT",
"Size": "2675",
"StorageClass": "STANDARD"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS S7": [
{
"startTime": 1747344001446,
"executionIndex": 14,
"source": [
{
"previousNode": "AWS S1"
}
],
"hints": [],
"executionTime": 720,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS S31": [
{
"startTime": 1747344002166,
"executionIndex": 15,
"source": [
{
"previousNode": "AWS S7"
}
],
"hints": [],
"executionTime": 525,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "AWS S31"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.450Z",
"stoppedAt": "2025-05-15T21:20:02.691Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,72 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994614,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS SNS": [
{
"startTime": 1747343994614,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 524,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"MessageId": "b5fb53f6-51c2-58a7-94fd-33560d79f48c"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "AWS SNS"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.614Z",
"stoppedAt": "2025-05-15T21:19:55.138Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,132 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994612,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"OpenWeatherMap": [
{
"startTime": 1747343994612,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 145,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"coord": {
"object": true
},
"weather": [
"json array"
],
"base": "stations",
"main": {
"object": true
},
"visibility": 10000,
"wind": {
"object": true
},
"clouds": {
"object": true
},
"dt": 1747343894,
"sys": {
"object": true
},
"timezone": 7200,
"id": 2950159,
"name": "Berlin",
"cod": 200
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"OpenWeatherMap1": [
{
"startTime": 1747343994757,
"executionIndex": 2,
"source": [
{
"previousNode": "OpenWeatherMap"
}
],
"hints": [],
"executionTime": 143,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"cod": "200",
"message": 0,
"cnt": 40,
"list": [
"json array"
],
"city": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "OpenWeatherMap1"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.612Z",
"stoppedAt": "2025-05-15T21:19:54.900Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,75 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994612,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Vonage": [
{
"startTime": 1747343994612,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 101,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": "9",
"error-text": "Quota Exceeded - rejected",
"to": "010",
"messagePrice": "0.05000000"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Vonage"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.612Z",
"stoppedAt": "2025-05-15T21:19:54.713Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,105 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994616,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS SQS1": [
{
"startTime": 1747343994616,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 477,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"MessageId": "d7d01c99-6045-4687-aa22-3696b28a71dc",
"MD5OfMessageBody": "b5c549a1b61608ae9c9e5aa4ca926eaf",
"MD5OfMessageAttributes": "563c033205d4d7ddc71dceef55cae220",
"SequenceNumber": "184914760783929180160"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS SQS": [
{
"startTime": 1747343995093,
"executionIndex": 2,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 458,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"MessageId": "002ae7dd-846a-4ca2-a0d6-bd95aa9ca6b0",
"MD5OfMessageBody": "a6b50b8dda796ce940cd81ac4078f1e0",
"MD5OfMessageAttributes": "563c033205d4d7ddc71dceef55cae220"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "AWS SQS"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.616Z",
"stoppedAt": "2025-05-15T21:19:55.551Z",
"status": "running",
"finished": true
}

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,94 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1676891417098,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mocean": [
{
"startTime": 1676891417099,
"executionTime": 1042,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": 0,
"receiver": "21624827732",
"msgid": "Nodeqa0220191018996444.0004",
"type": "sms"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mocean1": [
{
"startTime": 1676891418141,
"executionTime": 0,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Mocean1"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-02-20T11:10:17.097Z",
"stoppedAt": "2023-02-20T11:10:18.141Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,120 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994645,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"OpenThesaurus": [
{
"startTime": 1747343994645,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 185,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 3913,
"categories": [
"json array"
],
"terms": [
"json array"
]
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": 11705,
"categories": [
"json array"
],
"terms": [
"json array"
]
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": 8559,
"categories": [
"json array"
],
"terms": [
"json array"
]
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"id": 15485,
"categories": [
"json array"
],
"terms": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "OpenThesaurus"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.645Z",
"stoppedAt": "2025-05-15T21:19:54.830Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,187 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994721,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PayPal": [
{
"startTime": 1747343994721,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 636,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"batch_header": {
"object": true
},
"links": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PayPal1": [
{
"startTime": 1747343995357,
"executionIndex": 2,
"source": [
{
"previousNode": "PayPal"
}
],
"hints": [],
"executionTime": 534,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"payout_item_id": "HHW94VDFSQWZQ",
"transaction_status": "PENDING",
"payout_batch_id": "WNCGA2S4EGV54",
"payout_item": {
"object": true
},
"links": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PayPal2": [
{
"startTime": 1747343995891,
"executionIndex": 3,
"source": [
{
"previousNode": "PayPal1"
}
],
"hints": [],
"executionTime": 1068,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"payout_item_id": "HHW94VDFSQWZQ",
"transaction_status": "PENDING",
"payout_batch_id": "WNCGA2S4EGV54",
"sender_batch_id": "1747343994721",
"payout_item": {
"object": true
},
"links": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"PayPal3": [
{
"startTime": 1747343996959,
"executionIndex": 4,
"source": [
{
"previousNode": "PayPal2"
}
],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"payout_item_id": "HHW94VDFSQWZQ",
"transaction_status": "PENDING",
"payout_batch_id": "WNCGA2S4EGV54",
"sender_batch_id": "1747343994721",
"payout_item": {
"object": true
},
"links": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "PayPal3"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.721Z",
"stoppedAt": "2025-05-15T21:19:56.959Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,305 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994838,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set id & email": [
{
"startTime": 1747343994838,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 6,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 989,
"email": "fake1747343994844@email.com"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Vero": [
{
"startTime": 1747343994844,
"executionIndex": 2,
"source": [
{
"previousNode": "Set id & email"
}
],
"hints": [],
"executionTime": 423,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": 200,
"message": "Success."
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Vero1": [
{
"startTime": 1747343995267,
"executionIndex": 3,
"source": [
{
"previousNode": "Vero"
}
],
"hints": [],
"executionTime": 506,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": 200,
"message": "Success."
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Vero2": [
{
"startTime": 1747343995773,
"executionIndex": 4,
"source": [
{
"previousNode": "Vero1"
}
],
"hints": [],
"executionTime": 462,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": 200,
"message": "Success."
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Vero3": [
{
"startTime": 1747343996235,
"executionIndex": 5,
"source": [
{
"previousNode": "Vero2"
}
],
"hints": [],
"executionTime": 696,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": 200,
"message": "Success."
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Vero4": [
{
"startTime": 1747343996931,
"executionIndex": 6,
"source": [
{
"previousNode": "Vero3"
}
],
"hints": [],
"executionTime": 531,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": 200,
"message": "Success."
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Vero5": [
{
"startTime": 1747343997462,
"executionIndex": 7,
"source": [
{
"previousNode": "Vero4"
}
],
"hints": [],
"executionTime": 379,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": 200,
"message": "Success."
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Vero7": [
{
"startTime": 1747343997841,
"executionIndex": 8,
"source": [
{
"previousNode": "Vero5"
}
],
"hints": [],
"executionTime": 419,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": 200,
"message": "Success."
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Vero6": [
{
"startTime": 1747343998260,
"executionIndex": 9,
"source": [
{
"previousNode": "Vero7"
}
],
"hints": [],
"executionTime": 439,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": 200,
"message": "Success."
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Vero6"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.838Z",
"stoppedAt": "2025-05-15T21:19:58.699Z",
"status": "running",
"finished": true
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,244 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343994910,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Webflow": [
{
"startTime": 1747343994910,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 1513,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_cid": "608289f18593d40792d70d54",
"_id": "68265a7bcf2b25604fb8766e",
"_draft": true,
"_archived": false,
"name": "Item1747343994912",
"slug": "ItemSlug1747343994913",
"updated-on": "2025-05-15T21:19:55.285Z",
"updated-by": "Person_60828826c12bb73d4752eedb",
"created-on": "2025-05-15T21:19:55.285Z",
"created-by": "Person_60828826c12bb73d4752eedb",
"published-on": {
"object": true
},
"published-by": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Webflow1": [
{
"startTime": 1747343996423,
"executionIndex": 2,
"source": [
{
"previousNode": "Webflow"
}
],
"hints": [],
"executionTime": 677,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_cid": "608289f18593d40792d70d54",
"_id": "68265a7bcf2b25604fb8766e",
"_draft": true,
"_archived": false,
"name": "Item1747343994912",
"slug": "ItemSlug1747343994913",
"updated-on": "2025-05-15T21:19:55.285Z",
"updated-by": "Person_60828826c12bb73d4752eedb",
"created-on": "2025-05-15T21:19:55.285Z",
"created-by": "Person_60828826c12bb73d4752eedb",
"published-on": {
"object": true
},
"published-by": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Webflow2": [
{
"startTime": 1747343997100,
"executionIndex": 3,
"source": [
{
"previousNode": "Webflow1"
}
],
"hints": [],
"executionTime": 473,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_cid": "608289f18593d40792d70d54",
"_id": "68265a7bcf2b25604fb8766e",
"_draft": false,
"_archived": false,
"name": "UpdatedItem1747343994912",
"slug": "UpdatedItemSlug1747343994913",
"updated-on": "2025-05-15T21:19:57.521Z",
"updated-by": "Person_60828826c12bb73d4752eedb",
"created-on": "2025-05-15T21:19:55.285Z",
"created-by": "Person_60828826c12bb73d4752eedb",
"published-on": {
"object": true
},
"published-by": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Webflow3": [
{
"startTime": 1747343997573,
"executionIndex": 4,
"source": [
{
"previousNode": "Webflow2"
}
],
"hints": [],
"executionTime": 658,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"deleted": 1
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Webflow4": [
{
"startTime": 1747343998231,
"executionIndex": 5,
"source": [
{
"previousNode": "Webflow3"
}
],
"hints": [],
"executionTime": 479,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_cid": "608289f18593d40792d70d54",
"_id": "6826407aa3de802cc025d6b8",
"_draft": true,
"_archived": false,
"name": "Item1747337338117",
"slug": "ItemSlug1747337338118",
"updated-on": "2025-05-15T19:28:58.462Z",
"updated-by": "Person_60828826c12bb73d4752eedb",
"created-on": "2025-05-15T19:28:58.462Z",
"created-by": "Person_60828826c12bb73d4752eedb",
"published-on": {
"object": true
},
"published-by": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Webflow4"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:54.910Z",
"stoppedAt": "2025-05-15T21:19:58.710Z",
"status": "running",
"finished": true
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,919 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1705409098613,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Salesforce": [
{
"startTime": 1705409098614,
"executionTime": 397,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "0060900000WRCqkAAH",
"success": true,
"errors": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Salesforce7": [
{
"startTime": 1705409099012,
"executionTime": 152,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"attributes": {
"object": true
},
"Id": "0010900002NKrwVAAT",
"Name": "Account1705408303842",
"BillingCity": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Sleep 0.5 second4": [
{
"startTime": 1705409099164,
"executionTime": 517,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Sleep 0.5 second": [
{
"startTime": 1705409099681,
"executionTime": 505,
"source": [
{
"previousNode": "Salesforce"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "0060900000WRCqkAAH",
"success": true,
"errors": [
"json array"
]
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Salesforce8": [
{
"startTime": 1705409100187,
"executionTime": 217,
"source": [
{
"previousNode": "Sleep 0.5 second4"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "00T0900001bX5nSEAS",
"success": true,
"errors": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Salesforce1": [
{
"startTime": 1705409100404,
"executionTime": 169,
"source": [
{
"previousNode": "Sleep 0.5 second"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"attributes": {
"object": true
},
"Id": "0060900000WRCqkAAH",
"IsDeleted": false,
"AccountId": {
"object": true
},
"IsPrivate": false,
"Name": "Opp1705409098616",
"Description": {
"object": true
},
"StageName": "Value Proposition",
"Amount": {
"object": true
},
"Probability": 50,
"ExpectedRevenue": {
"object": true
},
"TotalOpportunityQuantity": {
"object": true
},
"CloseDate": "2021-03-31",
"Type": {
"object": true
},
"NextStep": {
"object": true
},
"LeadSource": {
"object": true
},
"IsClosed": false,
"IsWon": false,
"ForecastCategory": "Pipeline",
"ForecastCategoryName": "Pipeline",
"CampaignId": {
"object": true
},
"HasOpportunityLineItem": false,
"Pricebook2Id": {
"object": true
},
"OwnerId": "00509000005ntkGAAQ",
"CreatedDate": "2024-01-16T12:44:58.000+0000",
"CreatedById": "00509000005ntkGAAQ",
"LastModifiedDate": "2024-01-16T12:44:58.000+0000",
"LastModifiedById": "00509000005ntkGAAQ",
"SystemModstamp": "2024-01-16T12:44:59.000+0000",
"LastActivityDate": {
"object": true
},
"PushCount": 0,
"LastStageChangeDate": {
"object": true
},
"FiscalQuarter": 1,
"FiscalYear": 2021,
"Fiscal": "2021 1",
"ContactId": {
"object": true
},
"LastViewedDate": "2024-01-16T12:44:59.000+0000",
"LastReferencedDate": "2024-01-16T12:44:59.000+0000",
"HasOpenActivity": false,
"HasOverdueTask": false,
"LastAmountChangedHistoryId": {
"object": true
},
"LastCloseDateChangedHistoryId": {
"object": true
},
"DeliveryInstallationStatus__c": {
"object": true
},
"TrackingNumber__c": {
"object": true
},
"OrderNumber__c": {
"object": true
},
"CurrentGenerators__c": {
"object": true
},
"MainCompetitors__c": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Salesforce9": [
{
"startTime": 1705409100574,
"executionTime": 166,
"source": [
{
"previousNode": "Salesforce8"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"attributes": {
"object": true
},
"Id": "00T0900001bX5nSEAS",
"WhoId": {
"object": true
},
"WhatId": {
"object": true
},
"Subject": {
"object": true
},
"ActivityDate": {
"object": true
},
"Status": "In Progress",
"Priority": "Normal",
"IsHighPriority": false,
"OwnerId": "00509000005ntkGAAQ",
"Description": {
"object": true
},
"IsDeleted": false,
"AccountId": {
"object": true
},
"IsClosed": false,
"CreatedDate": "2024-01-16T12:45:00.000+0000",
"CreatedById": "00509000005ntkGAAQ",
"LastModifiedDate": "2024-01-16T12:45:00.000+0000",
"LastModifiedById": "00509000005ntkGAAQ",
"SystemModstamp": "2024-01-16T12:45:00.000+0000",
"IsArchived": false,
"CallDurationInSeconds": {
"object": true
},
"CallType": {
"object": true
},
"CallDisposition": {
"object": true
},
"CallObject": {
"object": true
},
"ReminderDateTime": {
"object": true
},
"IsReminderSet": false,
"RecurrenceActivityId": {
"object": true
},
"IsRecurrence": false,
"RecurrenceStartDateOnly": {
"object": true
},
"RecurrenceEndDateOnly": {
"object": true
},
"RecurrenceTimeZoneSidKey": {
"object": true
},
"RecurrenceType": {
"object": true
},
"RecurrenceInterval": {
"object": true
},
"RecurrenceDayOfWeekMask": {
"object": true
},
"RecurrenceDayOfMonth": {
"object": true
},
"RecurrenceInstance": {
"object": true
},
"RecurrenceMonthOfYear": {
"object": true
},
"RecurrenceRegeneratedType": {
"object": true
},
"TaskSubtype": "Task",
"CompletedDateTime": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Salesforce2": [
{
"startTime": 1705409100741,
"executionTime": 1618,
"source": [
{
"previousNode": "Salesforce1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "002090000011nDqAAI",
"success": true,
"errors": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Sleep 0.5 second3": [
{
"startTime": 1705409102359,
"executionTime": 505,
"source": [
{
"previousNode": "Salesforce9"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"attributes": {
"object": true
},
"Id": "00T0900001bX5nSEAS",
"WhoId": {
"object": true
},
"WhatId": {
"object": true
},
"Subject": {
"object": true
},
"ActivityDate": {
"object": true
},
"Status": "In Progress",
"Priority": "Normal",
"IsHighPriority": false,
"OwnerId": "00509000005ntkGAAQ",
"Description": {
"object": true
},
"IsDeleted": false,
"AccountId": {
"object": true
},
"IsClosed": false,
"CreatedDate": "2024-01-16T12:45:00.000+0000",
"CreatedById": "00509000005ntkGAAQ",
"LastModifiedDate": "2024-01-16T12:45:00.000+0000",
"LastModifiedById": "00509000005ntkGAAQ",
"SystemModstamp": "2024-01-16T12:45:00.000+0000",
"IsArchived": false,
"CallDurationInSeconds": {
"object": true
},
"CallType": {
"object": true
},
"CallDisposition": {
"object": true
},
"CallObject": {
"object": true
},
"ReminderDateTime": {
"object": true
},
"IsReminderSet": false,
"RecurrenceActivityId": {
"object": true
},
"IsRecurrence": false,
"RecurrenceStartDateOnly": {
"object": true
},
"RecurrenceEndDateOnly": {
"object": true
},
"RecurrenceTimeZoneSidKey": {
"object": true
},
"RecurrenceType": {
"object": true
},
"RecurrenceInterval": {
"object": true
},
"RecurrenceDayOfWeekMask": {
"object": true
},
"RecurrenceDayOfMonth": {
"object": true
},
"RecurrenceInstance": {
"object": true
},
"RecurrenceMonthOfYear": {
"object": true
},
"RecurrenceRegeneratedType": {
"object": true
},
"TaskSubtype": "Task",
"CompletedDateTime": {
"object": true
}
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Sleep 0.5 second1": [
{
"startTime": 1705409102865,
"executionTime": 506,
"source": [
{
"previousNode": "Salesforce2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "002090000011nDqAAI",
"success": true,
"errors": [
"json array"
]
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Salesforce10": [
{
"startTime": 1705409103371,
"executionTime": 135,
"source": [
{
"previousNode": "Sleep 0.5 second3"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"objectDescribe": {
"object": true
},
"recentItems": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Salesforce3": [
{
"startTime": 1705409103506,
"executionTime": 142,
"source": [
{
"previousNode": "Sleep 0.5 second1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"objectDescribe": {
"object": true
},
"recentItems": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Salesforce11": [
{
"startTime": 1705409103648,
"executionTime": 164,
"source": [
{
"previousNode": "Salesforce10"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"attributes": {
"object": true
},
"Id": "00T0900000NzAPdEAN",
"Subject": {
"object": true
},
"Status": "In Progress",
"Priority": "Normal"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Salesforce4": [
{
"startTime": 1705409103813,
"executionTime": 153,
"source": [
{
"previousNode": "Salesforce3"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"attributes": {
"object": true
},
"Id": "00609000006wdbhAAA",
"AccountId": {
"object": true
},
"Amount": {
"object": true
},
"Probability": 50,
"Type": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Sleep 0.5 second5": [
{
"startTime": 1705409103966,
"executionTime": 507,
"source": [
{
"previousNode": "Salesforce11"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"attributes": {
"object": true
},
"Id": "00T0900000NzAPdEAN",
"Subject": {
"object": true
},
"Status": "In Progress",
"Priority": "Normal"
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Sleep 0.5 second2": [
{
"startTime": 1705409104474,
"executionTime": 506,
"source": [
{
"previousNode": "Salesforce4"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"attributes": {
"object": true
},
"Id": "00609000006wdbhAAA",
"AccountId": {
"object": true
},
"Amount": {
"object": true
},
"Probability": 50,
"Type": {
"object": true
}
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Salesforce12": [
{
"startTime": 1705409104981,
"executionTime": 193,
"source": [
{
"previousNode": "Sleep 0.5 second5"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"errors": [
"json array"
],
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Salesforce5": [
{
"startTime": 1705409105174,
"executionTime": 245,
"source": [
{
"previousNode": "Sleep 0.5 second2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"errors": [
"json array"
],
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Salesforce13": [
{
"startTime": 1705409105419,
"executionTime": 358,
"source": [
{
"previousNode": "Salesforce12"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"errors": [
"json array"
],
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Salesforce6": [
{
"startTime": 1705409105778,
"executionTime": 409,
"source": [
{
"previousNode": "Salesforce5"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"errors": [
"json array"
],
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Salesforce6"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-01-16T12:44:58.611Z",
"stoppedAt": "2024-01-16T12:45:06.187Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,253 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1710331893392,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set": [
{
"startTime": 1710331893392,
"executionTime": 2,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"random": 198,
"test": "Entry1710331893394"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Strapi": [
{
"startTime": 1710331893394,
"executionTime": 444,
"source": [
{
"previousNode": "Set"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 1285,
"test": "Entry1710331893394",
"random": 198,
"published_at": "2024-03-13T12:11:33.766Z",
"created_at": "2024-03-13T12:11:33.772Z",
"updated_at": "2024-03-13T12:11:33.772Z"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Strapi1": [
{
"startTime": 1710331893838,
"executionTime": 389,
"source": [
{
"previousNode": "Strapi"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 1285,
"test": "Entry1710331893394",
"random": 198,
"published_at": "2024-03-13T12:11:33.766Z",
"created_at": "2024-03-13T12:11:33.772Z",
"updated_at": "2024-03-13T12:11:33.772Z"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Strapi2": [
{
"startTime": 1710331894228,
"executionTime": 377,
"source": [
{
"previousNode": "Strapi1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 2,
"test": {
"object": true
},
"random": 563,
"published_at": "2021-04-29T07:56:29.555Z",
"created_at": "2021-04-29T07:56:29.563Z",
"updated_at": "2021-04-29T07:56:29.563Z"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set1": [
{
"startTime": 1710331894606,
"executionTime": 3,
"source": [
{
"previousNode": "Strapi2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 1285,
"test": "UpdatedEntry1710331893394"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Strapi3": [
{
"startTime": 1710331894610,
"executionTime": 379,
"source": [
{
"previousNode": "Set1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 1285,
"test": "UpdatedEntry1710331893394",
"random": 198,
"published_at": "2024-03-13T12:11:33.766Z",
"created_at": "2024-03-13T12:11:33.772Z",
"updated_at": "2024-03-13T12:11:34.964Z"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Strapi4": [
{
"startTime": 1710331894989,
"executionTime": 402,
"source": [
{
"previousNode": "Strapi3"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 1285,
"test": "UpdatedEntry1710331893394",
"random": 198,
"published_at": "2024-03-13T12:11:33.766Z",
"created_at": "2024-03-13T12:11:33.772Z",
"updated_at": "2024-03-13T12:11:34.964Z"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Strapi4"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-03-13T12:11:33.392Z",
"stoppedAt": "2024-03-13T12:11:35.392Z",
"status": "running",
"finished": true
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,283 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1676891419759,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"MailerLite": [
{
"startTime": 1676891419760,
"executionTime": 303,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 1493465993027103000,
"name": {
"object": true
},
"email": "fake1676891419779@test.com",
"sent": 0,
"opened": 0,
"opened_rate": 0,
"clicked": 0,
"clicked_rate": 0,
"type": "active",
"country_id": {
"object": true
},
"signup_ip": "",
"signup_timestamp": "",
"confirmation_ip": "",
"confirmation_timestamp": "",
"fields": [
"json array"
],
"webform_subscribe_date": {
"object": true
},
"date_subscribe": {
"object": true
},
"date_unsubscribe": {
"object": true
},
"date_created": "2023-02-20 11:10:19",
"date_updated": "2023-02-20 11:10:20",
"user_agent": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"MailerLite1": [
{
"startTime": 1676891420063,
"executionTime": 182,
"source": [
{
"previousNode": "MailerLite"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 1493465993027103000,
"name": "",
"email": "fake1676891419779@test.com",
"sent": 0,
"opened": 0,
"opened_rate": 0,
"clicked": 0,
"clicked_rate": 0,
"type": "active",
"country_id": {
"object": true
},
"signup_ip": "",
"signup_timestamp": "",
"confirmation_ip": "",
"confirmation_timestamp": "",
"fields": [
"json array"
],
"webform_subscribe_date": {
"object": true
},
"date_subscribe": {
"object": true
},
"date_unsubscribe": {
"object": true
},
"date_created": "2023-02-20 11:10:19",
"date_updated": "2023-02-20 11:10:20",
"user_agent": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"MailerLite2": [
{
"startTime": 1676891420246,
"executionTime": 219,
"source": [
{
"previousNode": "MailerLite1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 1493465993027103000,
"name": "UpdatedName1676891420247",
"email": "fake1676891419779@test.com",
"sent": 0,
"opened": 0,
"opened_rate": 0,
"clicked": 0,
"clicked_rate": 0,
"type": "active",
"country_id": {
"object": true
},
"signup_ip": "",
"signup_timestamp": "",
"confirmation_ip": "",
"confirmation_timestamp": "",
"fields": [
"json array"
],
"webform_subscribe_date": {
"object": true
},
"date_subscribe": {
"object": true
},
"date_unsubscribe": {
"object": true
},
"date_created": "2023-02-20 11:10:19",
"date_updated": "2023-02-20 11:10:20",
"user_agent": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"MailerLite3": [
{
"startTime": 1676891420466,
"executionTime": 160,
"source": [
{
"previousNode": "MailerLite2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 968892253701516000,
"name": "",
"email": "nodeqa@n8n.io",
"sent": 0,
"opened": 0,
"opened_rate": 0,
"clicked": 0,
"clicked_rate": 0,
"type": "active",
"country_id": {
"object": true
},
"signup_ip": {
"object": true
},
"signup_timestamp": {
"object": true
},
"confirmation_ip": {
"object": true
},
"confirmation_timestamp": {
"object": true
},
"fields": [
"json array"
],
"webform_subscribe_date": {
"object": true
},
"date_subscribe": {
"object": true
},
"date_unsubscribe": {
"object": true
},
"date_created": "2021-02-26 16:35:57",
"date_updated": "2021-02-26 16:35:57",
"user_agent": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "MailerLite3"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-02-20T11:10:19.756Z",
"stoppedAt": "2023-02-20T11:10:20.627Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,729 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1676891419969,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost": [
{
"startTime": 1676891419970,
"executionTime": 146,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "67chhkzc1f8s8fc598jdc6z6nr",
"create_at": 1676891420092,
"update_at": 1676891420092,
"delete_at": 0,
"team_id": "y1p853gfspdrxre5oextbii7wh",
"type": "O",
"display_name": "TestChannel1676891419984",
"name": "testchannel1676891419984",
"header": "",
"purpose": "",
"last_post_at": 0,
"total_msg_count": 0,
"extra_update_at": 0,
"creator_id": "fo4frgcntiy6jfc63wor76kxpy",
"scheme_id": {
"object": true
},
"props": {
"object": true
},
"group_constrained": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost13": [
{
"startTime": 1676891420116,
"executionTime": 208,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "o9f9bza4nj8hbp7xjy1ef9h1ny",
"create_at": 1676891420220,
"update_at": 1676891420220,
"delete_at": 0,
"username": "username1676891420116",
"auth_data": "",
"auth_service": "email",
"email": "fake1676891420117@test.com",
"nickname": "",
"first_name": "",
"last_name": "",
"position": "",
"roles": "system_user",
"notify_props": {
"object": true
},
"last_password_update": 1676891420220,
"locale": "en",
"timezone": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost1": [
{
"startTime": 1676891420324,
"executionTime": 102,
"source": [
{
"previousNode": "Mattermost"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"channel_id": "67chhkzc1f8s8fc598jdc6z6nr",
"user_id": "4yp7tpa3sbgk9qrf38egttbioo",
"roles": "channel_user",
"last_viewed_at": 0,
"msg_count": 0,
"mention_count": 0,
"notify_props": {
"object": true
},
"last_update_at": 1676891420440,
"scheme_guest": false,
"scheme_user": true,
"scheme_admin": false,
"explicit_roles": ""
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost14": [
{
"startTime": 1676891420426,
"executionTime": 72,
"source": [
{
"previousNode": "Mattermost13"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "o9f9bza4nj8hbp7xjy1ef9h1ny",
"create_at": 1676891420220,
"update_at": 1676891420220,
"delete_at": 0,
"username": "username1676891420116",
"auth_data": "",
"auth_service": "email",
"email": "fake1676891420117@test.com",
"nickname": "",
"first_name": "",
"last_name": "",
"position": "",
"roles": "system_user",
"locale": "en",
"timezone": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost7": [
{
"startTime": 1676891420499,
"executionTime": 110,
"source": [
{
"previousNode": "Mattermost1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "fjpkzppmfjysmpnps1shmzxoxy",
"create_at": 1676891420598,
"update_at": 1676891420598,
"edit_at": 0,
"delete_at": 0,
"is_pinned": false,
"user_id": "fo4frgcntiy6jfc63wor76kxpy",
"channel_id": "67chhkzc1f8s8fc598jdc6z6nr",
"root_id": "",
"parent_id": "",
"original_id": "",
"message": "Message1676891420501",
"type": "",
"props": {
"object": true
},
"hashtags": "",
"pending_post_id": "",
"reply_count": 0,
"metadata": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost15": [
{
"startTime": 1676891420610,
"executionTime": 71,
"source": [
{
"previousNode": "Mattermost14"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "o9f9bza4nj8hbp7xjy1ef9h1ny",
"create_at": 1676891420220,
"update_at": 1676891420220,
"delete_at": 0,
"username": "username1676891420116",
"auth_data": "",
"auth_service": "email",
"email": "fake1676891420117@test.com",
"nickname": "",
"first_name": "",
"last_name": "",
"position": "",
"roles": "system_user",
"locale": "en",
"timezone": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost8": [
{
"startTime": 1676891420682,
"executionTime": 67,
"source": [
{
"previousNode": "Mattermost7"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "q1oq5ibknjnx5j53ig9dppo88c",
"create_at": 1676891420775,
"update_at": 0,
"edit_at": 0,
"delete_at": 0,
"is_pinned": false,
"user_id": "fo4frgcntiy6jfc63wor76kxpy",
"channel_id": "67chhkzc1f8s8fc598jdc6z6nr",
"root_id": "",
"parent_id": "",
"original_id": "",
"message": "EpheMessage1676891420683",
"type": "system_ephemeral",
"props": {
"object": true
},
"hashtags": "",
"pending_post_id": "",
"reply_count": 0,
"metadata": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost16": [
{
"startTime": 1676891420750,
"executionTime": 132,
"source": [
{
"previousNode": "Mattermost15"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "hp6pnfry6tfr8nsjbsowcpunah",
"create_at": 1619769670089,
"update_at": 1619769670089,
"delete_at": 0,
"username": "channelexport",
"auth_data": "",
"auth_service": "",
"email": "channelexport@localhost",
"nickname": "",
"first_name": "Channel Export Bot",
"last_name": "",
"position": "",
"roles": "system_user",
"locale": "en",
"timezone": {
"object": true
},
"is_bot": true,
"bot_description": "A bot account created by the channel export plugin."
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost10": [
{
"startTime": 1676891420883,
"executionTime": 82,
"source": [
{
"previousNode": "Mattermost8"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"user_id": "fo4frgcntiy6jfc63wor76kxpy",
"post_id": "fjpkzppmfjysmpnps1shmzxoxy",
"emoji_name": "rocket",
"create_at": 1676891420884
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost17": [
{
"startTime": 1676891420966,
"executionTime": 87,
"source": [
{
"previousNode": "Mattermost16"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": "OK"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost11": [
{
"startTime": 1676891421054,
"executionTime": 73,
"source": [
{
"previousNode": "Mattermost10"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"user_id": "fo4frgcntiy6jfc63wor76kxpy",
"post_id": "fjpkzppmfjysmpnps1shmzxoxy",
"emoji_name": "rocket",
"create_at": 1676891420884
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost18": [
{
"startTime": 1676891421127,
"executionTime": 91,
"source": [
{
"previousNode": "Mattermost17"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": "OK"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost12": [
{
"startTime": 1676891421219,
"executionTime": 81,
"source": [
{
"previousNode": "Mattermost11"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": "OK"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost9": [
{
"startTime": 1676891421300,
"executionTime": 85,
"source": [
{
"previousNode": "Mattermost12"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": "OK"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost2": [
{
"startTime": 1676891421385,
"executionTime": 154,
"source": [
{
"previousNode": "Mattermost9"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "fo4frgcntiy6jfc63wor76kxpy",
"create_at": 1619770719466,
"update_at": 1624374690399,
"delete_at": 0,
"username": "nodeqa",
"auth_data": "",
"auth_service": "",
"email": "nodeqa@test.com",
"nickname": "",
"first_name": "",
"last_name": "",
"position": "",
"roles": "system_admin system_user",
"locale": "en",
"timezone": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost3": [
{
"startTime": 1676891421540,
"executionTime": 76,
"source": [
{
"previousNode": "Mattermost2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"channel_id": "67chhkzc1f8s8fc598jdc6z6nr",
"member_count": 2,
"guest_count": 0,
"pinnedpost_count": 0
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost4": [
{
"startTime": 1676891421616,
"executionTime": 92,
"source": [
{
"previousNode": "Mattermost3"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": "OK"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost5": [
{
"startTime": 1676891421708,
"executionTime": 90,
"source": [
{
"previousNode": "Mattermost4"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "67chhkzc1f8s8fc598jdc6z6nr",
"create_at": 1676891420092,
"update_at": 1676891421730,
"delete_at": 0,
"team_id": "y1p853gfspdrxre5oextbii7wh",
"type": "O",
"display_name": "TestChannel1676891419984",
"name": "testchannel1676891419984",
"header": "",
"purpose": "",
"last_post_at": 1676891421719,
"total_msg_count": 2,
"extra_update_at": 0,
"creator_id": "fo4frgcntiy6jfc63wor76kxpy",
"scheme_id": {
"object": true
},
"props": {
"object": true
},
"group_constrained": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mattermost6": [
{
"startTime": 1676891421799,
"executionTime": 103,
"source": [
{
"previousNode": "Mattermost5"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"status": "OK"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Mattermost6"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-02-20T11:10:19.966Z",
"stoppedAt": "2023-02-20T11:10:21.902Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,142 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"hints": [],
"startTime": 1726655395077,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailjet": [
{
"hints": [],
"startTime": 1726655395077,
"executionTime": 146,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"Status": "success",
"CustomID": "",
"To": [
"json array"
],
"Cc": [
"json array"
],
"Bcc": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailjet2": [
{
"hints": [],
"startTime": 1726655395223,
"executionTime": 0,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailjet1": [
{
"hints": [],
"startTime": 1726655395223,
"executionTime": 275,
"source": [
{
"previousNode": "Mailjet"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"Status": "success",
"CustomID": "",
"To": [
"json array"
],
"Cc": [
"json array"
],
"Bcc": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Mailjet1"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-09-18T10:29:55.077Z",
"stoppedAt": "2024-09-18T10:29:55.498Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,330 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343995018,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Kitemaker1": [
{
"startTime": 1747343995018,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 262,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "0f42cd20b0617400",
"name": "n8n-qa",
"labels": [
"json array"
],
"statuses": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Kitemaker": [
{
"startTime": 1747343995280,
"executionIndex": 2,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 255,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "0f42cd2088617400",
"name": "n8n-qa"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Kitemaker2": [
{
"startTime": 1747343995535,
"executionIndex": 3,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 392,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "0f42ccbcb93d4000",
"username": "node8qa"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Kitemaker3": [
{
"startTime": 1747343995927,
"executionIndex": 4,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 760,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "2ce7808ff95c8800",
"number": "2218",
"title": "WorkItem1747343995928",
"description": "",
"status": {
"object": true
},
"members": [
"json array"
],
"watchers": [
"json array"
],
"labels": [
"json array"
],
"effort": {
"object": true
},
"impact": {
"object": true
},
"updatedAt": 1747343996386,
"createdAt": 1747343996386
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Kitemaker4": [
{
"startTime": 1747343996687,
"executionIndex": 5,
"source": [
{
"previousNode": "Kitemaker3"
}
],
"hints": [],
"executionTime": 270,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "2ce7808ff95c8800",
"number": "2218",
"title": "WorkItem1747343995928",
"description": "",
"status": {
"object": true
},
"sort": "s",
"members": [
"json array"
],
"watchers": [
"json array"
],
"labels": [
"json array"
],
"comments": [
"json array"
],
"effort": {
"object": true
},
"impact": {
"object": true
},
"updatedAt": 1747343996386,
"createdAt": 1747343996386
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Kitemaker5": [
{
"startTime": 1747343996957,
"executionIndex": 6,
"source": [
{
"previousNode": "Kitemaker4"
}
],
"hints": [],
"executionTime": 306,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "0f42cd2103617400",
"title": "Use arrow keys to navigate work items",
"description": "# Things to explore\n\n- [ ] Press the little + sign to the top right to see different types of meta data you can add to work items\n- [ ] Learn some markdown\n - [ ] `#` On an empty line creates a headline (type ## and ### for sub headlines)\n - [ ] Type `**` or `__` before and after a section of text to make it **bold**\n - [ ] Type `*` or `_` before and after a section of text to make it _italic_\n - [ ] Type `´` before and after a section of text to make it `a code block`\n - [ ] Type `*` followed by space on an empty line to make bullet points\n - [ ] Type `[]` followed by space on an empty line to make todo-lists\n - [ ] Type `1.` followed by space on an empty line to make numbered lists\n - [ ] Type `$$` before and after Tex expression $$\\frac{1}{100}$$\n- [ ] Check out our integrations\n- [ ] Make comments (they support everything the description field supports)\n- [ ] Invite your team\n- [ ] Learn hotkeys:\n - [ ] Hovering elements gives you hotkey tips. Hover this sections to see that `D` lets you edit the description\n - [ ] Other times the hotkey hints are in the UI. If you look at the right section of this screen, `R` adds a new comment\n - [ ] Pressing `?` gives you a searchable list of all hotkeys\n - [ ] In the Kitemaker command (open it by pressing `CTRL/CMD+k`) you will also be able to see the hotkeys for the commands\n - [ ] When you have long descriptions use `SPACE` and `SHIFT+SPACE` to scroll up and down\n\n",
"labels": [
"json array"
],
"comments": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Kitemaker6": [
{
"startTime": 1747343997263,
"executionIndex": 7,
"source": [
{
"previousNode": "Kitemaker5"
}
],
"hints": [],
"executionTime": 482,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "2ce7808ff95c8800",
"number": "2218",
"title": "UpdatedWorkItem1747343995928",
"description": "",
"status": {
"object": true
},
"members": [
"json array"
],
"watchers": [
"json array"
],
"labels": [
"json array"
],
"effort": {
"object": true
},
"impact": {
"object": true
},
"updatedAt": 1747343997664,
"createdAt": 1747343996386
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Kitemaker6"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:55.018Z",
"stoppedAt": "2025-05-15T21:19:57.745Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,142 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1710331895822,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"MQTT qos:1": [
{
"startTime": 1710331895822,
"executionTime": 99,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"MQTT1 qos:0": [
{
"startTime": 1710331895921,
"executionTime": 113,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Function": [
{
"startTime": 1710331896034,
"executionTime": 3,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"message": "MQTT-item-message1710331896036"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"MQTT2 qos:2": [
{
"startTime": 1710331896037,
"executionTime": 128,
"source": [
{
"previousNode": "Function"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"message": "MQTT-item-message1710331896036"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "MQTT2 qos:2"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-03-13T12:11:35.822Z",
"stoppedAt": "2024-03-13T12:11:36.165Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,301 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1678116858549,
"executionTime": 1,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set": [
{
"startTime": 1678116858551,
"executionTime": 0,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"boolean": true,
"number": 3
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Cloud Firestore5": [
{
"startTime": 1678116858552,
"executionTime": 728,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"name": "FixedCollection"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Cloud Firestore": [
{
"startTime": 1678116859281,
"executionTime": 207,
"source": [
{
"previousNode": "Set"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_name": "projects/fixedtestproject/databases/(default)/documents/FixedCollection/YNjhZsY4raBDR2lfdZZ0",
"_id": "YNjhZsY4raBDR2lfdZZ0",
"_createTime": "2023-03-06T15:34:19.490782Z",
"_updateTime": "2023-03-06T15:34:19.490782Z",
"number": "3",
"boolean": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Cloud Firestore1": [
{
"startTime": 1678116859488,
"executionTime": 190,
"source": [
{
"previousNode": "Google Cloud Firestore"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_name": "projects/fixedtestproject/databases/(default)/documents/FixedCollection/YNjhZsY4raBDR2lfdZZ0",
"_id": "YNjhZsY4raBDR2lfdZZ0",
"_createTime": "2023-03-06T15:34:19.490782Z",
"_updateTime": "2023-03-06T15:34:19.490782Z",
"boolean": true,
"number": "3"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set1": [
{
"startTime": 1678116859678,
"executionTime": 1,
"source": [
{
"previousNode": "Google Cloud Firestore1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"boolean": true,
"number": 100
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Cloud Firestore2": [
{
"startTime": 1678116859679,
"executionTime": 205,
"source": [
{
"previousNode": "Set1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"updateTime": "2021-05-10T08:20:43.439586Z",
"status": {
"object": true
},
"boolean": true,
"number": 100
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Cloud Firestore3": [
{
"startTime": 1678116859884,
"executionTime": 216,
"source": [
{
"previousNode": "Google Cloud Firestore2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_name": "projects/fixedtestproject/databases/(default)/documents/FixedCollection/5xovkMwha8R2fHwT9HiW",
"_id": "5xovkMwha8R2fHwT9HiW",
"_createTime": "2021-05-12T15:31:35.922541Z",
"_updateTime": "2021-05-12T15:31:35.922541Z",
"number": "3",
"boolean": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Cloud Firestore4": [
{
"startTime": 1678116860100,
"executionTime": 258,
"source": [
{
"previousNode": "Google Cloud Firestore3"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_name": "projects/fixedtestproject/databases/(default)/documents/FixedCollection/undefined",
"_id": "undefined",
"_createTime": "2021-05-10T08:20:43.439586Z",
"_updateTime": "2021-05-10T08:20:43.439586Z",
"number": "100"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Cloud Firestore6": [
{
"startTime": 1678116860359,
"executionTime": 246,
"source": [
{
"previousNode": "Google Cloud Firestore4"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Google Cloud Firestore6"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-03-06T15:34:18.548Z",
"stoppedAt": "2023-03-06T15:34:20.605Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,77 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1710331896175,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mailcheck": [
{
"startTime": 1710331896175,
"executionTime": 15896,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"email": "jan@n8n.io",
"trustRate": 100,
"mxExists": true,
"smtpExists": true,
"isNotSmtpCatchAll": true,
"isNotDisposable": true,
"gravatar": {
"object": true
},
"githubUsername": ""
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Mailcheck"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-03-13T12:11:36.175Z",
"stoppedAt": "2024-03-13T12:11:52.071Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,578 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1676891385658,
"executionTime": 1,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot6": [
{
"startTime": 1676891385659,
"executionTime": 463,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"companyId": 14728009312,
"isDeleted": false,
"properties": {
"object": true
},
"additionalDomains": [
"json array"
],
"stateChanges": [
"json array"
],
"mergeAudits": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot": [
{
"startTime": 1676891386122,
"executionTime": 539,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"vid": 19501,
"canonical-vid": 19501,
"merged-vids": [
"json array"
],
"portal-id": 9435114,
"is-contact": true,
"properties": {
"object": true
},
"form-submissions": [
"json array"
],
"list-memberships": [
"json array"
],
"identity-profiles": [
"json array"
],
"merge-audits": [
"json array"
],
"isNew": false
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot7": [
{
"startTime": 1676891386661,
"executionTime": 483,
"source": [
{
"previousNode": "Hubspot6"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"companyId": 5386687576,
"isDeleted": false,
"properties": {
"object": true
},
"additionalDomains": [
"json array"
],
"stateChanges": [
"json array"
],
"mergeAudits": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Sleep 0.5 second": [
{
"startTime": 1676891387144,
"executionTime": 515,
"source": [
{
"previousNode": "Hubspot"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"vid": 19501,
"canonical-vid": 19501,
"merged-vids": [
"json array"
],
"portal-id": 9435114,
"is-contact": true,
"properties": {
"object": true
},
"form-submissions": [
"json array"
],
"list-memberships": [
"json array"
],
"identity-profiles": [
"json array"
],
"merge-audits": [
"json array"
],
"isNew": false
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Hubspot9": [
{
"startTime": 1676891387659,
"executionTime": 200,
"source": [
{
"previousNode": "Hubspot7"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"companyId": 5441478717,
"isDeleted": false,
"properties": {
"object": true
},
"additionalDomains": [
"json array"
],
"stateChanges": [
"json array"
],
"mergeAudits": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot2": [
{
"startTime": 1676891387860,
"executionTime": 274,
"source": [
{
"previousNode": "Sleep 0.5 second"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"vid": 19501,
"canonical-vid": 19501,
"merged-vids": [
"json array"
],
"portal-id": 9435114,
"is-contact": true,
"properties": {
"object": true
},
"form-submissions": [
"json array"
],
"identity-profiles": [
"json array"
],
"merge-audits": [
"json array"
],
"addedAt": 1641349488565
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot8": [
{
"startTime": 1676891388134,
"executionTime": 255,
"source": [
{
"previousNode": "Hubspot9"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"companyId": 12067739738,
"isDeleted": false,
"properties": {
"object": true
},
"additionalDomains": [
"json array"
],
"stateChanges": [
"json array"
],
"mergeAudits": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Sleep 0.5 second1": [
{
"startTime": 1676891388393,
"executionTime": 517,
"source": [
{
"previousNode": "Hubspot2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"vid": 19501,
"canonical-vid": 19501,
"merged-vids": [
"json array"
],
"portal-id": 9435114,
"is-contact": true,
"properties": {
"object": true
},
"form-submissions": [
"json array"
],
"identity-profiles": [
"json array"
],
"merge-audits": [
"json array"
],
"addedAt": 1641349488565
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Hubspot10": [
{
"startTime": 1676891388911,
"executionTime": 561,
"source": [
{
"previousNode": "Hubspot8"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"companyId": 14728009312,
"isDeleted": false,
"properties": {
"object": true
},
"additionalDomains": [
"json array"
],
"stateChanges": [
"json array"
],
"mergeAudits": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot3": [
{
"startTime": 1676891389472,
"executionTime": 263,
"source": [
{
"previousNode": "Sleep 0.5 second1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "19901",
"properties": {
"object": true
},
"createdAt": "2022-12-13T09:38:40.693Z",
"updatedAt": "2022-12-13T09:38:55.035Z",
"archived": false
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot11": [
{
"startTime": 1676891389735,
"executionTime": 268,
"source": [
{
"previousNode": "Hubspot10"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"companyId": 14728009312,
"isDeleted": false,
"properties": {
"object": true
},
"additionalDomains": [
"json array"
],
"stateChanges": [
"json array"
],
"mergeAudits": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Function": [
{
"startTime": 1676891390006,
"executionTime": 1510,
"source": [
{
"previousNode": "Hubspot3"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "19901",
"properties": {
"object": true
},
"createdAt": "2022-12-13T09:38:40.693Z",
"updatedAt": "2022-12-13T09:38:55.035Z",
"archived": false
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"Hubspot12": [
{
"startTime": 1676891391516,
"executionTime": 303,
"source": [
{
"previousNode": "Hubspot11"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"companyId": 14728009312,
"deleted": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot1": [
{
"startTime": 1676891391821,
"executionTime": 288,
"source": [
{
"previousNode": "Function"
}
],
"executionStatus": "success",
"data": {
"main": [
[]
]
}
}
]
},
"lastNodeExecuted": "Hubspot1"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-02-20T11:09:45.654Z",
"stoppedAt": "2023-02-20T11:09:52.112Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,260 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"hints": [],
"startTime": 1726655396881,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Beeminder": [
{
"hints": [],
"startTime": 1726655396881,
"executionTime": 2507,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"timestamp": 1726655397,
"value": 1,
"comment": "",
"id": "66eaaba5f0168a005520990a",
"updated_at": 1726655397,
"requestid": {
"object": true
},
"canonical": "18 1",
"fulltext": "2024-Sep-18 entered at 12:29 by n8nsandbox via api",
"urtext": {
"object": true
},
"origin": "api",
"creator": "n8nsandbox",
"created_at": "2024-09-18T10:29:57.000Z",
"daystamp": "20240918",
"status": "created"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Beeminder1": [
{
"hints": [],
"startTime": 1726655399388,
"executionTime": 652,
"source": [
{
"previousNode": "Beeminder"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"timestamp": 1726655397,
"value": 1,
"comment": "",
"id": "66eaaba5f0168a005520990a",
"updated_at": 1726655397,
"requestid": {
"object": true
},
"canonical": "18 1",
"fulltext": "2024-Sep-18 entered at 12:29 by n8nsandbox via api",
"urtext": {
"object": true
},
"origin": "api",
"creator": "n8nsandbox",
"created_at": "2024-09-18T10:29:57.000Z",
"daystamp": "20240918"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Beeminder2": [
{
"hints": [],
"startTime": 1726655400040,
"executionTime": 5736,
"source": [
{
"previousNode": "Beeminder1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"timestamp": 1726655397,
"value": 10,
"comment": "",
"id": "66eaaba5f0168a005520990a",
"updated_at": 1726655405,
"requestid": {
"object": true
},
"canonical": "18 10",
"fulltext": "2024-Sep-18 entered at 12:29 by n8nsandbox via api",
"urtext": {
"object": true
},
"origin": "api",
"creator": "n8nsandbox",
"created_at": "2024-09-18T10:29:57.000Z",
"daystamp": "20240918"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Beeminder4": [
{
"hints": [],
"startTime": 1726655405776,
"executionTime": 5760,
"source": [
{
"previousNode": "Beeminder2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"timestamp": 1726655411,
"value": 3,
"comment": "",
"id": "66eaabb3f0168a0069209095",
"updated_at": 1726655411,
"requestid": {
"object": true
},
"canonical": "18 3",
"fulltext": "2024-Sep-18 entered at 12:30 by n8nsandbox via api",
"urtext": {
"object": true
},
"origin": "api",
"creator": "n8nsandbox",
"created_at": "2024-09-18T10:30:11.000Z",
"daystamp": "20240918",
"status": "created"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Beeminder3": [
{
"hints": [],
"startTime": 1726655411536,
"executionTime": 5731,
"source": [
{
"previousNode": "Beeminder4"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"timestamp": 1726655411,
"value": 3,
"comment": "",
"id": "66eaabb3f0168a0069209095",
"updated_at": 1726655411,
"requestid": {
"object": true
},
"canonical": "18 3",
"fulltext": "2024-Sep-18 entered at 12:30 by n8nsandbox via api",
"urtext": {
"object": true
},
"origin": "api",
"creator": "n8nsandbox",
"created_at": "2024-09-18T10:30:11.000Z",
"daystamp": "20240918"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Beeminder3"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-09-18T10:29:56.881Z",
"stoppedAt": "2024-09-18T10:30:17.267Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,327 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343995157,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Paddle": [
{
"startTime": 1747343995157,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 318,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 11452,
"name": "n8n test subscription",
"billing_type": "month",
"billing_period": 3,
"initial_price": {
"object": true
},
"recurring_price": {
"object": true
},
"trial_days": 14
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Paddle2": [
{
"startTime": 1747343995475,
"executionIndex": 2,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 304,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 11451,
"name": "n8n test for Omar",
"description": "a great n8n test product",
"base_price": {
"object": true
},
"sale_price": {
"object": true
},
"currency": "USD",
"screenshots": [
"json array"
],
"icon": "https://sandbox-static.paddle.com/assets/images/checkout/default_product_icon.png"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Paddle3": [
{
"startTime": 1747343995779,
"executionIndex": 3,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 227,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"subscription_id": 101066,
"plan_id": 11452,
"user_id": 3076,
"user_email": "name@example.com",
"marketing_consent": false,
"update_url": "https://sandbox-subscription-management.paddle.com/subscription/101066/hash/250b0346bbd6fb46bebbd6f9c989ffb7333d628b082fe54658658bacf5311bf3/update",
"cancel_url": "https://sandbox-subscription-management.paddle.com/subscription/101066/hash/250b0346bbd6fb46bebbd6f9c989ffb7333d628b082fe54658658bacf5311bf3/cancel",
"state": "paused",
"signup_date": "2021-05-14 08:52:59",
"last_payment": {
"object": true
},
"linked_subscriptions": [
"json array"
],
"custom_data": {
"object": true
},
"payment_information": {
"object": true
},
"paused_at": "2022-04-08 00:02:35",
"paused_from": "2022-03-24 00:00:00",
"paused_reason": "delinquent"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Paddle4": [
{
"startTime": 1747343996006,
"executionIndex": 4,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 212,
"executionStatus": "success",
"data": {
"main": [
[]
]
}
}
],
"Paddle1": [
{
"startTime": 1747343996218,
"executionIndex": 5,
"source": [
{
"previousNode": "Paddle"
}
],
"hints": [],
"executionTime": 480,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": 11452,
"name": "n8n test subscription",
"billing_type": "month",
"billing_period": 3,
"initial_price": {
"object": true
},
"recurring_price": {
"object": true
},
"trial_days": 14
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Paddle5": [
{
"startTime": 1747343996698,
"executionIndex": 6,
"source": [
{
"previousNode": "Paddle2"
}
],
"hints": [],
"executionTime": 226,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"coupon": "76879241"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Paddle6": [
{
"startTime": 1747343996924,
"executionIndex": 7,
"source": [
{
"previousNode": "Paddle5"
}
],
"hints": [],
"executionTime": 216,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"updated": 1
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Paddle7": [
{
"startTime": 1747343997140,
"executionIndex": 8,
"source": [
{
"previousNode": "Paddle6"
}
],
"hints": [],
"executionTime": 338,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"coupon": "722F58E2",
"description": {
"object": true
},
"discount_type": "flat",
"discount_amount": "5.000000000",
"discount_currency": "USD",
"allowed_uses": 999999,
"times_used": 0,
"is_recurring": false,
"expires": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Paddle7"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:55.156Z",
"stoppedAt": "2025-05-15T21:19:57.478Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,74 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343995217,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Pushover": [
{
"startTime": 1747343995217,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 558,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"info": "no active devices to send to",
"status": 1,
"request": "913c6bfe-1c3d-46c6-9d04-cabd7545d426"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Pushover"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:55.217Z",
"stoppedAt": "2025-05-15T21:19:55.775Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,72 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1676891424945,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"RocketChat": [
{
"startTime": 1676891424946,
"executionTime": 155,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"ts": 1676891425122,
"channel": "general",
"message": {
"object": true
},
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "RocketChat"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-02-20T11:10:24.943Z",
"stoppedAt": "2023-02-20T11:10:25.101Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,246 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343995231,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Set job name": [
{
"startTime": 1747343995231,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 1,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"job_name": "nodemation_job_1747343995232"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS Transcribe": [
{
"startTime": 1747343995232,
"executionIndex": 2,
"source": [
{
"previousNode": "Set job name"
}
],
"hints": [],
"executionTime": 539,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"CreationTime": 1747343995.631,
"LanguageCode": "en-US",
"Media": {
"object": true
},
"Settings": {
"object": true
},
"StartTime": 1747343995.653,
"TranscriptionJobName": "nodemation_job_1747343995232",
"TranscriptionJobStatus": "IN_PROGRESS"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS Transcribe1": [
{
"startTime": 1747343995771,
"executionIndex": 3,
"source": [
{
"previousNode": "AWS Transcribe"
}
],
"hints": [],
"executionTime": 368,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"CreationTime": 1747343995.631,
"LanguageCode": "en-US",
"Media": {
"object": true
},
"Settings": {
"object": true
},
"StartTime": 1747343995.653,
"Transcript": {
"object": true
},
"TranscriptionJobName": "nodemation_job_1747343995232",
"TranscriptionJobStatus": "IN_PROGRESS"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"AWS Transcribe2": [
{
"startTime": 1747343996139,
"executionIndex": 4,
"source": [
{
"previousNode": "AWS Transcribe1"
}
],
"hints": [],
"executionTime": 551,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"CreationTime": 1747343995.631,
"LanguageCode": "en-US",
"OutputLocationType": "SERVICE_BUCKET",
"StartTime": 1747343995.653,
"TranscriptionJobName": "nodemation_job_1747343995232",
"TranscriptionJobStatus": "IN_PROGRESS"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Sleep 30 seconds": [
{
"startTime": 1747343996690,
"executionIndex": 5,
"source": [
{
"previousNode": "AWS Transcribe2"
}
],
"hints": [],
"executionTime": 30001,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"CreationTime": 1747343995.631,
"LanguageCode": "en-US",
"OutputLocationType": "SERVICE_BUCKET",
"StartTime": 1747343995.653,
"TranscriptionJobName": "nodemation_job_1747343995232",
"TranscriptionJobStatus": "IN_PROGRESS"
},
"pairedItem": {
"item": 0
},
"index": 0
}
]
]
}
}
],
"AWS Transcribe3": [
{
"startTime": 1747344026691,
"executionIndex": 6,
"source": [
{
"previousNode": "Sleep 30 seconds"
}
],
"hints": [],
"executionTime": 440,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "AWS Transcribe3"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:55.231Z",
"stoppedAt": "2025-05-15T21:20:27.131Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,473 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1676891385716,
"executionTime": 1,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot8": [
{
"startTime": 1676891385718,
"executionTime": 397,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"objectType": "TICKET",
"objectId": 1446939454,
"properties": {
"object": true
},
"isDeleted": false
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot": [
{
"startTime": 1676891386116,
"executionTime": 307,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"dealId": 12238637873,
"isDeleted": false,
"associations": {
"object": true
},
"properties": {
"object": true
},
"stateChanges": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot9": [
{
"startTime": 1676891386423,
"executionTime": 363,
"source": [
{
"previousNode": "Hubspot8"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"objectType": "TICKET",
"objectId": 1446939454,
"properties": {
"object": true
},
"version": 1,
"isDeleted": false
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot4": [
{
"startTime": 1676891386786,
"executionTime": 233,
"source": [
{
"previousNode": "Hubspot"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"dealId": 12238637873,
"isDeleted": false,
"associations": {
"object": true
},
"properties": {
"object": true
},
"stateChanges": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot10": [
{
"startTime": 1676891387019,
"executionTime": 250,
"source": [
{
"previousNode": "Hubspot9"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"objectType": "TICKET",
"objectId": 1428212240,
"properties": {
"object": true
},
"isDeleted": false
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot1": [
{
"startTime": 1676891387269,
"executionTime": 233,
"source": [
{
"previousNode": "Hubspot4"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"dealId": 4167790328,
"isDeleted": false,
"associations": {
"object": true
},
"properties": {
"object": true
},
"stateChanges": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot11": [
{
"startTime": 1676891387502,
"executionTime": 220,
"source": [
{
"previousNode": "Hubspot10"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"objectType": "TICKET",
"objectId": 1428212240,
"properties": {
"object": true
},
"isDeleted": false
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot3": [
{
"startTime": 1676891387722,
"executionTime": 243,
"source": [
{
"previousNode": "Hubspot1"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "12238377353",
"properties": {
"object": true
},
"createdAt": "2023-02-20T10:54:32.477Z",
"updatedAt": "2023-02-20T10:54:33.440Z",
"archived": false
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot12": [
{
"startTime": 1676891387965,
"executionTime": 373,
"source": [
{
"previousNode": "Hubspot11"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot5": [
{
"startTime": 1676891388338,
"executionTime": 271,
"source": [
{
"previousNode": "Hubspot3"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"dealId": 12238377353,
"isDeleted": false,
"associations": {
"object": true
},
"properties": {
"object": true
},
"stateChanges": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot7": [
{
"startTime": 1676891388623,
"executionTime": 263,
"source": [
{
"previousNode": "Hubspot5"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"dealId": 12238377353,
"isDeleted": false,
"associations": {
"object": true
},
"properties": {
"object": true
},
"stateChanges": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot2": [
{
"startTime": 1676891388895,
"executionTime": 242,
"source": [
{
"previousNode": "Hubspot7"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"portalId": 9435114,
"dealId": 12238377353,
"isDeleted": false,
"associations": {
"object": true
},
"properties": {
"object": true
},
"stateChanges": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Hubspot6": [
{
"startTime": 1676891389141,
"executionTime": 300,
"source": [
{
"previousNode": "Hubspot2"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Hubspot6"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2023-02-20T11:09:45.712Z",
"stoppedAt": "2023-02-20T11:09:49.441Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,546 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343995426,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Delete existing dir": [
{
"startTime": 1747343995426,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 13,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"exitCode": 0,
"stderr": "",
"stdout": ""
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Git": [
{
"startTime": 1747343995439,
"executionIndex": 2,
"source": [
{
"previousNode": "Delete existing dir"
}
],
"hints": [],
"executionTime": 515,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Git1": [
{
"startTime": 1747343995954,
"executionIndex": 3,
"source": [
{
"previousNode": "Git"
}
],
"hints": [],
"executionTime": 13,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"_file": "/Library/Developer/CommandLineTools/usr/share/git-core/gitconfig"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Git2": [
{
"startTime": 1747343995967,
"executionIndex": 4,
"source": [
{
"previousNode": "Git1"
}
],
"hints": [],
"executionTime": 170,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"success": true
},
"pairedItem": {
"item": 1
}
}
]
]
}
}
],
"Git7": [
{
"startTime": 1747343996137,
"executionIndex": 5,
"source": [
{
"previousNode": "Git2"
}
],
"hints": [],
"executionTime": 132,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
},
{
"json": {
"success": true
},
"pairedItem": {
"item": 1
}
}
]
]
}
}
],
"Add file to dir": [
{
"startTime": 1747343996269,
"executionIndex": 6,
"source": [
{
"previousNode": "Git7"
}
],
"hints": [],
"executionTime": 5,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"exitCode": 0,
"stderr": "",
"stdout": ""
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Git3": [
{
"startTime": 1747343996274,
"executionIndex": 7,
"source": [
{
"previousNode": "Add file to dir"
}
],
"hints": [],
"executionTime": 147,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Git4": [
{
"startTime": 1747343996421,
"executionIndex": 8,
"source": [
{
"previousNode": "Git3"
}
],
"hints": [],
"executionTime": 273,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"not_added": [
"json array"
],
"conflicted": [
"json array"
],
"created": [
"json array"
],
"deleted": [
"json array"
],
"modified": [
"json array"
],
"renamed": [
"json array"
],
"files": [
"json array"
],
"staged": [
"json array"
],
"ahead": 0,
"behind": 0,
"current": "main",
"tracking": "origin/main",
"detached": false
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Git5": [
{
"startTime": 1747343996694,
"executionIndex": 9,
"source": [
{
"previousNode": "Git4"
}
],
"hints": [],
"executionTime": 24,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Git6": [
{
"startTime": 1747343996718,
"executionIndex": 10,
"source": [
{
"previousNode": "Git5"
}
],
"hints": [],
"executionTime": 13,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"hash": "103944f38dc823d0f4a9d0720c9bdbd18528cd21",
"date": "2025-05-15T22:19:56+01:00",
"message": "GitNode commit Thu, 15 May 2025 21:19:56 GMT",
"refs": "HEAD -> main",
"body": "",
"author_name": "nodemationqa",
"author_email": "nodeqa@n8n.io"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Git8": [
{
"startTime": 1747343996731,
"executionIndex": 11,
"source": [
{
"previousNode": "Git6"
}
],
"hints": [],
"executionTime": 63,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Git9": [
{
"startTime": 1747343996794,
"executionIndex": 12,
"source": [
{
"previousNode": "Git8"
}
],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Git10": [
{
"startTime": 1747343996794,
"executionIndex": 13,
"source": [
{
"previousNode": "Git9"
}
],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Git11": [
{
"startTime": 1747343996794,
"executionIndex": 14,
"source": [
{
"previousNode": "Git10"
}
],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Git12": [
{
"startTime": 1747343996794,
"executionIndex": 15,
"source": [
{
"previousNode": "Git11"
}
],
"hints": [],
"executionTime": 352,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Git13": [
{
"startTime": 1747343997146,
"executionIndex": 16,
"source": [
{
"previousNode": "Git12"
}
],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Git13"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:55.426Z",
"stoppedAt": "2025-05-15T21:19:57.146Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,169 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343995559,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Handle JSON data": [
{
"startTime": 1747343995559,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 2,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"arr": [
"json array"
],
"str": "Testing Function Item node",
"num": 1337,
"obj": {
"object": true
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Handle Binary data": [
{
"startTime": 1747343995561,
"executionIndex": 2,
"source": [
{
"previousNode": "Handle JSON data"
}
],
"hints": [],
"executionTime": 1,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"arr": [
"json array"
],
"str": "Testing Function Item node",
"num": 1337,
"obj": {
"object": true
},
"binaryData": "NIL"
},
"pairedItem": {
"item": 0
},
"binary": {
"data": {
"data": "SGVsbG8gZnJvbSBuOG4gRnVuY3Rpb24gaXRlbSB0ZXN0aW5nIHdvcmtmbG93",
"mimeType": "text",
"fileExtension": "text",
"fileName": "testfile"
}
}
}
]
]
}
}
],
"Handle Static data": [
{
"startTime": 1747343995562,
"executionIndex": 3,
"source": [
{
"previousNode": "Handle Binary data"
}
],
"hints": [],
"executionTime": 3,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"arr": [
"json array"
],
"str": "Testing Function Item node",
"num": 1337,
"obj": {
"object": true
},
"binaryData": "NIL",
"globalStaticMessage": "Hello, Global Static Data",
"nodeStaticMessage": "Hello, Node Static Data"
},
"pairedItem": {
"item": 0
},
"binary": {
"data": {
"data": "SGVsbG8gZnJvbSBuOG4gRnVuY3Rpb24gaXRlbSB0ZXN0aW5nIHdvcmtmbG93",
"mimeType": "text",
"fileExtension": "text",
"fileName": "testfile"
}
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Handle Static data"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:55.559Z",
"stoppedAt": "2025-05-15T21:19:55.565Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,73 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"hints": [],
"startTime": 1738078174417,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"LingvaNex": [
{
"hints": [],
"startTime": 1738078174417,
"executionTime": 374,
"source": [
{
"previousNode": "Start"
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"err": {
"object": true
},
"result": "Automatisierung"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "LingvaNex"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-01-28T15:29:34.416Z",
"stoppedAt": "2025-01-28T15:29:34.791Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,664 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"Start": [
{
"startTime": 1747343995588,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive11": [
{
"startTime": 1747343995588,
"executionIndex": 1,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 700,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "1QBrItvwcOaEONfCcfDHPpdK_BLTEtBNA",
"name": "testFolder"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive14": [
{
"startTime": 1747343996288,
"executionIndex": 2,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 1739,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"kind": "drive#file",
"id": "1MMAfuJxKmbuzT_JWF98PjJCPxXnxykMW",
"name": "testFile",
"mimeType": "text/plain"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive3": [
{
"startTime": 1747343998027,
"executionIndex": 3,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 1616,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"kind": "drive#file",
"id": "1KbJrxtMCxK4fFq8Cd0_-66dxnW5kSzDN",
"name": "testFile",
"mimeType": "text/plain"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive": [
{
"startTime": 1747343999643,
"executionIndex": 4,
"source": [
{
"previousNode": "Start"
}
],
"hints": [],
"executionTime": 536,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "1X-5udmSom0Xew6oE2g7Glrd9t7u6srsN",
"name": "testFolder"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive12": [
{
"startTime": 1747344000179,
"executionIndex": 5,
"source": [
{
"previousNode": "Google Drive11"
}
],
"hints": [],
"executionTime": 601,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"kind": "drive#permission",
"id": "anyoneWithLink",
"type": "anyone",
"role": "reader",
"allowFileDiscovery": false
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive15": [
{
"startTime": 1747344000780,
"executionIndex": 6,
"source": [
{
"previousNode": "Google Drive14"
}
],
"hints": [],
"executionTime": 686,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"kind": "drive#permission",
"id": "anyoneWithLink",
"type": "anyone",
"role": "reader",
"allowFileDiscovery": false
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive4": [
{
"startTime": 1747344001466,
"executionIndex": 7,
"source": [
{
"previousNode": "Google Drive3"
}
],
"hints": [],
"executionTime": 543,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"kind": "drive#permission",
"id": "anyoneWithLink",
"type": "anyone",
"role": "reader",
"allowFileDiscovery": false
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive1": [
{
"startTime": 1747344002009,
"executionIndex": 8,
"source": [
{
"previousNode": "Google Drive"
}
],
"hints": [],
"executionTime": 614,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"kind": "drive#permission",
"id": "anyoneWithLink",
"type": "anyone",
"role": "reader",
"allowFileDiscovery": false
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive13": [
{
"startTime": 1747344002623,
"executionIndex": 9,
"source": [
{
"previousNode": "Google Drive12"
}
],
"hints": [],
"executionTime": 464,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"fileId": "1QBrItvwcOaEONfCcfDHPpdK_BLTEtBNA",
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive16": [
{
"startTime": 1747344003087,
"executionIndex": 10,
"source": [
{
"previousNode": "Google Drive15"
}
],
"hints": [],
"executionTime": 428,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "1YNeDnFJOaq3mDazf8Ezm3V3K-aIKdmugke2m89Qf3dg",
"name": "oupa"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive5": [
{
"startTime": 1747344003515,
"executionIndex": 11,
"source": [
{
"previousNode": "Google Drive4"
}
],
"hints": [],
"executionTime": 430,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "1YNeDnFJOaq3mDazf8Ezm3V3K-aIKdmugke2m89Qf3dg",
"name": "oupa"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive2": [
{
"startTime": 1747344003945,
"executionIndex": 12,
"source": [
{
"previousNode": "Google Drive1"
}
],
"hints": [],
"executionTime": 450,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"fileId": "1X-5udmSom0Xew6oE2g7Glrd9t7u6srsN",
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive17": [
{
"startTime": 1747344004395,
"executionIndex": 13,
"source": [
{
"previousNode": "Google Drive16"
}
],
"hints": [],
"executionTime": 933,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "1YNeDnFJOaq3mDazf8Ezm3V3K-aIKdmugke2m89Qf3dg",
"name": "oupa"
},
"binary": {
"data": {
"mimeType": "text/plain",
"fileType": "text",
"fileExtension": "txt",
"data": "VGVzdCBGaWxlIENvbnRlbnQ=",
"fileName": "testFile",
"fileSize": "17 B"
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive6": [
{
"startTime": 1747344005328,
"executionIndex": 14,
"source": [
{
"previousNode": "Google Drive5"
}
],
"hints": [],
"executionTime": 913,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"id": "1YNeDnFJOaq3mDazf8Ezm3V3K-aIKdmugke2m89Qf3dg",
"name": "oupa"
},
"binary": {
"data": {
"mimeType": "text/plain",
"fileType": "text",
"fileExtension": "txt",
"data": "VGVzdCBGaWxlIENvbnRlbnQ=",
"fileName": "testFile",
"fileSize": "17 B"
}
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive18": [
{
"startTime": 1747344006241,
"executionIndex": 15,
"source": [
{
"previousNode": "Google Drive17"
}
],
"hints": [],
"executionTime": 881,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"kind": "drive#file",
"id": "1tJSggHaGcdtLmpE_ZVkm_aYBShbeh1d-",
"name": "testFile",
"mimeType": "text/plain"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive7": [
{
"startTime": 1747344007122,
"executionIndex": 16,
"source": [
{
"previousNode": "Google Drive6"
}
],
"hints": [],
"executionTime": 746,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"kind": "drive#file",
"id": "1qkiRpLoY_9OrJmfq_ykRfFfy6xEXU1uW",
"name": "testFile",
"mimeType": "text/plain"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive19": [
{
"startTime": 1747344007868,
"executionIndex": 17,
"source": [
{
"previousNode": "Google Drive18"
}
],
"hints": [],
"executionTime": 475,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"fileId": "1MMAfuJxKmbuzT_JWF98PjJCPxXnxykMW",
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive8": [
{
"startTime": 1747344008344,
"executionIndex": 18,
"source": [
{
"previousNode": "Google Drive7"
}
],
"hints": [],
"executionTime": 485,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"fileId": "1KbJrxtMCxK4fFq8Cd0_-66dxnW5kSzDN",
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive10": [
{
"startTime": 1747344008829,
"executionIndex": 19,
"source": [
{
"previousNode": "Google Drive19"
}
],
"hints": [],
"executionTime": 431,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"fileId": "1tJSggHaGcdtLmpE_ZVkm_aYBShbeh1d-",
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Google Drive9": [
{
"startTime": 1747344009260,
"executionIndex": 20,
"source": [
{
"previousNode": "Google Drive8"
}
],
"hints": [],
"executionTime": 520,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"fileId": "1qkiRpLoY_9OrJmfq_ykRfFfy6xEXU1uW",
"success": true
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Google Drive9"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:55.587Z",
"stoppedAt": "2025-05-15T21:20:09.780Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,79 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"When clicking \"Execute Workflow\"": [
{
"startTime": 1747343995774,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"VirusTotal HTTP Request": [
{
"startTime": 1747343995774,
"executionIndex": 1,
"source": [
{
"previousNode": "When clicking \"Execute Workflow\""
}
],
"hints": [
{
"message": "To split the contents of data into separate items for easier processing, add a Split Out node after this one",
"location": "outputPane"
}
],
"executionTime": 383,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"data": [
"json array"
]
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "VirusTotal HTTP Request"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:55.773Z",
"stoppedAt": "2025-05-15T21:19:56.157Z",
"status": "running",
"finished": true
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,126 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"When clicking \"Test workflow\"": [
{
"startTime": 1709625796309,
"executionTime": 0,
"source": [],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Cohere Model": [
{
"startTime": 1709625796771,
"executionTime": 354,
"executionStatus": "success",
"source": [
null
],
"data": {
"ai_languageModel": [
[
{
"json": {
"response": {
"object": true
}
}
}
]
]
},
"inputOverride": {
"ai_languageModel": [
[
{
"json": {
"messages": [
"How much is 1+1? Only provide the numerical answer without any other text.\n"
],
"options": {
"signal": {}
}
}
}
]
]
}
}
],
"Cohere Instruct": [
{
"startTime": 1709625796309,
"executionTime": 1133,
"source": [
{
"previousNode": "When clicking \"Test workflow\""
}
],
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"text": "2"
},
"pairedItem": {
"item": 0
}
}
]
]
},
"metadata": {
"subRun": [
{
"node": "Cohere Model",
"runIndex": 0
}
]
}
}
]
},
"lastNodeExecuted": "Cohere Instruct"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {
"Cohere Instruct": [
{
"subRun": [
{
"node": "Cohere Model",
"runIndex": 0
}
]
}
]
},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2024-03-05T08:03:16.304Z",
"stoppedAt": "2024-03-05T08:03:17.443Z",
"status": "running",
"finished": true
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,146 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"When clicking \"Test workflow\"": [
{
"startTime": 1747343996141,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Mistral Cloud Chat Model": [
{
"startTime": 1747343996676,
"executionTime": 200,
"executionIndex": 2,
"executionStatus": "success",
"source": [
{
"previousNode": "Mistral Cloud Chat",
"previousNodeRun": 0
}
],
"data": {
"ai_languageModel": [
[
{
"json": {
"response": {
"object": true
},
"tokenUsage": {
"object": true
}
}
}
]
]
},
"inputOverride": {
"ai_languageModel": [
[
{
"json": {
"messages": [
"Human: How much is 1+1? Only provide the numerical answer without any other text.\n"
],
"estimatedTokens": 20,
"options": {
"mistral_api_key": {
"lc": 1,
"type": "secret",
"id": [
"MISTRAL_API_KEY"
]
},
"model_name": "mistral-tiny",
"temperature": 0
}
}
}
]
]
},
"metadata": {
"subRun": [
{
"node": "Mistral Cloud Chat Model",
"runIndex": 0
}
]
}
}
],
"Mistral Cloud Chat": [
{
"startTime": 1747343996141,
"executionIndex": 1,
"source": [
{
"previousNode": "When clicking \"Test workflow\""
}
],
"hints": [],
"executionTime": 735,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"text": "2"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Mistral Cloud Chat"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {
"Mistral Cloud Chat Model": [
{
"subRun": [
{
"node": "Mistral Cloud Chat Model",
"runIndex": 0
}
]
}
]
},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:56.141Z",
"stoppedAt": "2025-05-15T21:19:56.876Z",
"status": "running",
"finished": true
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,150 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"When clicking \"Test workflow\"": [
{
"startTime": 1747343996926,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"Azure OpenAI Chat Model": [
{
"startTime": 1747343996936,
"executionTime": 776,
"executionIndex": 2,
"executionStatus": "success",
"source": [
{
"previousNode": "Azure OpenAI Chat",
"previousNodeRun": 0
}
],
"data": {
"ai_languageModel": [
[
{
"json": {
"response": {
"object": true
},
"tokenUsage": {
"object": true
}
}
}
]
]
},
"inputOverride": {
"ai_languageModel": [
[
{
"json": {
"messages": [
"Human: How much is 1+1? Only provide the numerical answer without any other text.\n"
],
"estimatedTokens": 20,
"options": {
"azure_endpoint": "https://n8n-ai-us.openai.azure.com/",
"temperature": 0,
"timeout": 60000,
"max_retries": 2,
"model_kwargs": {},
"openai_api_key": {
"lc": 1,
"type": "secret",
"id": [
"OPENAI_API_KEY"
]
},
"deployment_name": "gpt4"
}
}
}
]
]
},
"metadata": {
"subRun": [
{
"node": "Azure OpenAI Chat Model",
"runIndex": 0
}
]
}
}
],
"Azure OpenAI Chat": [
{
"startTime": 1747343996926,
"executionIndex": 1,
"source": [
{
"previousNode": "When clicking \"Test workflow\""
}
],
"hints": [],
"executionTime": 787,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"text": "2"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Azure OpenAI Chat"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {
"Azure OpenAI Chat Model": [
{
"subRun": [
{
"node": "Azure OpenAI Chat Model",
"runIndex": 0
}
]
}
]
},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:56.926Z",
"stoppedAt": "2025-05-15T21:19:57.713Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,149 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"When clicking \"Test workflow\"": [
{
"startTime": 1747343996969,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"OpenAI Model": [
{
"startTime": 1747343996970,
"executionTime": 422,
"executionIndex": 2,
"executionStatus": "success",
"source": [
{
"previousNode": "Open AI Instruct",
"previousNodeRun": 0
}
],
"data": {
"ai_languageModel": [
[
{
"json": {
"response": {
"object": true
},
"tokenUsage": {
"object": true
}
}
}
]
]
},
"inputOverride": {
"ai_languageModel": [
[
{
"json": {
"messages": [
"How much is 1+1? Only provide the numerical answer without any other text.\n\n"
],
"estimatedTokens": 18,
"options": {
"openai_api_key": {
"lc": 1,
"type": "secret",
"id": [
"OPENAI_API_KEY"
]
},
"model": "gpt-3.5-turbo-instruct",
"temperature": 0,
"configuration": {},
"timeout": 60000,
"max_retries": 2
}
}
}
]
]
},
"metadata": {
"subRun": [
{
"node": "OpenAI Model",
"runIndex": 0
}
]
}
}
],
"Open AI Instruct": [
{
"startTime": 1747343996969,
"executionIndex": 1,
"source": [
{
"previousNode": "When clicking \"Test workflow\""
}
],
"hints": [],
"executionTime": 423,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"text": "2"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "Open AI Instruct"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {
"OpenAI Model": [
{
"subRun": [
{
"node": "OpenAI Model",
"runIndex": 0
}
]
}
]
},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:56.969Z",
"stoppedAt": "2025-05-15T21:19:57.392Z",
"status": "running",
"finished": true
}

View File

@@ -0,0 +1,583 @@
{
"data": {
"startData": {},
"resultData": {
"runData": {
"When clicking \"Test workflow\"": [
{
"startTime": 1747343997231,
"executionIndex": 0,
"source": [],
"hints": [],
"executionTime": 0,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {},
"pairedItem": {
"item": 0
}
}
]
]
}
}
],
"OpenAI Chat Model3": [
{
"startTime": 1747343997245,
"executionTime": 2299,
"executionIndex": 2,
"executionStatus": "success",
"source": [
{
"previousNode": "AI Agent3",
"previousNodeRun": 0
}
],
"data": {
"ai_languageModel": [
[
{
"json": {
"response": {
"object": true
},
"tokenUsage": {
"object": true
}
}
}
]
]
},
"inputOverride": {
"ai_languageModel": [
[
{
"json": {
"messages": [
"System: Let's first understand the problem and devise a plan to solve the problem. Please output the plan starting with the header \"Plan:\" followed by a numbered list of steps. Please make the plan the minimum number of steps required to answer the query or complete the task accurately and precisely. You have a set of tools at your disposal to help you with this task: calculator: Useful for getting the result of a math expression. The input to this tool should be a valid mathematical expression that could be executed by a simple calculator. You must consider these tools when coming up with your plan. If the task is a question, the final step in the plan must be the following: \"Given the above steps taken, please respond to the original query.\" At the end of your plan, say \"<END_OF_PLAN>\"\nHuman: What is the result of 30 + (10002200 / 100)? Only respond with a number."
],
"estimatedTokens": 188,
"options": {
"openai_api_key": {
"lc": 1,
"type": "secret",
"id": [
"OPENAI_API_KEY"
]
},
"model": "gpt-4-turbo-preview",
"temperature": 0,
"timeout": 60000,
"max_retries": 2,
"configuration": {
"baseURL": "https://api.openai.com/v1"
},
"model_kwargs": {}
}
}
}
]
]
},
"metadata": {
"subRun": [
{
"node": "OpenAI Chat Model3",
"runIndex": 0
},
{
"node": "OpenAI Chat Model3",
"runIndex": 1
},
{
"node": "OpenAI Chat Model3",
"runIndex": 2
},
{
"node": "OpenAI Chat Model3",
"runIndex": 3
},
{
"node": "OpenAI Chat Model3",
"runIndex": 4
},
{
"node": "OpenAI Chat Model3",
"runIndex": 5
}
]
}
},
{
"startTime": 1747343999545,
"executionTime": 2549,
"executionIndex": 3,
"executionStatus": "success",
"source": [
{
"previousNode": "AI Agent3",
"previousNodeRun": 0
}
],
"data": {
"ai_languageModel": [
[
{
"json": {
"response": {
"object": true
},
"tokenUsage": {
"object": true
}
}
}
]
]
},
"inputOverride": {
"ai_languageModel": [
[
{
"json": {
"messages": [
"System: Answer the following questions as best you can. You have access to the following tools:\n\ncalculator: Useful for getting the result of a math expression. The input to this tool should be a valid mathematical expression that could be executed by a simple calculator.\n\nThe way you use the tools is by specifying a json blob, denoted below by $JSON_BLOB\nSpecifically, this $JSON_BLOB should have a \"action\" key (with the name of the tool to use) and a \"action_input\" key (with the input to the tool going here). \nThe $JSON_BLOB should only contain a SINGLE action, do NOT return a list of multiple actions. Here is an example of a valid $JSON_BLOB:\n\n```\n{\n \"action\": \"calculator\",\n \"action_input\": \"1 + 2\"\n}\n```\n\nALWAYS use the following format:\n\nQuestion: the input question you must answer\nThought: you should always think about what to do\nAction: \n```\n$JSON_BLOB\n```\nObservation: the result of the action\n... (this Thought/Action/Observation can repeat N times)\nThought: I now know the final answer\nFinal Answer: the final answer to the original input question\n\nBegin! Reminder to always use the exact characters `Final Answer` when responding.\nHuman: Previous steps: []\n\nCurrent objective: Calculate the division part of the expression: 10002200 / 100.\n\n\n\nYou may extract and combine relevant data from your previous steps when responding to me."
],
"estimatedTokens": 311,
"options": {
"openai_api_key": {
"lc": 1,
"type": "secret",
"id": [
"OPENAI_API_KEY"
]
},
"model": "gpt-4-turbo-preview",
"temperature": 0,
"timeout": 60000,
"max_retries": 2,
"configuration": {
"baseURL": "https://api.openai.com/v1"
},
"model_kwargs": {}
}
}
}
]
]
}
},
{
"startTime": 1747344002096,
"executionTime": 1416,
"executionIndex": 5,
"executionStatus": "success",
"source": [
{
"previousNode": "AI Agent3",
"previousNodeRun": 0
}
],
"data": {
"ai_languageModel": [
[
{
"json": {
"response": {
"object": true
},
"tokenUsage": {
"object": true
}
}
}
]
]
},
"inputOverride": {
"ai_languageModel": [
[
{
"json": {
"messages": [
"System: Answer the following questions as best you can. You have access to the following tools:\n\ncalculator: Useful for getting the result of a math expression. The input to this tool should be a valid mathematical expression that could be executed by a simple calculator.\n\nThe way you use the tools is by specifying a json blob, denoted below by $JSON_BLOB\nSpecifically, this $JSON_BLOB should have a \"action\" key (with the name of the tool to use) and a \"action_input\" key (with the input to the tool going here). \nThe $JSON_BLOB should only contain a SINGLE action, do NOT return a list of multiple actions. Here is an example of a valid $JSON_BLOB:\n\n```\n{\n \"action\": \"calculator\",\n \"action_input\": \"1 + 2\"\n}\n```\n\nALWAYS use the following format:\n\nQuestion: the input question you must answer\nThought: you should always think about what to do\nAction: \n```\n$JSON_BLOB\n```\nObservation: the result of the action\n... (this Thought/Action/Observation can repeat N times)\nThought: I now know the final answer\nFinal Answer: the final answer to the original input question\n\nBegin! Reminder to always use the exact characters `Final Answer` when responding.\nHuman: Previous steps: []\n\nCurrent objective: Calculate the division part of the expression: 10002200 / 100.\n\nThis was your previous work (but I haven't seen any of it! I only see what you return as final answer):\nThought: To calculate the division part of the expression \\(10002200 / 100\\), I will use the calculator tool.\nAction: \n```\n{\n \"action\": \"calculator\",\n \"action_input\": \"10002200 / 100\"\n}\n```\n\nObservation: 100022\nThought:\n\nYou may extract and combine relevant data from your previous steps when responding to me."
],
"estimatedTokens": 398,
"options": {
"openai_api_key": {
"lc": 1,
"type": "secret",
"id": [
"OPENAI_API_KEY"
]
},
"model": "gpt-4-turbo-preview",
"temperature": 0,
"timeout": 60000,
"max_retries": 2,
"configuration": {
"baseURL": "https://api.openai.com/v1"
},
"model_kwargs": {}
}
}
}
]
]
}
},
{
"startTime": 1747344003513,
"executionTime": 2581,
"executionIndex": 6,
"executionStatus": "success",
"source": [
{
"previousNode": "AI Agent3",
"previousNodeRun": 0
}
],
"data": {
"ai_languageModel": [
[
{
"json": {
"response": {
"object": true
},
"tokenUsage": {
"object": true
}
}
}
]
]
},
"inputOverride": {
"ai_languageModel": [
[
{
"json": {
"messages": [
"System: Answer the following questions as best you can. You have access to the following tools:\n\ncalculator: Useful for getting the result of a math expression. The input to this tool should be a valid mathematical expression that could be executed by a simple calculator.\n\nThe way you use the tools is by specifying a json blob, denoted below by $JSON_BLOB\nSpecifically, this $JSON_BLOB should have a \"action\" key (with the name of the tool to use) and a \"action_input\" key (with the input to the tool going here). \nThe $JSON_BLOB should only contain a SINGLE action, do NOT return a list of multiple actions. Here is an example of a valid $JSON_BLOB:\n\n```\n{\n \"action\": \"calculator\",\n \"action_input\": \"1 + 2\"\n}\n```\n\nALWAYS use the following format:\n\nQuestion: the input question you must answer\nThought: you should always think about what to do\nAction: \n```\n$JSON_BLOB\n```\nObservation: the result of the action\n... (this Thought/Action/Observation can repeat N times)\nThought: I now know the final answer\nFinal Answer: the final answer to the original input question\n\nBegin! Reminder to always use the exact characters `Final Answer` when responding.\nHuman: Previous steps: [{\"action\":{\"text\":\"Calculate the division part of the expression: 10002200 / 100.\"},\"result\":{\"response\":\"The result of the division \\\\(10002200 / 100\\\\) is 100022.\"}}]\n\nCurrent objective: Add 30 to the result of step 1.\n\n\n\nYou may extract and combine relevant data from your previous steps when responding to me."
],
"estimatedTokens": 353,
"options": {
"openai_api_key": {
"lc": 1,
"type": "secret",
"id": [
"OPENAI_API_KEY"
]
},
"model": "gpt-4-turbo-preview",
"temperature": 0,
"timeout": 60000,
"max_retries": 2,
"configuration": {
"baseURL": "https://api.openai.com/v1"
},
"model_kwargs": {}
}
}
}
]
]
}
},
{
"startTime": 1747344006097,
"executionTime": 1567,
"executionIndex": 8,
"executionStatus": "success",
"source": [
{
"previousNode": "AI Agent3",
"previousNodeRun": 0
}
],
"data": {
"ai_languageModel": [
[
{
"json": {
"response": {
"object": true
},
"tokenUsage": {
"object": true
}
}
}
]
]
},
"inputOverride": {
"ai_languageModel": [
[
{
"json": {
"messages": [
"System: Answer the following questions as best you can. You have access to the following tools:\n\ncalculator: Useful for getting the result of a math expression. The input to this tool should be a valid mathematical expression that could be executed by a simple calculator.\n\nThe way you use the tools is by specifying a json blob, denoted below by $JSON_BLOB\nSpecifically, this $JSON_BLOB should have a \"action\" key (with the name of the tool to use) and a \"action_input\" key (with the input to the tool going here). \nThe $JSON_BLOB should only contain a SINGLE action, do NOT return a list of multiple actions. Here is an example of a valid $JSON_BLOB:\n\n```\n{\n \"action\": \"calculator\",\n \"action_input\": \"1 + 2\"\n}\n```\n\nALWAYS use the following format:\n\nQuestion: the input question you must answer\nThought: you should always think about what to do\nAction: \n```\n$JSON_BLOB\n```\nObservation: the result of the action\n... (this Thought/Action/Observation can repeat N times)\nThought: I now know the final answer\nFinal Answer: the final answer to the original input question\n\nBegin! Reminder to always use the exact characters `Final Answer` when responding.\nHuman: Previous steps: [{\"action\":{\"text\":\"Calculate the division part of the expression: 10002200 / 100.\"},\"result\":{\"response\":\"The result of the division \\\\(10002200 / 100\\\\) is 100022.\"}}]\n\nCurrent objective: Add 30 to the result of step 1.\n\nThis was your previous work (but I haven't seen any of it! I only see what you return as final answer):\nThought: To achieve the current objective, I need to add 30 to the result of step 1, which was 100022.\n\nAction: \n```\n{\n \"action\": \"calculator\",\n \"action_input\": \"100022 + 30\"\n}\n```\n\nObservation: 100052\nThought:\n\nYou may extract and combine relevant data from your previous steps when responding to me."
],
"estimatedTokens": 441,
"options": {
"openai_api_key": {
"lc": 1,
"type": "secret",
"id": [
"OPENAI_API_KEY"
]
},
"model": "gpt-4-turbo-preview",
"temperature": 0,
"timeout": 60000,
"max_retries": 2,
"configuration": {
"baseURL": "https://api.openai.com/v1"
},
"model_kwargs": {}
}
}
}
]
]
}
},
{
"startTime": 1747344007667,
"executionTime": 796,
"executionIndex": 9,
"executionStatus": "success",
"source": [
{
"previousNode": "AI Agent3",
"previousNodeRun": 0
}
],
"data": {
"ai_languageModel": [
[
{
"json": {
"response": {
"object": true
},
"tokenUsage": {
"object": true
}
}
}
]
]
},
"inputOverride": {
"ai_languageModel": [
[
{
"json": {
"messages": [
"System: Answer the following questions as best you can. You have access to the following tools:\n\ncalculator: Useful for getting the result of a math expression. The input to this tool should be a valid mathematical expression that could be executed by a simple calculator.\n\nThe way you use the tools is by specifying a json blob, denoted below by $JSON_BLOB\nSpecifically, this $JSON_BLOB should have a \"action\" key (with the name of the tool to use) and a \"action_input\" key (with the input to the tool going here). \nThe $JSON_BLOB should only contain a SINGLE action, do NOT return a list of multiple actions. Here is an example of a valid $JSON_BLOB:\n\n```\n{\n \"action\": \"calculator\",\n \"action_input\": \"1 + 2\"\n}\n```\n\nALWAYS use the following format:\n\nQuestion: the input question you must answer\nThought: you should always think about what to do\nAction: \n```\n$JSON_BLOB\n```\nObservation: the result of the action\n... (this Thought/Action/Observation can repeat N times)\nThought: I now know the final answer\nFinal Answer: the final answer to the original input question\n\nBegin! Reminder to always use the exact characters `Final Answer` when responding.\nHuman: Previous steps: [{\"action\":{\"text\":\"Calculate the division part of the expression: 10002200 / 100.\"},\"result\":{\"response\":\"The result of the division \\\\(10002200 / 100\\\\) is 100022.\"}},{\"action\":{\"text\":\"Add 30 to the result of step 1.\"},\"result\":{\"response\":\"The final result after adding 30 to 100022 is 100052.\"}}]\n\nCurrent objective: Output the final result as a number.\n\n The original question was: What is the result of 30 + (10002200 / 100)? Only respond with a number..\n\n\n\nYou may extract and combine relevant data from your previous steps when responding to me."
],
"estimatedTokens": 416,
"options": {
"openai_api_key": {
"lc": 1,
"type": "secret",
"id": [
"OPENAI_API_KEY"
]
},
"model": "gpt-4-turbo-preview",
"temperature": 0,
"timeout": 60000,
"max_retries": 2,
"configuration": {
"baseURL": "https://api.openai.com/v1"
},
"model_kwargs": {}
}
}
}
]
]
}
}
],
"Calculator3": [
{
"startTime": 1747344002094,
"executionTime": 1,
"executionIndex": 4,
"executionStatus": "success",
"source": [
{
"previousNode": "AI Agent3",
"previousNodeRun": 0
}
],
"data": {
"ai_tool": [
[
{
"json": {
"response": "100022"
}
}
]
]
},
"inputOverride": {
"ai_tool": [
[
{
"json": {
"query": "10002200 / 100"
}
}
]
]
},
"metadata": {
"subRun": [
{
"node": "Calculator3",
"runIndex": 0
},
{
"node": "Calculator3",
"runIndex": 1
}
]
}
},
{
"startTime": 1747344006095,
"executionTime": 0,
"executionIndex": 7,
"executionStatus": "success",
"source": [
{
"previousNode": "AI Agent3",
"previousNodeRun": 0
}
],
"data": {
"ai_tool": [
[
{
"json": {
"response": "100052"
}
}
]
]
},
"inputOverride": {
"ai_tool": [
[
{
"json": {
"query": "100022 + 30"
}
}
]
]
}
}
],
"AI Agent3": [
{
"startTime": 1747343997232,
"executionIndex": 1,
"source": [
{
"previousNode": "When clicking \"Test workflow\""
}
],
"hints": [],
"executionTime": 11232,
"executionStatus": "success",
"data": {
"main": [
[
{
"json": {
"output": "100052"
},
"pairedItem": {
"item": 0
}
}
]
]
}
}
]
},
"lastNodeExecuted": "AI Agent3"
},
"executionData": {
"contextData": {},
"nodeExecutionStack": [],
"metadata": {
"OpenAI Chat Model3": [
{
"subRun": [
{
"node": "OpenAI Chat Model3",
"runIndex": 0
},
{
"node": "OpenAI Chat Model3",
"runIndex": 1
},
{
"node": "OpenAI Chat Model3",
"runIndex": 2
},
{
"node": "OpenAI Chat Model3",
"runIndex": 3
},
{
"node": "OpenAI Chat Model3",
"runIndex": 4
},
{
"node": "OpenAI Chat Model3",
"runIndex": 5
}
]
}
],
"Calculator3": [
{
"subRun": [
{
"node": "Calculator3",
"runIndex": 0
},
{
"node": "Calculator3",
"runIndex": 1
}
]
}
]
},
"waitingExecution": {},
"waitingExecutionSource": {}
}
},
"mode": "cli",
"startedAt": "2025-05-15T21:19:57.231Z",
"stoppedAt": "2025-05-15T21:20:08.464Z",
"status": "running",
"finished": true
}

Some files were not shown because too many files have changed in this diff Show More