-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakecomapp.json
More file actions
115 lines (115 loc) · 3.66 KB
/
Copy pathmakecomapp.json
File metadata and controls
115 lines (115 loc) · 3.66 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
{
"fileVersion": 1,
"generalCodeFiles": {
"base": "app.json",
"common": null,
"readme": "README.md",
"groups": null
},
"components": {
"connection": {
"apiKeyAuth": {
"label": "OpnForm API Key",
"connectionType": "basic",
"codeFiles": {
"communication": "connection/communication.json",
"params": "connection/parameters.json",
"common": null
}
}
},
"webhook": {
"newSubmission": {
"label": "New Submission",
"webhookType": "web",
"connection": "apiKeyAuth",
"codeFiles": {
"params": "webhook/parameters.json",
"attach": "webhook/attach.json",
"detach": "webhook/detach.json"
}
}
},
"module": {
"watchNewSubmissions": {
"label": "Watch New Submissions",
"description": "Triggers when a new form submission is received.",
"moduleType": "instant_trigger",
"connection": "apiKeyAuth",
"webhook": "newSubmission",
"codeFiles": {
"communication": "modules/watchNewSubmissions/communication.json",
"mappableParams": "modules/watchNewSubmissions/expect.json",
"interface": "modules/watchNewSubmissions/interface.json",
"samples": "modules/watchNewSubmissions/samples.json"
}
}
},
"rpc": {
"listWorkspaces": {
"label": "List Workspaces",
"connection": "apiKeyAuth",
"codeFiles": {
"communication": "rpcs/listWorkspaces.json"
}
},
"listForms": {
"label": "List Forms",
"connection": "apiKeyAuth",
"codeFiles": {
"communication": "rpcs/listForms.json"
}
}
},
"function": {},
"endpoint": {}
},
"origins": [
{
"label": "Testing",
"baseUrl": "https://eu1.make.com/api",
"appId": "opnform-test-b1vi3x",
"appVersion": 1,
"apikeyFile": ".secrets/apikey",
"idMapping": {
"connection": [
{
"local": "apiKeyAuth",
"remote": "opnform-test-b1vi3x"
}
],
"module": [
{
"local": "watchNewSubmissions",
"remote": "watchNewSubmissions"
}
],
"function": [],
"rpc": [
{
"local": "listWorkspaces",
"remote": "listWorkspaces"
},
{
"local": "listForms",
"remote": "listForms"
}
],
"webhook": [
{
"local": "newSubmission",
"remote": "opnform-test-b1vi3x"
}
],
"endpoint": []
}
},
{
"label": "Production",
"baseUrl": "https://eu1.make.com/api",
"appId": "opnform",
"appVersion": 1,
"apikeyFile": ".secrets/apikey"
}
]
}