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": "Hostsmith - Deploy & List (example)",
"nodes": [
{
"parameters": {},
"id": "11111111-1111-1111-1111-111111111111",
"name": "When clicking 'Test workflow'",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
260,
300
]
},
{
"parameters": {
"resource": "site",
"operation": "list"
},
"id": "22222222-2222-2222-2222-222222222222",
"name": "List Sites",
"type": "@hostsmith/n8n-nodes-hostsmith.hostsmith",
"typeVersion": 1,
"position": [
520,
180
],
"credentials": {
"hostsmithOAuth2Api": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"resource": "site",
"operation": "deploy",
"siteId": "REPLACE_WITH_SITE_ID",
"files": {
"file": [
{
"source": "text",
"content": "<!doctype html><html><head><meta charset=\"utf-8\"><title>Hello</title></head><body><h1>Hello from n8n + Hostsmith</h1></body></html>",
"fileName": "index.html"
}
]
}
},
"id": "33333333-3333-3333-3333-333333333333",
"name": "Deploy index.html (text)",
"type": "@hostsmith/n8n-nodes-hostsmith.hostsmith",
"typeVersion": 1,
"position": [
520,
420
],
"credentials": {
"hostsmithOAuth2Api": {
"name": "<your credential>"
}
}
}
],
"connections": {
"When clicking 'Test workflow'": {
"main": [
[
{
"node": "List Sites",
"type": "main",
"index": 0
},
{
"node": "Deploy index.html (text)",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {},
"meta": {
"templateNote": "Example for manual testing. After import: (1) open each Hostsmith node and select your Hostsmith OAuth2 API credential; (2) in 'Deploy index.html (text)', set Site ID (from List Sites output or Site \u2192 Create). For a multipart test (>5 MB) or binary, add a row with Source = Binary and point Binary Property at a binary field from an upstream node (e.g. an HTTP Request download)."
}
}
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.
hostsmithOAuth2Api
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Hostsmith - Deploy & List (example). Uses @hostsmith/n8n-nodes-hostsmith. Event-driven trigger; 3 nodes.
Source: https://github.com/hostsmith/n8n-nodes/blob/76fcb97c70fa646a8f4a813315191accdabba52c/examples/deploy-site.example.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.
Report Examples Demo. Event-driven trigger; 7 nodes.
Google Sheets UI for n8n Workflow. Uses manualTrigger, stickyNote, splitInBatches, googleSheets. Event-driven trigger; 6 nodes.
Reusable and Independently Testable Sub-workflow. Uses executeWorkflowTrigger, manualTrigger, stickyNote. Event-driven trigger; 6 nodes.
example_1. Uses n8nTrainingCustomerDatastore. Event-driven trigger; 6 nodes.