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": "860",
"name": "Discover company data by name with uProc",
"nodes": [
{
"name": "On clicking 'execute'",
"type": "n8n-nodes-base.manualTrigger",
"position": [
440,
510
],
"parameters": {},
"typeVersion": 1
},
{
"name": "Create Company Item",
"type": "n8n-nodes-base.functionItem",
"position": [
640,
510
],
"parameters": {
"functionCode": "item.company = \"Killia technologies\";\nitem.country = \"Spain\";\n\nreturn item;"
},
"typeVersion": 1
},
{
"name": "Get Company by Name",
"type": "n8n-nodes-base.uproc",
"position": [
850,
510
],
"parameters": {
"name": "={{$node[\"Create Company Item\"].json[\"company\"]}}",
"tool": "getCompanyByName",
"group": "company",
"country": "={{$node[\"Create Company Item\"].json[\"country\"]}}",
"additionalOptions": {}
},
"credentials": {
"uprocApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Company Found?",
"type": "n8n-nodes-base.if",
"position": [
1050,
510
],
"parameters": {
"conditions": {
"number": [],
"string": [
{
"value1": "={{$node[\"Get Company by Name\"].json[\"message\"][\"name\"]}}",
"value2": ".+",
"operation": "regex"
}
]
}
},
"typeVersion": 1
}
],
"active": false,
"settings": {},
"connections": {
"Create Company Item": {
"main": [
[
{
"node": "Get Company by Name",
"type": "main",
"index": 0
}
]
]
},
"Get Company by Name": {
"main": [
[
{
"node": "Company Found?",
"type": "main",
"index": 0
}
]
]
},
"On clicking 'execute'": {
"main": [
[
{
"node": "Create Company Item",
"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.
uprocApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Discover company data by name with uProc. Uses functionItem, uproc. Event-driven trigger; 4 nodes.
Source: https://github.com/tommyshum/n8n_template_library/blob/87d0b7db31db00fcf781424ca7d9e86f1c9a9e1b/templates/official/template_860/workflow.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.
03 - Flow Control Demo (Loop) V2. Event-driven trigger; 11 nodes.
03 - Flow Control Demo (Loop) V2. Event-driven trigger; 11 nodes.
Report Examples Demo. Event-driven trigger; 7 nodes.
Check if a Twitch Stream is Live. Uses graphql. Event-driven trigger; 7 nodes.
Automatically prune n8n execution history. Uses n8n. Event-driven trigger; 7 nodes.