This workflow follows the Google Sheets → HTTP Request recipe pattern — see all workflows that pair these two integrations.
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": "MHS Updates credential sync",
"nodes": [
{
"parameters": {},
"name": "Start",
"type": "n8n-nodes-base.start",
"typeVersion": 1,
"position": [
180,
450
]
},
{
"parameters": {
"authentication": "oAuth2",
"sheetId": "your_sheet_id_here",
"range": "A:C",
"rawData": true,
"options": {}
},
"name": "Google Sheets",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 1,
"position": [
680,
150
],
"executeOnce": false,
"alwaysOutputData": false,
"credentials": {
"googleSheetsOAuth2Api": "<your credential>"
},
"continueOnFail": true
},
{
"parameters": {
"requestMethod": "POST",
"url": "http://0.0.0.0:12345/api/v1/SetCredentials",
"responseFormat": "string",
"jsonParameters": true,
"options": {},
"bodyParametersJson": "={{ $items(\"Google Sheets\")[0][\"json\"][\"data\"].slice(1)}}",
"headerParametersJson": "={\"X-API-Key\": \"your_key_here\"}"
},
"name": "HTTP Request",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
1030,
100
],
"retryOnFail": true,
"alwaysOutputData": false,
"maxTries": 2,
"continueOnFail": true
},
{
"parameters": {
"triggerTimes": {
"item": [
{
"mode": "everyMinute"
}
]
}
},
"name": "Cron",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [
250,
150
]
}
],
"connections": {
"Google Sheets": {
"main": [
[
{
"node": "HTTP Request",
"type": "main",
"index": 0
}
]
]
},
"Cron": {
"main": [
[
{
"node": "Google Sheets",
"type": "main",
"index": 0
}
]
]
}
},
"active": true,
"settings": {},
"id": "2"
}
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
MHS Updates credential sync. Uses start, googleSheets, httpRequest. Scheduled trigger; 4 nodes.
Source: https://github.com/jvadair/mhs-updates/blob/e041d8dbf6b5820128eb00c91e328f1bf99b98fd/samples/n8n_sample_profile.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.
BTC_Poll. Uses start, httpRequest, postgres. Scheduled trigger; 5 nodes.
CRM Sync (ClickUp → StreamPulse → Google Sheets Audit). Uses clickUp, httpRequest, googleSheets. Scheduled trigger; 4 nodes.
This workflow monitors customer health by combining payment behavior, complaint signals, and AI-driven feedback analysis. It runs on daily and weekly schedules to evaluate risk levels, escalate high-r
Code Postgres. Uses httpRequest, splitInBatches, postgres, hubspot. Scheduled trigger; 23 nodes.
Sync Asana project tasks to a Google Sheet mirror. Uses httpRequest, googleSheets. Scheduled trigger; 19 nodes.