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": "Bubble",
"type": "n8n-nodes-base.bubble",
"position": [
450,
280
],
"parameters": {
"typeName": "Doc",
"operation": "create",
"properties": {
"property": [
{
"key": "Name",
"value": "Bubble"
}
]
}
},
"credentials": {
"bubbleApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Bubble1",
"type": "n8n-nodes-base.bubble",
"position": [
650,
280
],
"parameters": {
"objectId": "={{$json[\"id\"]}}",
"typeName": "={{$node[\"Bubble\"].parameter[\"typeName\"]}}",
"operation": "update",
"properties": {
"property": [
{
"key": "Name",
"value": "Bubble node"
}
]
}
},
"credentials": {
"bubbleApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Bubble2",
"type": "n8n-nodes-base.bubble",
"position": [
850,
280
],
"parameters": {
"objectId": "={{$node[\"Bubble\"].json[\"id\"]}}",
"typeName": "={{$node[\"Bubble\"].parameter[\"typeName\"]}}"
},
"credentials": {
"bubbleApi": "<your credential>"
},
"typeVersion": 1
}
],
"connections": {
"Bubble": {
"main": [
[
{
"node": "Bubble1",
"type": "main",
"index": 0
}
]
]
},
"Bubble1": {
"main": [
[
{
"node": "Bubble2",
"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.
bubbleApi
About this workflow
Create Update And Get An Object From Bubble. Uses bubble. Manual trigger; 3 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →