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": "visit-log",
"nodes": [
{
"parameters": {
"content": "## Visit Log\n\nIntake door for website visit telemetry. The site's `/api/track` beacon POSTs one event per pageview / click; this appends it to the **Visits** tab.\n\n**Grain:** one row per event, keyed by (ts, ip, event, path, target).\n\n**Flow:** Webhook \u2192 Respond 204 \u2192 Append to Visits\n\nThe 7 AM `daily briefing` reads this tab and digests the last 24 h.\n\n\u26a0\ufe0f The append is a raw HTTP call, NOT the Google Sheets node, so it can pass **insertDataOption=INSERT_ROWS**. That makes concurrent appends atomic server-side. The Sheets node cannot set it and silently loses rows when two visits overlap \u2014 verified: 2/8 survived without it, 16/16 with it.\n\n\u26a0\ufe0f *Save successful production executions* is set to **none** \u2014 one execution per pageview would otherwise bury the execution list.",
"height": 460,
"width": 380
},
"id": "c1d2e3f4-0001-4001-8001-000000000001",
"name": "Overview",
"type": "n8n-nodes-base.stickyNote",
"typeVersion": 1,
"position": [
0,
0
]
},
{
"parameters": {
"httpMethod": "POST",
"path": "visit-log",
"responseMode": "responseNode",
"options": {}
},
"id": "c1d2e3f4-0002-4002-8002-000000000002",
"name": "Visit Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 2,
"position": [
420,
300
]
},
{
"parameters": {
"respondWith": "noData",
"options": {
"responseCode": 204
}
},
"id": "c1d2e3f4-0003-4003-8003-000000000003",
"name": "Respond OK",
"type": "n8n-nodes-base.respondToWebhook",
"typeVersion": 1.1,
"position": [
640,
300
]
},
{
"parameters": {
"method": "POST",
"url": "https://sheets.googleapis.com/v4/spreadsheets/YOUR_SIGNUPS_SPREADSHEET_ID/values/Visits:append",
"authentication": "predefinedCredentialType",
"nodeCredentialType": "googleSheetsOAuth2Api",
"sendQuery": true,
"queryParameters": {
"parameters": [
{
"name": "valueInputOption",
"value": "RAW"
},
{
"name": "insertDataOption",
"value": "INSERT_ROWS"
}
]
},
"sendBody": true,
"specifyBody": "json",
"jsonBody": "={{ JSON.stringify({ values: [[ $('Visit Webhook').item.json.body.ts, $('Visit Webhook').item.json.body.ip, $('Visit Webhook').item.json.body.country, $('Visit Webhook').item.json.body.city, $('Visit Webhook').item.json.body.event, $('Visit Webhook').item.json.body.path, $('Visit Webhook').item.json.body.target, $('Visit Webhook').item.json.body.referrer, $('Visit Webhook').item.json.body.ua ]] }) }}",
"options": {}
},
"id": "c1d2e3f4-0004-4004-8004-000000000004",
"name": "Append to Visits",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
860,
300
],
"credentials": {
"googleSheetsOAuth2Api": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Visit Webhook": {
"main": [
[
{
"node": "Respond OK",
"type": "main",
"index": 0
}
]
]
},
"Respond OK": {
"main": [
[
{
"node": "Append to Visits",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1",
"saveDataSuccessExecution": "none",
"errorWorkflow": "YOUR_ERROR_WORKFLOW_ID"
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
googleSheetsOAuth2Api
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
visit-log. Uses httpRequest. Webhook trigger; 4 nodes.
Source: https://github.com/runfish5/micro-services/blob/main/projects/n8n/15_site-visits/workflows/visit-log.n8n.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.
This template is designed for developers, businesses, and service providers who need to programmatically check Calendly availability. It's perfect for: Web developers building custom booking interface
Never lose a prospect to a missed call again. This workflow sends an automatic "sorry we missed you" SMS within seconds, follows up 2 hours later if there's no reply, and enrolls unresponsive contacts
Send Postcards to Contacts Automatically using CentralStationCRM and EchtPost. Uses httpRequest. Webhook trigger; 12 nodes.
Send Postcards to Contacts Automatically using CentralStationCRM and EchtPost. Uses httpRequest. Webhook trigger; 12 nodes.
Send Postcards to Contacts Automatically using CentralStationCRM and EchtPost. Uses httpRequest. Webhook trigger; 12 nodes.