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": "Conviro CSAT to Google Sheets",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "conviro-csat",
"responseMode": "onReceived"
},
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"conditions": {
"string": [
{
"value1": "={{$json[\"event\"]}}",
"value2": "csat.received"
}
]
}
},
"name": "Filter CSAT",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [
450,
300
]
},
{
"parameters": {
"operation": "append",
"sheetId": "YOUR_SPREADSHEET_ID",
"range": "CSAT!A:E",
"columns": "Timestamp,Session ID,Score,Feedback,Chatbot",
"options": {}
},
"name": "Append to Sheet",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 2,
"position": [
700,
250
],
"credentials": {
"googleSheetsOAuth2Api": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"values": {
"string": [
{
"name": "Timestamp",
"value": "={{$json[\"timestamp\"]}}"
},
{
"name": "Session ID",
"value": "={{$json[\"data\"][\"sessionId\"]}}"
},
{
"name": "Score",
"value": "={{$json[\"data\"][\"score\"]}}"
},
{
"name": "Feedback",
"value": "={{$json[\"data\"][\"feedback\"] || ''}}"
},
{
"name": "Chatbot",
"value": "={{$json[\"data\"][\"chatbotName\"] || 'Default'}}"
}
]
}
},
"name": "Set Fields",
"type": "n8n-nodes-base.set",
"typeVersion": 1,
"position": [
550,
250
]
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Filter CSAT",
"type": "main",
"index": 0
}
]
]
},
"Filter CSAT": {
"main": [
[
{
"node": "Set Fields",
"type": "main",
"index": 0
}
],
[]
]
},
"Set Fields": {
"main": [
[
{
"node": "Append to Sheet",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
}
}
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
Conviro CSAT to Google Sheets. Uses googleSheets. Webhook trigger; 4 nodes.
Source: https://github.com/useconviro/conviro-cookbook/blob/eb7a8837c53a6fc91cbe9091d51bd862f5442495/automations/n8n/conviro-csat-to-sheets.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.
Track how many coffees your Jura E8 espresso machine makes — fully automated via webhook and Google Sheets.
This workflow receives a document via a secure webhook, uploads it to Parseur for parsing, polls Parseur until the parsing completes or times out, and returns either the extracted JSON result or a str
BARIN ALP - Inventory CRUD. Uses googleSheets. Webhook trigger; 9 nodes.
Get Orders API. Uses googleSheets, errorTrigger. Webhook trigger; 8 nodes.
This workflow converts an exported CSV from Squarespace profiles into a Shopify-compatible format for customer import.