You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: component.json
+19-3Lines changed: 19 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,10 @@
15
15
"triggers": {
16
16
"receive": {
17
17
"title": "Receive",
18
-
"description": "Simple webhook trigger which receives data as an input and starts the flow execution after this.",
18
+
"help": {
19
+
"description": "Receives data from an external system to a given URL to start a new execution of the flow. Each incoming request results in a new execution.",
"description": "Used to specify the HTTP request method for the given URI."
39
49
}
40
50
},
41
51
"uri": {
42
52
"viewClass": "TextFieldView",
43
53
"label": "URI",
44
-
"required": true
54
+
"required": true,
55
+
"help": {
56
+
"description": "The URI to send data to."
57
+
}
45
58
},
46
59
"secret": {
47
60
"viewClass": "TextFieldView",
48
61
"label": "Secret",
49
-
"required": false
62
+
"required": false,
63
+
"help": {
64
+
"description": "May be used to prove the identity of the request sender. The value provided into this field will be sent as 'X-Api-Secret' HTTP header which may be checked on the receiving system."
0 commit comments