-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-workflow.json
More file actions
50 lines (50 loc) · 874 Bytes
/
Copy pathsample-workflow.json
File metadata and controls
50 lines (50 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "Sample Workflow",
"nodes": [
{
"parameters": {},
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [250, 300],
"id": "sample-trigger-node",
"name": "When clicking 'Execute workflow'"
},
{
"parameters": {
"values": {
"string": [
{
"name": "message",
"value": "Hello from n8n!"
}
]
}
},
"type": "n8n-nodes-base.set",
"typeVersion": 3.3,
"position": [450, 300],
"id": "sample-set-node",
"name": "Set"
}
],
"connections": {
"When clicking 'Execute workflow'": {
"main": [
[
{
"node": "Set",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1"
},
"id": "sample-workflow-id",
"createdAt": "2024-01-01T00:00:00.000Z",
"updatedAt": "2024-01-01T00:00:00.000Z"
}