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": "Example: Sync Google Sheets to MediaWiki",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "hours",
"hoursInterval": 6
}
]
}
},
"name": "Schedule Trigger",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"operation": "read",
"sheetId": "YOUR_SHEET_ID",
"range": "Sheet1!A:E",
"options": {}
},
"name": "Google Sheets",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 3,
"position": [
450,
300
],
"credentials": {
"googleSheetsOAuth2Api": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"pageTitle": "={{ $json.page_title }}",
"templateName": "={{ $json.template_name }}",
"position": "top",
"templateVariables": {
"variable": [
{
"name": "={{ $json.var1_name }}",
"value": "={{ $json.var1_value }}"
},
{
"name": "={{ $json.var2_name }}",
"value": "={{ $json.var2_value }}"
},
{
"name": "last_updated",
"value": "={{ $now.toFormat('yyyy-MM-dd HH:mm:ss') }}"
}
]
},
"editSummary": "Automated sync from Google Sheets via n8n"
},
"name": "Update MediaWiki",
"type": "n8n-nodes-mediawiki.mediaWikiCreateOrUpdateTemplate",
"typeVersion": 1,
"position": [
650,
300
],
"credentials": {
"mediaWikiApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Schedule Trigger": {
"main": [
[
{
"node": "Google Sheets",
"type": "main",
"index": 0
}
]
]
},
"Google Sheets": {
"main": [
[
{
"node": "Update MediaWiki",
"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.
googleSheetsOAuth2ApimediaWikiApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Example: Sync Google Sheets to MediaWiki. Uses googleSheets, n8n-nodes-mediawiki. Scheduled trigger; 3 nodes.
Source: https://github.com/neayi/n8n_mediawiki/blob/9bf9bb61de477b4f5fd632058c08133d37787e74/examples/google-sheets-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.
Sync Data Between Multiple Google Spreadsheets. Uses googleSheets. Scheduled trigger; 4 nodes.
MHS Updates credential sync. Uses start, googleSheets, httpRequest. Scheduled trigger; 4 nodes.
Dashboard_Sheets. Uses postgres, googleSheets. Scheduled trigger; 4 nodes.
CRM Sync (ClickUp → StreamPulse → Google Sheets Audit). Uses clickUp, httpRequest, googleSheets. Scheduled trigger; 4 nodes.
Import Data From Mysql Into Google Sheets. Uses mySql, googleSheets. Scheduled trigger; 3 nodes.