n8n Workflow

N8n Nodemation Basic Getting Started On The Workflow Canvas 1 3

This n8n workflow retrieves tasks and integrates with various services. N8n Nodemation Basic Getting Started On The Workflow Canvas 1 3 - ready to import and run in your n8n instance.

n8n workflow.json

About This Script

This n8n workflow retrieves tasks and integrates with various services. N8n Nodemation Basic Getting Started On The Workflow Canvas 1 3 - ready to import and run in your n8n instance.
Features:
  • Custom JavaScript function processing
  • Retrieves data from external sources
Source Code
{
    "nodes": [
        {
            "name": "FunctionItem",
            "type": "n8n-nodes-base.functionItem",
            "color": "#067325",
            "position": [
                860,
                680
            ],
            "parameters": {
                "functionCode": "item.myVariable = 1;\nitem.myVariable2 = \"this is exciting\";\nreturn item;"
            },
            "typeVersion": 1,
            "id": "59d80600-af5a-41f7-9f72-c10745f49729"
        },
        {
            "name": "2 hours Interval",
            "type": "n8n-nodes-base.interval",
            "color": "#FF2A00",
            "notes": "It is the 4 hours interval in which this node gets executed",
            "position": [
                630,
                680
            ],
            "parameters": {
                "unit": "hours",
                "interval": 2
            },
            "typeVersion": 1,
            "id": "aa40fcd4-4348-4796-9953-98cec127fbe4"
        },
        {
            "name": "Set",
            "type": "n8n-nodes-base.set",
            "position": [
                1040,
                680
            ],
            "parameters": {
                "values": {
                    "string": [
                        {
                            "name": "data",
                            "value": "={{$node[\"FunctionItem\"].data[\"myVariable2\"]}}"
                        }
                    ]
                },
                "keepOnlySet": true
            },
            "typeVersion": 1,
            "id": "248b57ba-f935-4ff1-b0f1-844deb2faeed"
        }
    ],
    "connections": {
        "FunctionItem": {
            "main": [
                [
                    {
                        "node": "Set",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        },
        "2 hours Interval": {
            "main": [
                [
                    {
                        "node": "FunctionItem",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        }
    },
    "n8n_version": "1.5.0"
}
Requirements
n8n instance, API credentials for connected services
Tags
#n8n #automation #workflow
Quick Actions
More in n8n Workflows