-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path0153_HTTP_Dropbox_Update_Webhook.json
More file actions
123 lines (123 loc) · 2.23 KB
/
Copy path0153_HTTP_Dropbox_Update_Webhook.json
File metadata and controls
123 lines (123 loc) · 2.23 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"nodes": [
{
"name": "To JSON",
"type": "n8n-nodes-base.xml",
"position": [
700,
300
],
"parameters": {
"options": {}
},
"typeVersion": 1
},
{
"name": "Change title",
"type": "n8n-nodes-base.set",
"position": [
900,
300
],
"parameters": {
"values": {
"string": [
{
"name": "slideshow.title",
"value": "New Title Name"
}
]
}
},
"typeVersion": 1
},
{
"name": "Get XML Data",
"type": "n8n-nodes-base.httpRequest",
"position": [
500,
300
],
"parameters": {
"url": "https://httpbin.org/xml",
"responseFormat": "string"
},
"typeVersion": 1
},
{
"name": "Dropbox",
"type": "n8n-nodes-base.dropbox",
"position": [
1300,
300
],
"parameters": {
"path": "/my-xml-file.xml",
"fileContent": "={{$node[\"To XML\"].data[\"data\"]}}"
},
"credentials": {
"dropboxApi": ""
},
"typeVersion": 1
},
{
"name": "To XML",
"type": "n8n-nodes-base.xml",
"position": [
1100,
300
],
"parameters": {
"mode": "jsonToxml",
"options": {}
},
"typeVersion": 1
}
],
"connections": {
"To XML": {
"main": [
[
{
"node": "Dropbox",
"type": "main",
"index": 0
}
]
]
},
"To JSON": {
"main": [
[
{
"node": "Change title",
"type": "main",
"index": 0
}
]
]
},
"Change title": {
"main": [
[
{
"node": "To XML",
"type": "main",
"index": 0
}
]
]
},
"Get XML Data": {
"main": [
[
{
"node": "To JSON",
"type": "main",
"index": 0
}
]
]
}
}
}