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": "Google Sync",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "google-sync",
"authentication": "jwt"
},
"id": "Webhook1",
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
260,
300
],
"credentials": {
"jwtAuth": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"functionCode": "const google = $json?.oauth?.google;\n\nif (!google) {\n throw new Error('Missing Google OAuth credentials in request body');\n}\n\nreturn [\n {\n json: {\n access_token: google.access_token,\n refresh_token: google.refresh_token,\n expiry_date: google.expiry_date,\n token_type: google.token_type,\n userData: $json?.data || {}\n }\n }\n];"
},
"id": "Function1",
"name": "Parse OAuth",
"type": "n8n-nodes-base.function",
"typeVersion": 1,
"position": [
500,
300
]
},
{
"parameters": {
"operation": "append",
"sheetId": "YOUR_SPREADSHEET_ID",
"range": "Sheet1!A1",
"options": {},
"values": "={{ Object.values($json.userData) }}"
},
"id": "GoogleSheets1",
"name": "Google Sheets",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 1,
"position": [
760,
300
],
"credentials": {
"googleSheetsOAuth2Api": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Webhook1": {
"main": [
[
{
"node": "Function1",
"type": "main",
"index": 0
}
]
]
},
"Function1": {
"main": [
[
{
"node": "GoogleSheets1",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {},
"triggerCount": 0,
"versionId": "imported_workflow_1"
}
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.
googleSheetsOAuth2ApijwtAuth
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Google Sync. Uses googleSheets. Webhook trigger; 3 nodes.
Source: https://github.com/JCAdkins/ReminderApp/blob/4ec9b3a7398cc55090258fefdba54021a2140cde/workflows/google_sync.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.
BP_check. Uses googleSheets, @n-octo-n/n8n-nodes-json-database, httpRequest, itemLists. Webhook trigger; 99 nodes.
BP_check2. Uses googleSheets, @n-octo-n/n8n-nodes-json-database, httpRequest, itemLists. Webhook trigger; 95 nodes.
This workflow automates raw materials inventory management for businesses, eliminating manual stock updates, delayed material issue approvals, and missed low stock alerts. It ensures real-time stock t
This workflow hosts a simple, mobile-friendly grocery list web page in n8n and stores items in n8n Data Tables (default), PostgreSQL, or Google Sheets, letting you view the list, add items, and check
This workflow is designed for software teams, project managers, and developers who manage work across Azure DevOps and GitHub. It helps organizations that use Azure DevOps for work item tracking but r