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 →
{
"nodes": [
{
"name": "Google Sheets1",
"type": "n8n-nodes-base.googleSheets",
"notes": "Append data to sheet",
"position": [
980,
-120
],
"parameters": {
"range": "A:C",
"options": {
"usePathForKeyRow": true
},
"sheetId": "qwertz",
"operation": "append",
"authentication": "oAuth2"
},
"credentials": {
"googleSheetsOAuth2Api": {
"name": "<your credential>"
}
},
"notesInFlow": true,
"typeVersion": 1
},
{
"name": "read json file",
"type": "n8n-nodes-base.readBinaryFile",
"position": [
620,
-120
],
"parameters": {
"filePath": "/username/users_spreadsheet.json"
},
"typeVersion": 1
},
{
"name": "move binary data 2",
"type": "n8n-nodes-base.moveBinaryData",
"position": [
800,
-120
],
"parameters": {
"options": {}
},
"typeVersion": 1
}
],
"connections": {
"read json file": {
"main": [
[
{
"node": "move binary data 2",
"type": "main",
"index": 0
}
]
]
},
"move binary data 2": {
"main": [
[
{
"node": "Google Sheets1",
"type": "main",
"index": 0
}
]
]
}
}
}
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
About this workflow
Transfer Json Data To Csv File. Uses googleSheets, readBinaryFile, moveBinaryData. Manual trigger; 3 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →