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 →
{
"nodes": [
{
"name": "On clicking 'execute'",
"type": "n8n-nodes-base.manualTrigger",
"position": [
250,
300
],
"parameters": {},
"typeVersion": 1
},
{
"name": "Set",
"type": "n8n-nodes-base.set",
"position": [
450,
300
],
"parameters": {
"values": {
"number": [
{
"name": "ID",
"value": 1
}
],
"string": [
{
"name": "Name",
"value": "n8n"
}
]
},
"options": {}
},
"typeVersion": 1
},
{
"name": "Stackby",
"type": "n8n-nodes-base.stackby",
"position": [
650,
300
],
"parameters": {
"table": "Table 1",
"columns": "ID, Name",
"stackId": "stbgReRhlmmAgT2suT"
},
"credentials": {
"stackbyApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Stackby1",
"type": "n8n-nodes-base.stackby",
"position": [
850,
300
],
"parameters": {
"table": "={{$node[\"Stackby\"].parameter[\"table\"]}}",
"stackId": "={{$node[\"Stackby\"].parameter[\"stackId\"]}}",
"operation": "list",
"additionalFields": {}
},
"credentials": {
"stackbyApi": "<your credential>"
},
"typeVersion": 1
}
],
"connections": {
"Set": {
"main": [
[
{
"node": "Stackby",
"type": "main",
"index": 0
}
]
]
},
"Stackby": {
"main": [
[
{
"node": "Stackby1",
"type": "main",
"index": 0
}
]
]
},
"On clicking 'execute'": {
"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.
stackbyApi
About this workflow
Insert And Retrieve Data From A Table In Stackby. Uses manualTrigger, stackby. Event-driven trigger; 4 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →