The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "hello-world",
"nodes": [
{
"id": "trigger",
"name": "Webhook Trigger",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
100,
100
],
"parameters": {
"path": "hello",
"httpMethod": "POST"
}
},
{
"id": "respond",
"name": "Respond",
"type": "n8n-nodes-base.respondToWebhook",
"typeVersion": 1,
"position": [
400,
100
],
"parameters": {
"respondWith": "text",
"responseBody": "={{ $env.GREETING_V2 }}"
}
},
{
"id": "audit",
"name": "Audit Log",
"type": "n8n-nodes-base.postgres",
"typeVersion": 2,
"position": [
700,
100
],
"parameters": {
"operation": "insert",
"table": "audit_log"
}
}
],
"connections": {
"Webhook Trigger": {
"main": [
[
{
"node": "Respond",
"type": "main",
"index": 0
}
]
]
},
"Respond": {
"main": [
[
{
"node": "Audit Log",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Hello World. Uses start. Manual trigger; 2 nodes.
Source: https://github.com/neul-labs/m9m/blob/main/examples/getting-started/hello-world.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
PostHog:Event:create:Identity:create:Alias:create:Track:page screen. Uses start, postHog. Manual trigger; 6 nodes.
This n8n template demonstrates how to identify new queries in Google Search Console that had no impressions in the past but appeared for the first time in the last 7 days. It also segments them into t
Demio:Event:getAll get register:Report:get. Uses start, demio. Manual trigger; 5 nodes.