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 →
{
"id": "65",
"name": "Get Product Feedback",
"nodes": [
{
"name": "Typeform Trigger",
"type": "n8n-nodes-base.typeformTrigger",
"position": [
170,
260
],
"parameters": {
"formId": ""
},
"credentials": {
"typeformApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Set",
"type": "n8n-nodes-base.set",
"position": [
370,
260
],
"parameters": {
"values": {
"number": [
{
"name": "Score",
"value": "={{$node[\"Typeform Trigger\"].json[\"What score would you like to give?\"]}}"
}
],
"string": [
{
"name": "Name",
"value": "={{$node[\"Typeform Trigger\"].json[\"What is your name?\"]}}"
},
{
"name": "Email",
"value": "={{$node[\"Typeform Trigger\"].json[\"What is your email address?\"]}}"
},
{
"name": "Description",
"value": "={{$node[\"Typeform Trigger\"].json[\"Anything else you want to share?\"]}}"
}
]
},
"options": {},
"keepOnlySet": true
},
"typeVersion": 1
},
{
"name": "Airtable",
"type": "n8n-nodes-base.airtable",
"position": [
570,
260
],
"parameters": {
"table": "Feedback",
"options": {},
"operation": "append",
"application": ""
},
"credentials": {
"airtableApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "IF",
"type": "n8n-nodes-base.if",
"position": [
770,
260
],
"parameters": {
"conditions": {
"number": [
{
"value1": "={{$node[\"Set\"].json[\"Score\"]}}",
"value2": 7
}
]
}
},
"typeVersion": 1
},
{
"name": "Trello",
"type": "n8n-nodes-base.trello",
"position": [
970,
160
],
"parameters": {
"name": "=[{{$node[\"IF\"].json[\"fields\"][\"Score\"]}}] {{$node[\"IF\"].json[\"fields\"][\"Name\"]}}",
"listId": "5fbb9e2eb1d5cc0a8a7ab8ac",
"description": "=Name: {{$node[\"IF\"].json[\"fields\"][\"Name\"]}}\nEmail: {{$node[\"IF\"].json[\"fields\"][\"Email\"]}}\nScore: {{$node[\"IF\"].json[\"fields\"][\"Score\"]}}\nDescription: {{$node[\"IF\"].json[\"fields\"][\"Description\"]}}",
"additionalFields": {}
},
"credentials": {
"trelloApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "NoOp",
"type": "n8n-nodes-base.noOp",
"position": [
970,
360
],
"parameters": {},
"typeVersion": 1
}
],
"active": false,
"settings": {},
"connections": {
"IF": {
"main": [
[
{
"node": "Trello",
"type": "main",
"index": 0
}
],
[
{
"node": "NoOp",
"type": "main",
"index": 0
}
]
]
},
"Set": {
"main": [
[
{
"node": "Airtable",
"type": "main",
"index": 0
}
]
]
},
"Airtable": {
"main": [
[
{
"node": "IF",
"type": "main",
"index": 0
}
]
]
},
"Typeform Trigger": {
"main": [
[
{
"node": "Set",
"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.
airtableApitrelloApitypeformApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Get Product Feedback. Uses typeformTrigger, airtable, trello, noOp. Event-driven trigger; 6 nodes.
Source: https://github.com/Zie619/n8n-workflows — 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.
Extract Infromation From A Receipt And Store It In Airtable. Uses typeformTrigger, httpRequest, mindee, airtable. Event-driven trigger; 5 nodes.
Expense Tracker App. Uses typeformTrigger, httpRequest, mindee, airtable. Event-driven trigger; 5 nodes.
Extract infromation from a receipt and store it in Airtable. Uses typeformTrigger, httpRequest, mindee, airtable. Event-driven trigger; 5 nodes.
CFP Selection 1. Uses typeformTrigger, airtable. Event-driven trigger; 2 nodes.
Splitout Code. Uses airtable, formTrigger, form, splitOut. Event-driven trigger; 34 nodes.