@n8n-dev/n8n-nodes-linqr 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +118 -0
- package/dist/banner.svg +133 -0
- package/dist/credentials/LinqrApi.credentials.d.ts +9 -0
- package/dist/credentials/LinqrApi.credentials.js +40 -0
- package/dist/credentials/LinqrApi.credentials.js.map +1 -0
- package/dist/icons/linqr.dark.png +0 -0
- package/dist/icons/linqr.png +0 -0
- package/dist/nodes/Linqr/Linqr.node.d.ts +4 -0
- package/dist/nodes/Linqr/Linqr.node.js +68 -0
- package/dist/nodes/Linqr/Linqr.node.js.map +1 -0
- package/dist/nodes/Linqr/Linqr.node.json +20 -0
- package/dist/nodes/Linqr/linqr.dark.png +0 -0
- package/dist/nodes/Linqr/linqr.png +0 -0
- package/dist/nodes/Linqr/resources/image-management/index.d.ts +2 -0
- package/dist/nodes/Linqr/resources/image-management/index.js +296 -0
- package/dist/nodes/Linqr/resources/image-management/index.js.map +1 -0
- package/dist/nodes/Linqr/resources/index.d.ts +3 -0
- package/dist/nodes/Linqr/resources/index.js +10 -0
- package/dist/nodes/Linqr/resources/index.js.map +1 -0
- package/dist/nodes/Linqr/resources/multiple-qr-codes/index.d.ts +2 -0
- package/dist/nodes/Linqr/resources/multiple-qr-codes/index.js +153 -0
- package/dist/nodes/Linqr/resources/multiple-qr-codes/index.js.map +1 -0
- package/dist/nodes/Linqr/resources/single-qr-code/index.d.ts +2 -0
- package/dist/nodes/Linqr/resources/single-qr-code/index.js +1858 -0
- package/dist/nodes/Linqr/resources/single-qr-code/index.js.map +1 -0
- package/dist/package.json +62 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +62 -0
|
@@ -0,0 +1,1858 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.singleQrCodeDescription = void 0;
|
|
4
|
+
exports.singleQrCodeDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Single QR Code"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "Dispatcher Qrcode Post",
|
|
20
|
+
"value": "Dispatcher Qrcode Post",
|
|
21
|
+
"action": "Arbitrary data type QR Code",
|
|
22
|
+
"description": "This endpoint aggregates the functionality of all other endpoints in the group. The data type in the `data` field is recognized automatically and the data is encoded in an appropriate way.",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "POST",
|
|
26
|
+
"url": "=/qrcode"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "Dispatcher Qrcode Contact Post",
|
|
32
|
+
"value": "Dispatcher Qrcode Contact Post",
|
|
33
|
+
"action": "Contact QR Code",
|
|
34
|
+
"description": "This endpoint allows you to create a QR Code that allows user to quickly add contact information to the phone book. The code contains an appropriately encoded electronic business card. After scanning, the device prompts to save the contact in the phone book.",
|
|
35
|
+
"routing": {
|
|
36
|
+
"request": {
|
|
37
|
+
"method": "POST",
|
|
38
|
+
"url": "=/qrcode/contact"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "Dispatcher Qrcode Crypto Post",
|
|
44
|
+
"value": "Dispatcher Qrcode Crypto Post",
|
|
45
|
+
"action": "Cryptocurrency payment QR Code",
|
|
46
|
+
"description": "This endpoint allows you to create a QR Code that allows user to make a quick cryptocurrency transfer. The code contains appropriately encoded data for the payment. After scanning the code, the cryptocurrency wallet application asks user to perform the transfer without rewriting all necessary data.",
|
|
47
|
+
"routing": {
|
|
48
|
+
"request": {
|
|
49
|
+
"method": "POST",
|
|
50
|
+
"url": "=/qrcode/crypto"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "Dispatcher Qrcode Email Post",
|
|
56
|
+
"value": "Dispatcher Qrcode Email Post",
|
|
57
|
+
"action": "Email QR Code",
|
|
58
|
+
"description": "This endpoint allows the creation of a QR Code allowing the user to quickly send an email. The code contains an appropriately encoded message template. After scanning, the device starts the e-mail client with pre-filled specified fields.",
|
|
59
|
+
"routing": {
|
|
60
|
+
"request": {
|
|
61
|
+
"method": "POST",
|
|
62
|
+
"url": "=/qrcode/email"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "Dispatcher Qrcode Geo Post",
|
|
68
|
+
"value": "Dispatcher Qrcode Geo Post",
|
|
69
|
+
"action": "Geolocation QR Code",
|
|
70
|
+
"description": "This endpoint allows you to create a QR Code that allows to share location with the user. The code contains appropriately encoded geographic coordinates. After scanning the code, device maps application is invoked, pointing to the selected location (address).",
|
|
71
|
+
"routing": {
|
|
72
|
+
"request": {
|
|
73
|
+
"method": "POST",
|
|
74
|
+
"url": "=/qrcode/geo"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "Dispatcher Qrcode Phone Post",
|
|
80
|
+
"value": "Dispatcher Qrcode Phone Post",
|
|
81
|
+
"action": "Telephone QR Code",
|
|
82
|
+
"description": "This endpoint allows you to create a QR Code that allows user to make quick telephone call. The code contains appropriately encoded telephone number. After scanning the code, device dialer is invoked with prefilled phone number. To make a call, the user only needs to press the green phone key.",
|
|
83
|
+
"routing": {
|
|
84
|
+
"request": {
|
|
85
|
+
"method": "POST",
|
|
86
|
+
"url": "=/qrcode/phone"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "Dispatcher Qrcode Sms Post",
|
|
92
|
+
"value": "Dispatcher Qrcode Sms Post",
|
|
93
|
+
"action": "SMS QR Code",
|
|
94
|
+
"description": "This endpoint allows you to create a QR Code that allows user to quickly send SMS. The code contains appropriately encoded recipient number and message template. After scanning the code, device message application is invoked with prefilled phone number and text, ready to be sent. To send a SMS, the user only needs to press *Send* button.",
|
|
95
|
+
"routing": {
|
|
96
|
+
"request": {
|
|
97
|
+
"method": "POST",
|
|
98
|
+
"url": "=/qrcode/sms"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "Dispatcher Qrcode Text Post",
|
|
104
|
+
"value": "Dispatcher Qrcode Text Post",
|
|
105
|
+
"action": "Text QR Code",
|
|
106
|
+
"description": "This endpoint allows you to create a QR Code containing any text, in particular, an URL that may redirect the user to the website. After QR code is scanned, website will be displayed to the user.",
|
|
107
|
+
"routing": {
|
|
108
|
+
"request": {
|
|
109
|
+
"method": "POST",
|
|
110
|
+
"url": "=/qrcode/text"
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "Dispatcher Qrcode Wifi Post",
|
|
116
|
+
"value": "Dispatcher Qrcode Wifi Post",
|
|
117
|
+
"action": "WiFi QR Code",
|
|
118
|
+
"description": "This endpoint allows you to create a QR Code that allows user to quickly connect to a WiFi network. The code contains properly encoded network credentials. After scanning, the device can automatically connect to the network without having to enter the password manually.",
|
|
119
|
+
"routing": {
|
|
120
|
+
"request": {
|
|
121
|
+
"method": "POST",
|
|
122
|
+
"url": "=/qrcode/wifi"
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
"default": ""
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"displayName": "POST /qrcode",
|
|
131
|
+
"name": "operation",
|
|
132
|
+
"type": "notice",
|
|
133
|
+
"typeOptions": {
|
|
134
|
+
"theme": "info"
|
|
135
|
+
},
|
|
136
|
+
"default": "",
|
|
137
|
+
"displayOptions": {
|
|
138
|
+
"show": {
|
|
139
|
+
"resource": [
|
|
140
|
+
"Single QR Code"
|
|
141
|
+
],
|
|
142
|
+
"operation": [
|
|
143
|
+
"Dispatcher Qrcode Post"
|
|
144
|
+
]
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"required": true,
|
|
150
|
+
"displayName": "Data",
|
|
151
|
+
"name": "data",
|
|
152
|
+
"type": "string",
|
|
153
|
+
"default": "https://linqr.app",
|
|
154
|
+
"description": "Text to be encoded in the QR Code.",
|
|
155
|
+
"routing": {
|
|
156
|
+
"send": {
|
|
157
|
+
"property": "data",
|
|
158
|
+
"propertyInDotNotation": false,
|
|
159
|
+
"type": "body",
|
|
160
|
+
"value": "={{ $value }}"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"displayOptions": {
|
|
164
|
+
"show": {
|
|
165
|
+
"resource": [
|
|
166
|
+
"Single QR Code"
|
|
167
|
+
],
|
|
168
|
+
"operation": [
|
|
169
|
+
"Dispatcher Qrcode Post"
|
|
170
|
+
]
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"displayName": "Image",
|
|
176
|
+
"name": "image",
|
|
177
|
+
"type": "json",
|
|
178
|
+
"default": "{\n \"modules\": true,\n \"uri\": {}\n}",
|
|
179
|
+
"routing": {
|
|
180
|
+
"send": {
|
|
181
|
+
"property": "image",
|
|
182
|
+
"propertyInDotNotation": false,
|
|
183
|
+
"type": "body",
|
|
184
|
+
"value": "={{ JSON.parse($value) }}"
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"displayOptions": {
|
|
188
|
+
"show": {
|
|
189
|
+
"resource": [
|
|
190
|
+
"Single QR Code"
|
|
191
|
+
],
|
|
192
|
+
"operation": [
|
|
193
|
+
"Dispatcher Qrcode Post"
|
|
194
|
+
]
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"displayName": "Output",
|
|
200
|
+
"name": "output",
|
|
201
|
+
"type": "json",
|
|
202
|
+
"default": "{\n \"filename\": \"qrcode\"\n}",
|
|
203
|
+
"routing": {
|
|
204
|
+
"send": {
|
|
205
|
+
"property": "output",
|
|
206
|
+
"propertyInDotNotation": false,
|
|
207
|
+
"type": "body",
|
|
208
|
+
"value": "={{ JSON.parse($value) }}"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"displayOptions": {
|
|
212
|
+
"show": {
|
|
213
|
+
"resource": [
|
|
214
|
+
"Single QR Code"
|
|
215
|
+
],
|
|
216
|
+
"operation": [
|
|
217
|
+
"Dispatcher Qrcode Post"
|
|
218
|
+
]
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"displayName": "Size",
|
|
224
|
+
"name": "size",
|
|
225
|
+
"type": "json",
|
|
226
|
+
"default": "{\n \"quiet_zone\": 4,\n \"width\": 200\n}",
|
|
227
|
+
"routing": {
|
|
228
|
+
"send": {
|
|
229
|
+
"property": "size",
|
|
230
|
+
"propertyInDotNotation": false,
|
|
231
|
+
"type": "body",
|
|
232
|
+
"value": "={{ JSON.parse($value) }}"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"displayOptions": {
|
|
236
|
+
"show": {
|
|
237
|
+
"resource": [
|
|
238
|
+
"Single QR Code"
|
|
239
|
+
],
|
|
240
|
+
"operation": [
|
|
241
|
+
"Dispatcher Qrcode Post"
|
|
242
|
+
]
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"displayName": "Style",
|
|
248
|
+
"name": "style",
|
|
249
|
+
"type": "json",
|
|
250
|
+
"default": "{\n \"background\": {\n \"color\": \"#c2fce6\"\n },\n \"inner_eye\": {\n \"color\": \"black\"\n },\n \"module\": {},\n \"outer_eye\": {\n \"color\": \"rgb(0, 0, 255)\"\n }\n}",
|
|
251
|
+
"routing": {
|
|
252
|
+
"send": {
|
|
253
|
+
"property": "style",
|
|
254
|
+
"propertyInDotNotation": false,
|
|
255
|
+
"type": "body",
|
|
256
|
+
"value": "={{ JSON.parse($value) }}"
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
"displayOptions": {
|
|
260
|
+
"show": {
|
|
261
|
+
"resource": [
|
|
262
|
+
"Single QR Code"
|
|
263
|
+
],
|
|
264
|
+
"operation": [
|
|
265
|
+
"Dispatcher Qrcode Post"
|
|
266
|
+
]
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"displayName": "Byvalue API Key",
|
|
272
|
+
"name": "security_byvalue",
|
|
273
|
+
"type": "string",
|
|
274
|
+
"default": "",
|
|
275
|
+
"description": "Connection to LinQR can be made through the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >Byvalue proxy</a>. The use of LinQR API is billed based on actual consumption and price per 1,000 requests. Using Byvalue gives you access to all API functionalities without the need to purchase any subscription. After registering in the Byvalue, an access key is generated that is used to connect to the API. More information about this connection method or pricing can be found directly in the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing in Byvalue</a>.\n\n<a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Checkout with Byvalue\" src=\"https://byvalue-static-resources.s3.eu-central-1.amazonaws.com/byvalue-badges/bvlu_btn_dark.png\"></a>",
|
|
276
|
+
"required": false,
|
|
277
|
+
"routing": {
|
|
278
|
+
"request": {
|
|
279
|
+
"headers": {
|
|
280
|
+
"Byvalue-Token": "={{ $value }}"
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"displayOptions": {
|
|
285
|
+
"show": {
|
|
286
|
+
"resource": [
|
|
287
|
+
"Single QR Code"
|
|
288
|
+
],
|
|
289
|
+
"operation": [
|
|
290
|
+
"Dispatcher Qrcode Post"
|
|
291
|
+
]
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"displayName": "X Rapid API Key (Header)",
|
|
297
|
+
"name": "security_rapidapi",
|
|
298
|
+
"type": "string",
|
|
299
|
+
"default": "",
|
|
300
|
+
"description": "The connection to LinQR can be made through a <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >RapidAPI proxy</a>. RapidAPI is a service that manages the use of API and keys while being an API load balancer. Access is granted on a subscription basis. LinQR subscriptions have different plans: `BASIC`, `PRO`, `ULTRA` and `MEGA`. They differ in the number of available functionalities and can be adjusted to the expected level of service usage. After registering at the RapidAPI, you can generate a key that will be used to authorize the client in the LinQR. More details on usage limits or pricing can be found directly on the <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing at the RapidAPI Hub</a>.\n\nIf you do not find a plan tailored to your needs in RapidAPI, contact us directly: we can prepare a custom subscription plan according to your needs.\n\n<a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Connect on RapidAPI\" src=\"https://files.readme.io/7002e7f-c563a12-rapidapi-badge-dark.png\"></a>",
|
|
301
|
+
"required": false,
|
|
302
|
+
"routing": {
|
|
303
|
+
"request": {
|
|
304
|
+
"headers": {
|
|
305
|
+
"X-RapidAPI-Key": "={{ $value }}"
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"displayOptions": {
|
|
310
|
+
"show": {
|
|
311
|
+
"resource": [
|
|
312
|
+
"Single QR Code"
|
|
313
|
+
],
|
|
314
|
+
"operation": [
|
|
315
|
+
"Dispatcher Qrcode Post"
|
|
316
|
+
]
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"displayName": "POST /qrcode/contact",
|
|
322
|
+
"name": "operation",
|
|
323
|
+
"type": "notice",
|
|
324
|
+
"typeOptions": {
|
|
325
|
+
"theme": "info"
|
|
326
|
+
},
|
|
327
|
+
"default": "",
|
|
328
|
+
"displayOptions": {
|
|
329
|
+
"show": {
|
|
330
|
+
"resource": [
|
|
331
|
+
"Single QR Code"
|
|
332
|
+
],
|
|
333
|
+
"operation": [
|
|
334
|
+
"Dispatcher Qrcode Contact Post"
|
|
335
|
+
]
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"required": true,
|
|
341
|
+
"displayName": "Data",
|
|
342
|
+
"name": "data",
|
|
343
|
+
"type": "string",
|
|
344
|
+
"default": {
|
|
345
|
+
"city": "Philadelphia",
|
|
346
|
+
"country": "Japan",
|
|
347
|
+
"display_name": "John Doe",
|
|
348
|
+
"encoding": "vcard",
|
|
349
|
+
"first_name": "John",
|
|
350
|
+
"last_name": "Doe",
|
|
351
|
+
"latitude": 39.97121,
|
|
352
|
+
"longitude": -75.1605564,
|
|
353
|
+
"memo": "Some note",
|
|
354
|
+
"nickname": "JohnD",
|
|
355
|
+
"organization": "My Organization",
|
|
356
|
+
"po_box": "12",
|
|
357
|
+
"region": "Philadelphia",
|
|
358
|
+
"street": "Cambridge St",
|
|
359
|
+
"zip_code": "22313"
|
|
360
|
+
},
|
|
361
|
+
"routing": {
|
|
362
|
+
"send": {
|
|
363
|
+
"property": "data",
|
|
364
|
+
"propertyInDotNotation": false,
|
|
365
|
+
"type": "body",
|
|
366
|
+
"value": "={{ $value }}"
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
"displayOptions": {
|
|
370
|
+
"show": {
|
|
371
|
+
"resource": [
|
|
372
|
+
"Single QR Code"
|
|
373
|
+
],
|
|
374
|
+
"operation": [
|
|
375
|
+
"Dispatcher Qrcode Contact Post"
|
|
376
|
+
]
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"displayName": "Image",
|
|
382
|
+
"name": "image",
|
|
383
|
+
"type": "json",
|
|
384
|
+
"default": "{\n \"modules\": true,\n \"uri\": {}\n}",
|
|
385
|
+
"routing": {
|
|
386
|
+
"send": {
|
|
387
|
+
"property": "image",
|
|
388
|
+
"propertyInDotNotation": false,
|
|
389
|
+
"type": "body",
|
|
390
|
+
"value": "={{ JSON.parse($value) }}"
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
"displayOptions": {
|
|
394
|
+
"show": {
|
|
395
|
+
"resource": [
|
|
396
|
+
"Single QR Code"
|
|
397
|
+
],
|
|
398
|
+
"operation": [
|
|
399
|
+
"Dispatcher Qrcode Contact Post"
|
|
400
|
+
]
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"displayName": "Output",
|
|
406
|
+
"name": "output",
|
|
407
|
+
"type": "json",
|
|
408
|
+
"default": "{\n \"filename\": \"qrcode\"\n}",
|
|
409
|
+
"routing": {
|
|
410
|
+
"send": {
|
|
411
|
+
"property": "output",
|
|
412
|
+
"propertyInDotNotation": false,
|
|
413
|
+
"type": "body",
|
|
414
|
+
"value": "={{ JSON.parse($value) }}"
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
"displayOptions": {
|
|
418
|
+
"show": {
|
|
419
|
+
"resource": [
|
|
420
|
+
"Single QR Code"
|
|
421
|
+
],
|
|
422
|
+
"operation": [
|
|
423
|
+
"Dispatcher Qrcode Contact Post"
|
|
424
|
+
]
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"displayName": "Size",
|
|
430
|
+
"name": "size",
|
|
431
|
+
"type": "json",
|
|
432
|
+
"default": "{\n \"quiet_zone\": 4,\n \"width\": 200\n}",
|
|
433
|
+
"routing": {
|
|
434
|
+
"send": {
|
|
435
|
+
"property": "size",
|
|
436
|
+
"propertyInDotNotation": false,
|
|
437
|
+
"type": "body",
|
|
438
|
+
"value": "={{ JSON.parse($value) }}"
|
|
439
|
+
}
|
|
440
|
+
},
|
|
441
|
+
"displayOptions": {
|
|
442
|
+
"show": {
|
|
443
|
+
"resource": [
|
|
444
|
+
"Single QR Code"
|
|
445
|
+
],
|
|
446
|
+
"operation": [
|
|
447
|
+
"Dispatcher Qrcode Contact Post"
|
|
448
|
+
]
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"displayName": "Style",
|
|
454
|
+
"name": "style",
|
|
455
|
+
"type": "json",
|
|
456
|
+
"default": "{\n \"background\": {\n \"color\": \"#c2fce6\"\n },\n \"inner_eye\": {\n \"color\": \"black\"\n },\n \"module\": {},\n \"outer_eye\": {\n \"color\": \"rgb(0, 0, 255)\"\n }\n}",
|
|
457
|
+
"routing": {
|
|
458
|
+
"send": {
|
|
459
|
+
"property": "style",
|
|
460
|
+
"propertyInDotNotation": false,
|
|
461
|
+
"type": "body",
|
|
462
|
+
"value": "={{ JSON.parse($value) }}"
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
"displayOptions": {
|
|
466
|
+
"show": {
|
|
467
|
+
"resource": [
|
|
468
|
+
"Single QR Code"
|
|
469
|
+
],
|
|
470
|
+
"operation": [
|
|
471
|
+
"Dispatcher Qrcode Contact Post"
|
|
472
|
+
]
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"displayName": "Byvalue API Key",
|
|
478
|
+
"name": "security_byvalue",
|
|
479
|
+
"type": "string",
|
|
480
|
+
"default": "",
|
|
481
|
+
"description": "Connection to LinQR can be made through the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >Byvalue proxy</a>. The use of LinQR API is billed based on actual consumption and price per 1,000 requests. Using Byvalue gives you access to all API functionalities without the need to purchase any subscription. After registering in the Byvalue, an access key is generated that is used to connect to the API. More information about this connection method or pricing can be found directly in the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing in Byvalue</a>.\n\n<a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Checkout with Byvalue\" src=\"https://byvalue-static-resources.s3.eu-central-1.amazonaws.com/byvalue-badges/bvlu_btn_dark.png\"></a>",
|
|
482
|
+
"required": false,
|
|
483
|
+
"routing": {
|
|
484
|
+
"request": {
|
|
485
|
+
"headers": {
|
|
486
|
+
"Byvalue-Token": "={{ $value }}"
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
"displayOptions": {
|
|
491
|
+
"show": {
|
|
492
|
+
"resource": [
|
|
493
|
+
"Single QR Code"
|
|
494
|
+
],
|
|
495
|
+
"operation": [
|
|
496
|
+
"Dispatcher Qrcode Contact Post"
|
|
497
|
+
]
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"displayName": "X Rapid API Key (Header)",
|
|
503
|
+
"name": "security_rapidapi",
|
|
504
|
+
"type": "string",
|
|
505
|
+
"default": "",
|
|
506
|
+
"description": "The connection to LinQR can be made through a <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >RapidAPI proxy</a>. RapidAPI is a service that manages the use of API and keys while being an API load balancer. Access is granted on a subscription basis. LinQR subscriptions have different plans: `BASIC`, `PRO`, `ULTRA` and `MEGA`. They differ in the number of available functionalities and can be adjusted to the expected level of service usage. After registering at the RapidAPI, you can generate a key that will be used to authorize the client in the LinQR. More details on usage limits or pricing can be found directly on the <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing at the RapidAPI Hub</a>.\n\nIf you do not find a plan tailored to your needs in RapidAPI, contact us directly: we can prepare a custom subscription plan according to your needs.\n\n<a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Connect on RapidAPI\" src=\"https://files.readme.io/7002e7f-c563a12-rapidapi-badge-dark.png\"></a>",
|
|
507
|
+
"required": false,
|
|
508
|
+
"routing": {
|
|
509
|
+
"request": {
|
|
510
|
+
"headers": {
|
|
511
|
+
"X-RapidAPI-Key": "={{ $value }}"
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
},
|
|
515
|
+
"displayOptions": {
|
|
516
|
+
"show": {
|
|
517
|
+
"resource": [
|
|
518
|
+
"Single QR Code"
|
|
519
|
+
],
|
|
520
|
+
"operation": [
|
|
521
|
+
"Dispatcher Qrcode Contact Post"
|
|
522
|
+
]
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"displayName": "POST /qrcode/crypto",
|
|
528
|
+
"name": "operation",
|
|
529
|
+
"type": "notice",
|
|
530
|
+
"typeOptions": {
|
|
531
|
+
"theme": "info"
|
|
532
|
+
},
|
|
533
|
+
"default": "",
|
|
534
|
+
"displayOptions": {
|
|
535
|
+
"show": {
|
|
536
|
+
"resource": [
|
|
537
|
+
"Single QR Code"
|
|
538
|
+
],
|
|
539
|
+
"operation": [
|
|
540
|
+
"Dispatcher Qrcode Crypto Post"
|
|
541
|
+
]
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"required": true,
|
|
547
|
+
"displayName": "Data",
|
|
548
|
+
"name": "data",
|
|
549
|
+
"type": "json",
|
|
550
|
+
"default": "{\n \"address\": \"1KXi...\",\n \"amount\": 0.001,\n \"label\": \"John Doe\",\n \"message\": \"Some message\"\n}",
|
|
551
|
+
"routing": {
|
|
552
|
+
"send": {
|
|
553
|
+
"property": "data",
|
|
554
|
+
"propertyInDotNotation": false,
|
|
555
|
+
"type": "body",
|
|
556
|
+
"value": "={{ JSON.parse($value) }}"
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
"displayOptions": {
|
|
560
|
+
"show": {
|
|
561
|
+
"resource": [
|
|
562
|
+
"Single QR Code"
|
|
563
|
+
],
|
|
564
|
+
"operation": [
|
|
565
|
+
"Dispatcher Qrcode Crypto Post"
|
|
566
|
+
]
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"displayName": "Image",
|
|
572
|
+
"name": "image",
|
|
573
|
+
"type": "json",
|
|
574
|
+
"default": "{\n \"modules\": true,\n \"uri\": {}\n}",
|
|
575
|
+
"routing": {
|
|
576
|
+
"send": {
|
|
577
|
+
"property": "image",
|
|
578
|
+
"propertyInDotNotation": false,
|
|
579
|
+
"type": "body",
|
|
580
|
+
"value": "={{ JSON.parse($value) }}"
|
|
581
|
+
}
|
|
582
|
+
},
|
|
583
|
+
"displayOptions": {
|
|
584
|
+
"show": {
|
|
585
|
+
"resource": [
|
|
586
|
+
"Single QR Code"
|
|
587
|
+
],
|
|
588
|
+
"operation": [
|
|
589
|
+
"Dispatcher Qrcode Crypto Post"
|
|
590
|
+
]
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"displayName": "Output",
|
|
596
|
+
"name": "output",
|
|
597
|
+
"type": "json",
|
|
598
|
+
"default": "{\n \"filename\": \"qrcode\"\n}",
|
|
599
|
+
"routing": {
|
|
600
|
+
"send": {
|
|
601
|
+
"property": "output",
|
|
602
|
+
"propertyInDotNotation": false,
|
|
603
|
+
"type": "body",
|
|
604
|
+
"value": "={{ JSON.parse($value) }}"
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
"displayOptions": {
|
|
608
|
+
"show": {
|
|
609
|
+
"resource": [
|
|
610
|
+
"Single QR Code"
|
|
611
|
+
],
|
|
612
|
+
"operation": [
|
|
613
|
+
"Dispatcher Qrcode Crypto Post"
|
|
614
|
+
]
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"displayName": "Size",
|
|
620
|
+
"name": "size",
|
|
621
|
+
"type": "json",
|
|
622
|
+
"default": "{\n \"quiet_zone\": 4,\n \"width\": 200\n}",
|
|
623
|
+
"routing": {
|
|
624
|
+
"send": {
|
|
625
|
+
"property": "size",
|
|
626
|
+
"propertyInDotNotation": false,
|
|
627
|
+
"type": "body",
|
|
628
|
+
"value": "={{ JSON.parse($value) }}"
|
|
629
|
+
}
|
|
630
|
+
},
|
|
631
|
+
"displayOptions": {
|
|
632
|
+
"show": {
|
|
633
|
+
"resource": [
|
|
634
|
+
"Single QR Code"
|
|
635
|
+
],
|
|
636
|
+
"operation": [
|
|
637
|
+
"Dispatcher Qrcode Crypto Post"
|
|
638
|
+
]
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"displayName": "Style",
|
|
644
|
+
"name": "style",
|
|
645
|
+
"type": "json",
|
|
646
|
+
"default": "{\n \"background\": {\n \"color\": \"#c2fce6\"\n },\n \"inner_eye\": {\n \"color\": \"black\"\n },\n \"module\": {},\n \"outer_eye\": {\n \"color\": \"rgb(0, 0, 255)\"\n }\n}",
|
|
647
|
+
"routing": {
|
|
648
|
+
"send": {
|
|
649
|
+
"property": "style",
|
|
650
|
+
"propertyInDotNotation": false,
|
|
651
|
+
"type": "body",
|
|
652
|
+
"value": "={{ JSON.parse($value) }}"
|
|
653
|
+
}
|
|
654
|
+
},
|
|
655
|
+
"displayOptions": {
|
|
656
|
+
"show": {
|
|
657
|
+
"resource": [
|
|
658
|
+
"Single QR Code"
|
|
659
|
+
],
|
|
660
|
+
"operation": [
|
|
661
|
+
"Dispatcher Qrcode Crypto Post"
|
|
662
|
+
]
|
|
663
|
+
}
|
|
664
|
+
}
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"displayName": "Byvalue API Key",
|
|
668
|
+
"name": "security_byvalue",
|
|
669
|
+
"type": "string",
|
|
670
|
+
"default": "",
|
|
671
|
+
"description": "Connection to LinQR can be made through the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >Byvalue proxy</a>. The use of LinQR API is billed based on actual consumption and price per 1,000 requests. Using Byvalue gives you access to all API functionalities without the need to purchase any subscription. After registering in the Byvalue, an access key is generated that is used to connect to the API. More information about this connection method or pricing can be found directly in the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing in Byvalue</a>.\n\n<a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Checkout with Byvalue\" src=\"https://byvalue-static-resources.s3.eu-central-1.amazonaws.com/byvalue-badges/bvlu_btn_dark.png\"></a>",
|
|
672
|
+
"required": false,
|
|
673
|
+
"routing": {
|
|
674
|
+
"request": {
|
|
675
|
+
"headers": {
|
|
676
|
+
"Byvalue-Token": "={{ $value }}"
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
"displayOptions": {
|
|
681
|
+
"show": {
|
|
682
|
+
"resource": [
|
|
683
|
+
"Single QR Code"
|
|
684
|
+
],
|
|
685
|
+
"operation": [
|
|
686
|
+
"Dispatcher Qrcode Crypto Post"
|
|
687
|
+
]
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"displayName": "X Rapid API Key (Header)",
|
|
693
|
+
"name": "security_rapidapi",
|
|
694
|
+
"type": "string",
|
|
695
|
+
"default": "",
|
|
696
|
+
"description": "The connection to LinQR can be made through a <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >RapidAPI proxy</a>. RapidAPI is a service that manages the use of API and keys while being an API load balancer. Access is granted on a subscription basis. LinQR subscriptions have different plans: `BASIC`, `PRO`, `ULTRA` and `MEGA`. They differ in the number of available functionalities and can be adjusted to the expected level of service usage. After registering at the RapidAPI, you can generate a key that will be used to authorize the client in the LinQR. More details on usage limits or pricing can be found directly on the <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing at the RapidAPI Hub</a>.\n\nIf you do not find a plan tailored to your needs in RapidAPI, contact us directly: we can prepare a custom subscription plan according to your needs.\n\n<a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Connect on RapidAPI\" src=\"https://files.readme.io/7002e7f-c563a12-rapidapi-badge-dark.png\"></a>",
|
|
697
|
+
"required": false,
|
|
698
|
+
"routing": {
|
|
699
|
+
"request": {
|
|
700
|
+
"headers": {
|
|
701
|
+
"X-RapidAPI-Key": "={{ $value }}"
|
|
702
|
+
}
|
|
703
|
+
}
|
|
704
|
+
},
|
|
705
|
+
"displayOptions": {
|
|
706
|
+
"show": {
|
|
707
|
+
"resource": [
|
|
708
|
+
"Single QR Code"
|
|
709
|
+
],
|
|
710
|
+
"operation": [
|
|
711
|
+
"Dispatcher Qrcode Crypto Post"
|
|
712
|
+
]
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"displayName": "POST /qrcode/email",
|
|
718
|
+
"name": "operation",
|
|
719
|
+
"type": "notice",
|
|
720
|
+
"typeOptions": {
|
|
721
|
+
"theme": "info"
|
|
722
|
+
},
|
|
723
|
+
"default": "",
|
|
724
|
+
"displayOptions": {
|
|
725
|
+
"show": {
|
|
726
|
+
"resource": [
|
|
727
|
+
"Single QR Code"
|
|
728
|
+
],
|
|
729
|
+
"operation": [
|
|
730
|
+
"Dispatcher Qrcode Email Post"
|
|
731
|
+
]
|
|
732
|
+
}
|
|
733
|
+
}
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"required": true,
|
|
737
|
+
"displayName": "Data",
|
|
738
|
+
"name": "data",
|
|
739
|
+
"type": "json",
|
|
740
|
+
"default": "{\n \"body\": \"Example message body for Email QRCode.\\n\\nRegards,\\nLinQR\",\n \"cc\": {},\n \"subject\": \"Example subject\",\n \"to\": {}\n}",
|
|
741
|
+
"routing": {
|
|
742
|
+
"send": {
|
|
743
|
+
"property": "data",
|
|
744
|
+
"propertyInDotNotation": false,
|
|
745
|
+
"type": "body",
|
|
746
|
+
"value": "={{ JSON.parse($value) }}"
|
|
747
|
+
}
|
|
748
|
+
},
|
|
749
|
+
"displayOptions": {
|
|
750
|
+
"show": {
|
|
751
|
+
"resource": [
|
|
752
|
+
"Single QR Code"
|
|
753
|
+
],
|
|
754
|
+
"operation": [
|
|
755
|
+
"Dispatcher Qrcode Email Post"
|
|
756
|
+
]
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"displayName": "Image",
|
|
762
|
+
"name": "image",
|
|
763
|
+
"type": "json",
|
|
764
|
+
"default": "{\n \"modules\": true,\n \"uri\": {}\n}",
|
|
765
|
+
"routing": {
|
|
766
|
+
"send": {
|
|
767
|
+
"property": "image",
|
|
768
|
+
"propertyInDotNotation": false,
|
|
769
|
+
"type": "body",
|
|
770
|
+
"value": "={{ JSON.parse($value) }}"
|
|
771
|
+
}
|
|
772
|
+
},
|
|
773
|
+
"displayOptions": {
|
|
774
|
+
"show": {
|
|
775
|
+
"resource": [
|
|
776
|
+
"Single QR Code"
|
|
777
|
+
],
|
|
778
|
+
"operation": [
|
|
779
|
+
"Dispatcher Qrcode Email Post"
|
|
780
|
+
]
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"displayName": "Output",
|
|
786
|
+
"name": "output",
|
|
787
|
+
"type": "json",
|
|
788
|
+
"default": "{\n \"filename\": \"qrcode\"\n}",
|
|
789
|
+
"routing": {
|
|
790
|
+
"send": {
|
|
791
|
+
"property": "output",
|
|
792
|
+
"propertyInDotNotation": false,
|
|
793
|
+
"type": "body",
|
|
794
|
+
"value": "={{ JSON.parse($value) }}"
|
|
795
|
+
}
|
|
796
|
+
},
|
|
797
|
+
"displayOptions": {
|
|
798
|
+
"show": {
|
|
799
|
+
"resource": [
|
|
800
|
+
"Single QR Code"
|
|
801
|
+
],
|
|
802
|
+
"operation": [
|
|
803
|
+
"Dispatcher Qrcode Email Post"
|
|
804
|
+
]
|
|
805
|
+
}
|
|
806
|
+
}
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"displayName": "Size",
|
|
810
|
+
"name": "size",
|
|
811
|
+
"type": "json",
|
|
812
|
+
"default": "{\n \"quiet_zone\": 4,\n \"width\": 200\n}",
|
|
813
|
+
"routing": {
|
|
814
|
+
"send": {
|
|
815
|
+
"property": "size",
|
|
816
|
+
"propertyInDotNotation": false,
|
|
817
|
+
"type": "body",
|
|
818
|
+
"value": "={{ JSON.parse($value) }}"
|
|
819
|
+
}
|
|
820
|
+
},
|
|
821
|
+
"displayOptions": {
|
|
822
|
+
"show": {
|
|
823
|
+
"resource": [
|
|
824
|
+
"Single QR Code"
|
|
825
|
+
],
|
|
826
|
+
"operation": [
|
|
827
|
+
"Dispatcher Qrcode Email Post"
|
|
828
|
+
]
|
|
829
|
+
}
|
|
830
|
+
}
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"displayName": "Style",
|
|
834
|
+
"name": "style",
|
|
835
|
+
"type": "json",
|
|
836
|
+
"default": "{\n \"background\": {\n \"color\": \"#c2fce6\"\n },\n \"inner_eye\": {\n \"color\": \"black\"\n },\n \"module\": {},\n \"outer_eye\": {\n \"color\": \"rgb(0, 0, 255)\"\n }\n}",
|
|
837
|
+
"routing": {
|
|
838
|
+
"send": {
|
|
839
|
+
"property": "style",
|
|
840
|
+
"propertyInDotNotation": false,
|
|
841
|
+
"type": "body",
|
|
842
|
+
"value": "={{ JSON.parse($value) }}"
|
|
843
|
+
}
|
|
844
|
+
},
|
|
845
|
+
"displayOptions": {
|
|
846
|
+
"show": {
|
|
847
|
+
"resource": [
|
|
848
|
+
"Single QR Code"
|
|
849
|
+
],
|
|
850
|
+
"operation": [
|
|
851
|
+
"Dispatcher Qrcode Email Post"
|
|
852
|
+
]
|
|
853
|
+
}
|
|
854
|
+
}
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"displayName": "Byvalue API Key",
|
|
858
|
+
"name": "security_byvalue",
|
|
859
|
+
"type": "string",
|
|
860
|
+
"default": "",
|
|
861
|
+
"description": "Connection to LinQR can be made through the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >Byvalue proxy</a>. The use of LinQR API is billed based on actual consumption and price per 1,000 requests. Using Byvalue gives you access to all API functionalities without the need to purchase any subscription. After registering in the Byvalue, an access key is generated that is used to connect to the API. More information about this connection method or pricing can be found directly in the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing in Byvalue</a>.\n\n<a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Checkout with Byvalue\" src=\"https://byvalue-static-resources.s3.eu-central-1.amazonaws.com/byvalue-badges/bvlu_btn_dark.png\"></a>",
|
|
862
|
+
"required": false,
|
|
863
|
+
"routing": {
|
|
864
|
+
"request": {
|
|
865
|
+
"headers": {
|
|
866
|
+
"Byvalue-Token": "={{ $value }}"
|
|
867
|
+
}
|
|
868
|
+
}
|
|
869
|
+
},
|
|
870
|
+
"displayOptions": {
|
|
871
|
+
"show": {
|
|
872
|
+
"resource": [
|
|
873
|
+
"Single QR Code"
|
|
874
|
+
],
|
|
875
|
+
"operation": [
|
|
876
|
+
"Dispatcher Qrcode Email Post"
|
|
877
|
+
]
|
|
878
|
+
}
|
|
879
|
+
}
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
"displayName": "X Rapid API Key (Header)",
|
|
883
|
+
"name": "security_rapidapi",
|
|
884
|
+
"type": "string",
|
|
885
|
+
"default": "",
|
|
886
|
+
"description": "The connection to LinQR can be made through a <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >RapidAPI proxy</a>. RapidAPI is a service that manages the use of API and keys while being an API load balancer. Access is granted on a subscription basis. LinQR subscriptions have different plans: `BASIC`, `PRO`, `ULTRA` and `MEGA`. They differ in the number of available functionalities and can be adjusted to the expected level of service usage. After registering at the RapidAPI, you can generate a key that will be used to authorize the client in the LinQR. More details on usage limits or pricing can be found directly on the <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing at the RapidAPI Hub</a>.\n\nIf you do not find a plan tailored to your needs in RapidAPI, contact us directly: we can prepare a custom subscription plan according to your needs.\n\n<a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Connect on RapidAPI\" src=\"https://files.readme.io/7002e7f-c563a12-rapidapi-badge-dark.png\"></a>",
|
|
887
|
+
"required": false,
|
|
888
|
+
"routing": {
|
|
889
|
+
"request": {
|
|
890
|
+
"headers": {
|
|
891
|
+
"X-RapidAPI-Key": "={{ $value }}"
|
|
892
|
+
}
|
|
893
|
+
}
|
|
894
|
+
},
|
|
895
|
+
"displayOptions": {
|
|
896
|
+
"show": {
|
|
897
|
+
"resource": [
|
|
898
|
+
"Single QR Code"
|
|
899
|
+
],
|
|
900
|
+
"operation": [
|
|
901
|
+
"Dispatcher Qrcode Email Post"
|
|
902
|
+
]
|
|
903
|
+
}
|
|
904
|
+
}
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
"displayName": "POST /qrcode/geo",
|
|
908
|
+
"name": "operation",
|
|
909
|
+
"type": "notice",
|
|
910
|
+
"typeOptions": {
|
|
911
|
+
"theme": "info"
|
|
912
|
+
},
|
|
913
|
+
"default": "",
|
|
914
|
+
"displayOptions": {
|
|
915
|
+
"show": {
|
|
916
|
+
"resource": [
|
|
917
|
+
"Single QR Code"
|
|
918
|
+
],
|
|
919
|
+
"operation": [
|
|
920
|
+
"Dispatcher Qrcode Geo Post"
|
|
921
|
+
]
|
|
922
|
+
}
|
|
923
|
+
}
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"required": true,
|
|
927
|
+
"displayName": "Data",
|
|
928
|
+
"name": "data",
|
|
929
|
+
"type": "json",
|
|
930
|
+
"default": "{\n \"latitude\": 40.689274,\n \"longitude\": -74.044586\n}",
|
|
931
|
+
"routing": {
|
|
932
|
+
"send": {
|
|
933
|
+
"property": "data",
|
|
934
|
+
"propertyInDotNotation": false,
|
|
935
|
+
"type": "body",
|
|
936
|
+
"value": "={{ JSON.parse($value) }}"
|
|
937
|
+
}
|
|
938
|
+
},
|
|
939
|
+
"displayOptions": {
|
|
940
|
+
"show": {
|
|
941
|
+
"resource": [
|
|
942
|
+
"Single QR Code"
|
|
943
|
+
],
|
|
944
|
+
"operation": [
|
|
945
|
+
"Dispatcher Qrcode Geo Post"
|
|
946
|
+
]
|
|
947
|
+
}
|
|
948
|
+
}
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"displayName": "Image",
|
|
952
|
+
"name": "image",
|
|
953
|
+
"type": "json",
|
|
954
|
+
"default": "{\n \"modules\": true,\n \"uri\": {}\n}",
|
|
955
|
+
"routing": {
|
|
956
|
+
"send": {
|
|
957
|
+
"property": "image",
|
|
958
|
+
"propertyInDotNotation": false,
|
|
959
|
+
"type": "body",
|
|
960
|
+
"value": "={{ JSON.parse($value) }}"
|
|
961
|
+
}
|
|
962
|
+
},
|
|
963
|
+
"displayOptions": {
|
|
964
|
+
"show": {
|
|
965
|
+
"resource": [
|
|
966
|
+
"Single QR Code"
|
|
967
|
+
],
|
|
968
|
+
"operation": [
|
|
969
|
+
"Dispatcher Qrcode Geo Post"
|
|
970
|
+
]
|
|
971
|
+
}
|
|
972
|
+
}
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"displayName": "Output",
|
|
976
|
+
"name": "output",
|
|
977
|
+
"type": "json",
|
|
978
|
+
"default": "{\n \"filename\": \"qrcode\"\n}",
|
|
979
|
+
"routing": {
|
|
980
|
+
"send": {
|
|
981
|
+
"property": "output",
|
|
982
|
+
"propertyInDotNotation": false,
|
|
983
|
+
"type": "body",
|
|
984
|
+
"value": "={{ JSON.parse($value) }}"
|
|
985
|
+
}
|
|
986
|
+
},
|
|
987
|
+
"displayOptions": {
|
|
988
|
+
"show": {
|
|
989
|
+
"resource": [
|
|
990
|
+
"Single QR Code"
|
|
991
|
+
],
|
|
992
|
+
"operation": [
|
|
993
|
+
"Dispatcher Qrcode Geo Post"
|
|
994
|
+
]
|
|
995
|
+
}
|
|
996
|
+
}
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"displayName": "Size",
|
|
1000
|
+
"name": "size",
|
|
1001
|
+
"type": "json",
|
|
1002
|
+
"default": "{\n \"quiet_zone\": 4,\n \"width\": 200\n}",
|
|
1003
|
+
"routing": {
|
|
1004
|
+
"send": {
|
|
1005
|
+
"property": "size",
|
|
1006
|
+
"propertyInDotNotation": false,
|
|
1007
|
+
"type": "body",
|
|
1008
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1009
|
+
}
|
|
1010
|
+
},
|
|
1011
|
+
"displayOptions": {
|
|
1012
|
+
"show": {
|
|
1013
|
+
"resource": [
|
|
1014
|
+
"Single QR Code"
|
|
1015
|
+
],
|
|
1016
|
+
"operation": [
|
|
1017
|
+
"Dispatcher Qrcode Geo Post"
|
|
1018
|
+
]
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
"displayName": "Style",
|
|
1024
|
+
"name": "style",
|
|
1025
|
+
"type": "json",
|
|
1026
|
+
"default": "{\n \"background\": {\n \"color\": \"#c2fce6\"\n },\n \"inner_eye\": {\n \"color\": \"black\"\n },\n \"module\": {},\n \"outer_eye\": {\n \"color\": \"rgb(0, 0, 255)\"\n }\n}",
|
|
1027
|
+
"routing": {
|
|
1028
|
+
"send": {
|
|
1029
|
+
"property": "style",
|
|
1030
|
+
"propertyInDotNotation": false,
|
|
1031
|
+
"type": "body",
|
|
1032
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1035
|
+
"displayOptions": {
|
|
1036
|
+
"show": {
|
|
1037
|
+
"resource": [
|
|
1038
|
+
"Single QR Code"
|
|
1039
|
+
],
|
|
1040
|
+
"operation": [
|
|
1041
|
+
"Dispatcher Qrcode Geo Post"
|
|
1042
|
+
]
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"displayName": "Byvalue API Key",
|
|
1048
|
+
"name": "security_byvalue",
|
|
1049
|
+
"type": "string",
|
|
1050
|
+
"default": "",
|
|
1051
|
+
"description": "Connection to LinQR can be made through the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >Byvalue proxy</a>. The use of LinQR API is billed based on actual consumption and price per 1,000 requests. Using Byvalue gives you access to all API functionalities without the need to purchase any subscription. After registering in the Byvalue, an access key is generated that is used to connect to the API. More information about this connection method or pricing can be found directly in the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing in Byvalue</a>.\n\n<a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Checkout with Byvalue\" src=\"https://byvalue-static-resources.s3.eu-central-1.amazonaws.com/byvalue-badges/bvlu_btn_dark.png\"></a>",
|
|
1052
|
+
"required": false,
|
|
1053
|
+
"routing": {
|
|
1054
|
+
"request": {
|
|
1055
|
+
"headers": {
|
|
1056
|
+
"Byvalue-Token": "={{ $value }}"
|
|
1057
|
+
}
|
|
1058
|
+
}
|
|
1059
|
+
},
|
|
1060
|
+
"displayOptions": {
|
|
1061
|
+
"show": {
|
|
1062
|
+
"resource": [
|
|
1063
|
+
"Single QR Code"
|
|
1064
|
+
],
|
|
1065
|
+
"operation": [
|
|
1066
|
+
"Dispatcher Qrcode Geo Post"
|
|
1067
|
+
]
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"displayName": "X Rapid API Key (Header)",
|
|
1073
|
+
"name": "security_rapidapi",
|
|
1074
|
+
"type": "string",
|
|
1075
|
+
"default": "",
|
|
1076
|
+
"description": "The connection to LinQR can be made through a <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >RapidAPI proxy</a>. RapidAPI is a service that manages the use of API and keys while being an API load balancer. Access is granted on a subscription basis. LinQR subscriptions have different plans: `BASIC`, `PRO`, `ULTRA` and `MEGA`. They differ in the number of available functionalities and can be adjusted to the expected level of service usage. After registering at the RapidAPI, you can generate a key that will be used to authorize the client in the LinQR. More details on usage limits or pricing can be found directly on the <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing at the RapidAPI Hub</a>.\n\nIf you do not find a plan tailored to your needs in RapidAPI, contact us directly: we can prepare a custom subscription plan according to your needs.\n\n<a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Connect on RapidAPI\" src=\"https://files.readme.io/7002e7f-c563a12-rapidapi-badge-dark.png\"></a>",
|
|
1077
|
+
"required": false,
|
|
1078
|
+
"routing": {
|
|
1079
|
+
"request": {
|
|
1080
|
+
"headers": {
|
|
1081
|
+
"X-RapidAPI-Key": "={{ $value }}"
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1084
|
+
},
|
|
1085
|
+
"displayOptions": {
|
|
1086
|
+
"show": {
|
|
1087
|
+
"resource": [
|
|
1088
|
+
"Single QR Code"
|
|
1089
|
+
],
|
|
1090
|
+
"operation": [
|
|
1091
|
+
"Dispatcher Qrcode Geo Post"
|
|
1092
|
+
]
|
|
1093
|
+
}
|
|
1094
|
+
}
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
"displayName": "POST /qrcode/phone",
|
|
1098
|
+
"name": "operation",
|
|
1099
|
+
"type": "notice",
|
|
1100
|
+
"typeOptions": {
|
|
1101
|
+
"theme": "info"
|
|
1102
|
+
},
|
|
1103
|
+
"default": "",
|
|
1104
|
+
"displayOptions": {
|
|
1105
|
+
"show": {
|
|
1106
|
+
"resource": [
|
|
1107
|
+
"Single QR Code"
|
|
1108
|
+
],
|
|
1109
|
+
"operation": [
|
|
1110
|
+
"Dispatcher Qrcode Phone Post"
|
|
1111
|
+
]
|
|
1112
|
+
}
|
|
1113
|
+
}
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
"required": true,
|
|
1117
|
+
"displayName": "Data",
|
|
1118
|
+
"name": "data",
|
|
1119
|
+
"type": "json",
|
|
1120
|
+
"default": "{\n \"phone\": \"+1-701-5554-303\"\n}",
|
|
1121
|
+
"routing": {
|
|
1122
|
+
"send": {
|
|
1123
|
+
"property": "data",
|
|
1124
|
+
"propertyInDotNotation": false,
|
|
1125
|
+
"type": "body",
|
|
1126
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1127
|
+
}
|
|
1128
|
+
},
|
|
1129
|
+
"displayOptions": {
|
|
1130
|
+
"show": {
|
|
1131
|
+
"resource": [
|
|
1132
|
+
"Single QR Code"
|
|
1133
|
+
],
|
|
1134
|
+
"operation": [
|
|
1135
|
+
"Dispatcher Qrcode Phone Post"
|
|
1136
|
+
]
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
"displayName": "Image",
|
|
1142
|
+
"name": "image",
|
|
1143
|
+
"type": "json",
|
|
1144
|
+
"default": "{\n \"modules\": true,\n \"uri\": {}\n}",
|
|
1145
|
+
"routing": {
|
|
1146
|
+
"send": {
|
|
1147
|
+
"property": "image",
|
|
1148
|
+
"propertyInDotNotation": false,
|
|
1149
|
+
"type": "body",
|
|
1150
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1151
|
+
}
|
|
1152
|
+
},
|
|
1153
|
+
"displayOptions": {
|
|
1154
|
+
"show": {
|
|
1155
|
+
"resource": [
|
|
1156
|
+
"Single QR Code"
|
|
1157
|
+
],
|
|
1158
|
+
"operation": [
|
|
1159
|
+
"Dispatcher Qrcode Phone Post"
|
|
1160
|
+
]
|
|
1161
|
+
}
|
|
1162
|
+
}
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"displayName": "Output",
|
|
1166
|
+
"name": "output",
|
|
1167
|
+
"type": "json",
|
|
1168
|
+
"default": "{\n \"filename\": \"qrcode\"\n}",
|
|
1169
|
+
"routing": {
|
|
1170
|
+
"send": {
|
|
1171
|
+
"property": "output",
|
|
1172
|
+
"propertyInDotNotation": false,
|
|
1173
|
+
"type": "body",
|
|
1174
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1175
|
+
}
|
|
1176
|
+
},
|
|
1177
|
+
"displayOptions": {
|
|
1178
|
+
"show": {
|
|
1179
|
+
"resource": [
|
|
1180
|
+
"Single QR Code"
|
|
1181
|
+
],
|
|
1182
|
+
"operation": [
|
|
1183
|
+
"Dispatcher Qrcode Phone Post"
|
|
1184
|
+
]
|
|
1185
|
+
}
|
|
1186
|
+
}
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
"displayName": "Size",
|
|
1190
|
+
"name": "size",
|
|
1191
|
+
"type": "json",
|
|
1192
|
+
"default": "{\n \"quiet_zone\": 4,\n \"width\": 200\n}",
|
|
1193
|
+
"routing": {
|
|
1194
|
+
"send": {
|
|
1195
|
+
"property": "size",
|
|
1196
|
+
"propertyInDotNotation": false,
|
|
1197
|
+
"type": "body",
|
|
1198
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1199
|
+
}
|
|
1200
|
+
},
|
|
1201
|
+
"displayOptions": {
|
|
1202
|
+
"show": {
|
|
1203
|
+
"resource": [
|
|
1204
|
+
"Single QR Code"
|
|
1205
|
+
],
|
|
1206
|
+
"operation": [
|
|
1207
|
+
"Dispatcher Qrcode Phone Post"
|
|
1208
|
+
]
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
"displayName": "Style",
|
|
1214
|
+
"name": "style",
|
|
1215
|
+
"type": "json",
|
|
1216
|
+
"default": "{\n \"background\": {\n \"color\": \"#c2fce6\"\n },\n \"inner_eye\": {\n \"color\": \"black\"\n },\n \"module\": {},\n \"outer_eye\": {\n \"color\": \"rgb(0, 0, 255)\"\n }\n}",
|
|
1217
|
+
"routing": {
|
|
1218
|
+
"send": {
|
|
1219
|
+
"property": "style",
|
|
1220
|
+
"propertyInDotNotation": false,
|
|
1221
|
+
"type": "body",
|
|
1222
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1223
|
+
}
|
|
1224
|
+
},
|
|
1225
|
+
"displayOptions": {
|
|
1226
|
+
"show": {
|
|
1227
|
+
"resource": [
|
|
1228
|
+
"Single QR Code"
|
|
1229
|
+
],
|
|
1230
|
+
"operation": [
|
|
1231
|
+
"Dispatcher Qrcode Phone Post"
|
|
1232
|
+
]
|
|
1233
|
+
}
|
|
1234
|
+
}
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
"displayName": "Byvalue API Key",
|
|
1238
|
+
"name": "security_byvalue",
|
|
1239
|
+
"type": "string",
|
|
1240
|
+
"default": "",
|
|
1241
|
+
"description": "Connection to LinQR can be made through the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >Byvalue proxy</a>. The use of LinQR API is billed based on actual consumption and price per 1,000 requests. Using Byvalue gives you access to all API functionalities without the need to purchase any subscription. After registering in the Byvalue, an access key is generated that is used to connect to the API. More information about this connection method or pricing can be found directly in the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing in Byvalue</a>.\n\n<a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Checkout with Byvalue\" src=\"https://byvalue-static-resources.s3.eu-central-1.amazonaws.com/byvalue-badges/bvlu_btn_dark.png\"></a>",
|
|
1242
|
+
"required": false,
|
|
1243
|
+
"routing": {
|
|
1244
|
+
"request": {
|
|
1245
|
+
"headers": {
|
|
1246
|
+
"Byvalue-Token": "={{ $value }}"
|
|
1247
|
+
}
|
|
1248
|
+
}
|
|
1249
|
+
},
|
|
1250
|
+
"displayOptions": {
|
|
1251
|
+
"show": {
|
|
1252
|
+
"resource": [
|
|
1253
|
+
"Single QR Code"
|
|
1254
|
+
],
|
|
1255
|
+
"operation": [
|
|
1256
|
+
"Dispatcher Qrcode Phone Post"
|
|
1257
|
+
]
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1260
|
+
},
|
|
1261
|
+
{
|
|
1262
|
+
"displayName": "X Rapid API Key (Header)",
|
|
1263
|
+
"name": "security_rapidapi",
|
|
1264
|
+
"type": "string",
|
|
1265
|
+
"default": "",
|
|
1266
|
+
"description": "The connection to LinQR can be made through a <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >RapidAPI proxy</a>. RapidAPI is a service that manages the use of API and keys while being an API load balancer. Access is granted on a subscription basis. LinQR subscriptions have different plans: `BASIC`, `PRO`, `ULTRA` and `MEGA`. They differ in the number of available functionalities and can be adjusted to the expected level of service usage. After registering at the RapidAPI, you can generate a key that will be used to authorize the client in the LinQR. More details on usage limits or pricing can be found directly on the <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing at the RapidAPI Hub</a>.\n\nIf you do not find a plan tailored to your needs in RapidAPI, contact us directly: we can prepare a custom subscription plan according to your needs.\n\n<a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Connect on RapidAPI\" src=\"https://files.readme.io/7002e7f-c563a12-rapidapi-badge-dark.png\"></a>",
|
|
1267
|
+
"required": false,
|
|
1268
|
+
"routing": {
|
|
1269
|
+
"request": {
|
|
1270
|
+
"headers": {
|
|
1271
|
+
"X-RapidAPI-Key": "={{ $value }}"
|
|
1272
|
+
}
|
|
1273
|
+
}
|
|
1274
|
+
},
|
|
1275
|
+
"displayOptions": {
|
|
1276
|
+
"show": {
|
|
1277
|
+
"resource": [
|
|
1278
|
+
"Single QR Code"
|
|
1279
|
+
],
|
|
1280
|
+
"operation": [
|
|
1281
|
+
"Dispatcher Qrcode Phone Post"
|
|
1282
|
+
]
|
|
1283
|
+
}
|
|
1284
|
+
}
|
|
1285
|
+
},
|
|
1286
|
+
{
|
|
1287
|
+
"displayName": "POST /qrcode/sms",
|
|
1288
|
+
"name": "operation",
|
|
1289
|
+
"type": "notice",
|
|
1290
|
+
"typeOptions": {
|
|
1291
|
+
"theme": "info"
|
|
1292
|
+
},
|
|
1293
|
+
"default": "",
|
|
1294
|
+
"displayOptions": {
|
|
1295
|
+
"show": {
|
|
1296
|
+
"resource": [
|
|
1297
|
+
"Single QR Code"
|
|
1298
|
+
],
|
|
1299
|
+
"operation": [
|
|
1300
|
+
"Dispatcher Qrcode Sms Post"
|
|
1301
|
+
]
|
|
1302
|
+
}
|
|
1303
|
+
}
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"required": true,
|
|
1307
|
+
"displayName": "Data",
|
|
1308
|
+
"name": "data",
|
|
1309
|
+
"type": "json",
|
|
1310
|
+
"default": "{\n \"message\": \"Hey! Sent by LinQR\"\n}",
|
|
1311
|
+
"routing": {
|
|
1312
|
+
"send": {
|
|
1313
|
+
"property": "data",
|
|
1314
|
+
"propertyInDotNotation": false,
|
|
1315
|
+
"type": "body",
|
|
1316
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1317
|
+
}
|
|
1318
|
+
},
|
|
1319
|
+
"displayOptions": {
|
|
1320
|
+
"show": {
|
|
1321
|
+
"resource": [
|
|
1322
|
+
"Single QR Code"
|
|
1323
|
+
],
|
|
1324
|
+
"operation": [
|
|
1325
|
+
"Dispatcher Qrcode Sms Post"
|
|
1326
|
+
]
|
|
1327
|
+
}
|
|
1328
|
+
}
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
"displayName": "Image",
|
|
1332
|
+
"name": "image",
|
|
1333
|
+
"type": "json",
|
|
1334
|
+
"default": "{\n \"modules\": true,\n \"uri\": {}\n}",
|
|
1335
|
+
"routing": {
|
|
1336
|
+
"send": {
|
|
1337
|
+
"property": "image",
|
|
1338
|
+
"propertyInDotNotation": false,
|
|
1339
|
+
"type": "body",
|
|
1340
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1341
|
+
}
|
|
1342
|
+
},
|
|
1343
|
+
"displayOptions": {
|
|
1344
|
+
"show": {
|
|
1345
|
+
"resource": [
|
|
1346
|
+
"Single QR Code"
|
|
1347
|
+
],
|
|
1348
|
+
"operation": [
|
|
1349
|
+
"Dispatcher Qrcode Sms Post"
|
|
1350
|
+
]
|
|
1351
|
+
}
|
|
1352
|
+
}
|
|
1353
|
+
},
|
|
1354
|
+
{
|
|
1355
|
+
"displayName": "Output",
|
|
1356
|
+
"name": "output",
|
|
1357
|
+
"type": "json",
|
|
1358
|
+
"default": "{\n \"filename\": \"qrcode\"\n}",
|
|
1359
|
+
"routing": {
|
|
1360
|
+
"send": {
|
|
1361
|
+
"property": "output",
|
|
1362
|
+
"propertyInDotNotation": false,
|
|
1363
|
+
"type": "body",
|
|
1364
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1365
|
+
}
|
|
1366
|
+
},
|
|
1367
|
+
"displayOptions": {
|
|
1368
|
+
"show": {
|
|
1369
|
+
"resource": [
|
|
1370
|
+
"Single QR Code"
|
|
1371
|
+
],
|
|
1372
|
+
"operation": [
|
|
1373
|
+
"Dispatcher Qrcode Sms Post"
|
|
1374
|
+
]
|
|
1375
|
+
}
|
|
1376
|
+
}
|
|
1377
|
+
},
|
|
1378
|
+
{
|
|
1379
|
+
"displayName": "Size",
|
|
1380
|
+
"name": "size",
|
|
1381
|
+
"type": "json",
|
|
1382
|
+
"default": "{\n \"quiet_zone\": 4,\n \"width\": 200\n}",
|
|
1383
|
+
"routing": {
|
|
1384
|
+
"send": {
|
|
1385
|
+
"property": "size",
|
|
1386
|
+
"propertyInDotNotation": false,
|
|
1387
|
+
"type": "body",
|
|
1388
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1389
|
+
}
|
|
1390
|
+
},
|
|
1391
|
+
"displayOptions": {
|
|
1392
|
+
"show": {
|
|
1393
|
+
"resource": [
|
|
1394
|
+
"Single QR Code"
|
|
1395
|
+
],
|
|
1396
|
+
"operation": [
|
|
1397
|
+
"Dispatcher Qrcode Sms Post"
|
|
1398
|
+
]
|
|
1399
|
+
}
|
|
1400
|
+
}
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"displayName": "Style",
|
|
1404
|
+
"name": "style",
|
|
1405
|
+
"type": "json",
|
|
1406
|
+
"default": "{\n \"background\": {\n \"color\": \"#c2fce6\"\n },\n \"inner_eye\": {\n \"color\": \"black\"\n },\n \"module\": {},\n \"outer_eye\": {\n \"color\": \"rgb(0, 0, 255)\"\n }\n}",
|
|
1407
|
+
"routing": {
|
|
1408
|
+
"send": {
|
|
1409
|
+
"property": "style",
|
|
1410
|
+
"propertyInDotNotation": false,
|
|
1411
|
+
"type": "body",
|
|
1412
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1413
|
+
}
|
|
1414
|
+
},
|
|
1415
|
+
"displayOptions": {
|
|
1416
|
+
"show": {
|
|
1417
|
+
"resource": [
|
|
1418
|
+
"Single QR Code"
|
|
1419
|
+
],
|
|
1420
|
+
"operation": [
|
|
1421
|
+
"Dispatcher Qrcode Sms Post"
|
|
1422
|
+
]
|
|
1423
|
+
}
|
|
1424
|
+
}
|
|
1425
|
+
},
|
|
1426
|
+
{
|
|
1427
|
+
"displayName": "Byvalue API Key",
|
|
1428
|
+
"name": "security_byvalue",
|
|
1429
|
+
"type": "string",
|
|
1430
|
+
"default": "",
|
|
1431
|
+
"description": "Connection to LinQR can be made through the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >Byvalue proxy</a>. The use of LinQR API is billed based on actual consumption and price per 1,000 requests. Using Byvalue gives you access to all API functionalities without the need to purchase any subscription. After registering in the Byvalue, an access key is generated that is used to connect to the API. More information about this connection method or pricing can be found directly in the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing in Byvalue</a>.\n\n<a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Checkout with Byvalue\" src=\"https://byvalue-static-resources.s3.eu-central-1.amazonaws.com/byvalue-badges/bvlu_btn_dark.png\"></a>",
|
|
1432
|
+
"required": false,
|
|
1433
|
+
"routing": {
|
|
1434
|
+
"request": {
|
|
1435
|
+
"headers": {
|
|
1436
|
+
"Byvalue-Token": "={{ $value }}"
|
|
1437
|
+
}
|
|
1438
|
+
}
|
|
1439
|
+
},
|
|
1440
|
+
"displayOptions": {
|
|
1441
|
+
"show": {
|
|
1442
|
+
"resource": [
|
|
1443
|
+
"Single QR Code"
|
|
1444
|
+
],
|
|
1445
|
+
"operation": [
|
|
1446
|
+
"Dispatcher Qrcode Sms Post"
|
|
1447
|
+
]
|
|
1448
|
+
}
|
|
1449
|
+
}
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"displayName": "X Rapid API Key (Header)",
|
|
1453
|
+
"name": "security_rapidapi",
|
|
1454
|
+
"type": "string",
|
|
1455
|
+
"default": "",
|
|
1456
|
+
"description": "The connection to LinQR can be made through a <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >RapidAPI proxy</a>. RapidAPI is a service that manages the use of API and keys while being an API load balancer. Access is granted on a subscription basis. LinQR subscriptions have different plans: `BASIC`, `PRO`, `ULTRA` and `MEGA`. They differ in the number of available functionalities and can be adjusted to the expected level of service usage. After registering at the RapidAPI, you can generate a key that will be used to authorize the client in the LinQR. More details on usage limits or pricing can be found directly on the <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing at the RapidAPI Hub</a>.\n\nIf you do not find a plan tailored to your needs in RapidAPI, contact us directly: we can prepare a custom subscription plan according to your needs.\n\n<a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Connect on RapidAPI\" src=\"https://files.readme.io/7002e7f-c563a12-rapidapi-badge-dark.png\"></a>",
|
|
1457
|
+
"required": false,
|
|
1458
|
+
"routing": {
|
|
1459
|
+
"request": {
|
|
1460
|
+
"headers": {
|
|
1461
|
+
"X-RapidAPI-Key": "={{ $value }}"
|
|
1462
|
+
}
|
|
1463
|
+
}
|
|
1464
|
+
},
|
|
1465
|
+
"displayOptions": {
|
|
1466
|
+
"show": {
|
|
1467
|
+
"resource": [
|
|
1468
|
+
"Single QR Code"
|
|
1469
|
+
],
|
|
1470
|
+
"operation": [
|
|
1471
|
+
"Dispatcher Qrcode Sms Post"
|
|
1472
|
+
]
|
|
1473
|
+
}
|
|
1474
|
+
}
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"displayName": "POST /qrcode/text",
|
|
1478
|
+
"name": "operation",
|
|
1479
|
+
"type": "notice",
|
|
1480
|
+
"typeOptions": {
|
|
1481
|
+
"theme": "info"
|
|
1482
|
+
},
|
|
1483
|
+
"default": "",
|
|
1484
|
+
"displayOptions": {
|
|
1485
|
+
"show": {
|
|
1486
|
+
"resource": [
|
|
1487
|
+
"Single QR Code"
|
|
1488
|
+
],
|
|
1489
|
+
"operation": [
|
|
1490
|
+
"Dispatcher Qrcode Text Post"
|
|
1491
|
+
]
|
|
1492
|
+
}
|
|
1493
|
+
}
|
|
1494
|
+
},
|
|
1495
|
+
{
|
|
1496
|
+
"required": true,
|
|
1497
|
+
"displayName": "Data",
|
|
1498
|
+
"name": "data",
|
|
1499
|
+
"type": "string",
|
|
1500
|
+
"default": "https://linqr.app",
|
|
1501
|
+
"description": "Text to be encoded in the QR Code.",
|
|
1502
|
+
"routing": {
|
|
1503
|
+
"send": {
|
|
1504
|
+
"property": "data",
|
|
1505
|
+
"propertyInDotNotation": false,
|
|
1506
|
+
"type": "body",
|
|
1507
|
+
"value": "={{ $value }}"
|
|
1508
|
+
}
|
|
1509
|
+
},
|
|
1510
|
+
"displayOptions": {
|
|
1511
|
+
"show": {
|
|
1512
|
+
"resource": [
|
|
1513
|
+
"Single QR Code"
|
|
1514
|
+
],
|
|
1515
|
+
"operation": [
|
|
1516
|
+
"Dispatcher Qrcode Text Post"
|
|
1517
|
+
]
|
|
1518
|
+
}
|
|
1519
|
+
}
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
"displayName": "Image",
|
|
1523
|
+
"name": "image",
|
|
1524
|
+
"type": "json",
|
|
1525
|
+
"default": "{\n \"modules\": true,\n \"uri\": {}\n}",
|
|
1526
|
+
"routing": {
|
|
1527
|
+
"send": {
|
|
1528
|
+
"property": "image",
|
|
1529
|
+
"propertyInDotNotation": false,
|
|
1530
|
+
"type": "body",
|
|
1531
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1532
|
+
}
|
|
1533
|
+
},
|
|
1534
|
+
"displayOptions": {
|
|
1535
|
+
"show": {
|
|
1536
|
+
"resource": [
|
|
1537
|
+
"Single QR Code"
|
|
1538
|
+
],
|
|
1539
|
+
"operation": [
|
|
1540
|
+
"Dispatcher Qrcode Text Post"
|
|
1541
|
+
]
|
|
1542
|
+
}
|
|
1543
|
+
}
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
"displayName": "Output",
|
|
1547
|
+
"name": "output",
|
|
1548
|
+
"type": "json",
|
|
1549
|
+
"default": "{\n \"filename\": \"qrcode\"\n}",
|
|
1550
|
+
"routing": {
|
|
1551
|
+
"send": {
|
|
1552
|
+
"property": "output",
|
|
1553
|
+
"propertyInDotNotation": false,
|
|
1554
|
+
"type": "body",
|
|
1555
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1556
|
+
}
|
|
1557
|
+
},
|
|
1558
|
+
"displayOptions": {
|
|
1559
|
+
"show": {
|
|
1560
|
+
"resource": [
|
|
1561
|
+
"Single QR Code"
|
|
1562
|
+
],
|
|
1563
|
+
"operation": [
|
|
1564
|
+
"Dispatcher Qrcode Text Post"
|
|
1565
|
+
]
|
|
1566
|
+
}
|
|
1567
|
+
}
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"displayName": "Size",
|
|
1571
|
+
"name": "size",
|
|
1572
|
+
"type": "json",
|
|
1573
|
+
"default": "{\n \"quiet_zone\": 4,\n \"width\": 200\n}",
|
|
1574
|
+
"routing": {
|
|
1575
|
+
"send": {
|
|
1576
|
+
"property": "size",
|
|
1577
|
+
"propertyInDotNotation": false,
|
|
1578
|
+
"type": "body",
|
|
1579
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1580
|
+
}
|
|
1581
|
+
},
|
|
1582
|
+
"displayOptions": {
|
|
1583
|
+
"show": {
|
|
1584
|
+
"resource": [
|
|
1585
|
+
"Single QR Code"
|
|
1586
|
+
],
|
|
1587
|
+
"operation": [
|
|
1588
|
+
"Dispatcher Qrcode Text Post"
|
|
1589
|
+
]
|
|
1590
|
+
}
|
|
1591
|
+
}
|
|
1592
|
+
},
|
|
1593
|
+
{
|
|
1594
|
+
"displayName": "Style",
|
|
1595
|
+
"name": "style",
|
|
1596
|
+
"type": "json",
|
|
1597
|
+
"default": "{\n \"background\": {\n \"color\": \"#c2fce6\"\n },\n \"inner_eye\": {\n \"color\": \"black\"\n },\n \"module\": {},\n \"outer_eye\": {\n \"color\": \"rgb(0, 0, 255)\"\n }\n}",
|
|
1598
|
+
"routing": {
|
|
1599
|
+
"send": {
|
|
1600
|
+
"property": "style",
|
|
1601
|
+
"propertyInDotNotation": false,
|
|
1602
|
+
"type": "body",
|
|
1603
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1604
|
+
}
|
|
1605
|
+
},
|
|
1606
|
+
"displayOptions": {
|
|
1607
|
+
"show": {
|
|
1608
|
+
"resource": [
|
|
1609
|
+
"Single QR Code"
|
|
1610
|
+
],
|
|
1611
|
+
"operation": [
|
|
1612
|
+
"Dispatcher Qrcode Text Post"
|
|
1613
|
+
]
|
|
1614
|
+
}
|
|
1615
|
+
}
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"displayName": "Byvalue API Key",
|
|
1619
|
+
"name": "security_byvalue",
|
|
1620
|
+
"type": "string",
|
|
1621
|
+
"default": "",
|
|
1622
|
+
"description": "Connection to LinQR can be made through the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >Byvalue proxy</a>. The use of LinQR API is billed based on actual consumption and price per 1,000 requests. Using Byvalue gives you access to all API functionalities without the need to purchase any subscription. After registering in the Byvalue, an access key is generated that is used to connect to the API. More information about this connection method or pricing can be found directly in the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing in Byvalue</a>.\n\n<a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Checkout with Byvalue\" src=\"https://byvalue-static-resources.s3.eu-central-1.amazonaws.com/byvalue-badges/bvlu_btn_dark.png\"></a>",
|
|
1623
|
+
"required": false,
|
|
1624
|
+
"routing": {
|
|
1625
|
+
"request": {
|
|
1626
|
+
"headers": {
|
|
1627
|
+
"Byvalue-Token": "={{ $value }}"
|
|
1628
|
+
}
|
|
1629
|
+
}
|
|
1630
|
+
},
|
|
1631
|
+
"displayOptions": {
|
|
1632
|
+
"show": {
|
|
1633
|
+
"resource": [
|
|
1634
|
+
"Single QR Code"
|
|
1635
|
+
],
|
|
1636
|
+
"operation": [
|
|
1637
|
+
"Dispatcher Qrcode Text Post"
|
|
1638
|
+
]
|
|
1639
|
+
}
|
|
1640
|
+
}
|
|
1641
|
+
},
|
|
1642
|
+
{
|
|
1643
|
+
"displayName": "X Rapid API Key (Header)",
|
|
1644
|
+
"name": "security_rapidapi",
|
|
1645
|
+
"type": "string",
|
|
1646
|
+
"default": "",
|
|
1647
|
+
"description": "The connection to LinQR can be made through a <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >RapidAPI proxy</a>. RapidAPI is a service that manages the use of API and keys while being an API load balancer. Access is granted on a subscription basis. LinQR subscriptions have different plans: `BASIC`, `PRO`, `ULTRA` and `MEGA`. They differ in the number of available functionalities and can be adjusted to the expected level of service usage. After registering at the RapidAPI, you can generate a key that will be used to authorize the client in the LinQR. More details on usage limits or pricing can be found directly on the <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing at the RapidAPI Hub</a>.\n\nIf you do not find a plan tailored to your needs in RapidAPI, contact us directly: we can prepare a custom subscription plan according to your needs.\n\n<a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Connect on RapidAPI\" src=\"https://files.readme.io/7002e7f-c563a12-rapidapi-badge-dark.png\"></a>",
|
|
1648
|
+
"required": false,
|
|
1649
|
+
"routing": {
|
|
1650
|
+
"request": {
|
|
1651
|
+
"headers": {
|
|
1652
|
+
"X-RapidAPI-Key": "={{ $value }}"
|
|
1653
|
+
}
|
|
1654
|
+
}
|
|
1655
|
+
},
|
|
1656
|
+
"displayOptions": {
|
|
1657
|
+
"show": {
|
|
1658
|
+
"resource": [
|
|
1659
|
+
"Single QR Code"
|
|
1660
|
+
],
|
|
1661
|
+
"operation": [
|
|
1662
|
+
"Dispatcher Qrcode Text Post"
|
|
1663
|
+
]
|
|
1664
|
+
}
|
|
1665
|
+
}
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
"displayName": "POST /qrcode/wifi",
|
|
1669
|
+
"name": "operation",
|
|
1670
|
+
"type": "notice",
|
|
1671
|
+
"typeOptions": {
|
|
1672
|
+
"theme": "info"
|
|
1673
|
+
},
|
|
1674
|
+
"default": "",
|
|
1675
|
+
"displayOptions": {
|
|
1676
|
+
"show": {
|
|
1677
|
+
"resource": [
|
|
1678
|
+
"Single QR Code"
|
|
1679
|
+
],
|
|
1680
|
+
"operation": [
|
|
1681
|
+
"Dispatcher Qrcode Wifi Post"
|
|
1682
|
+
]
|
|
1683
|
+
}
|
|
1684
|
+
}
|
|
1685
|
+
},
|
|
1686
|
+
{
|
|
1687
|
+
"required": true,
|
|
1688
|
+
"displayName": "Data",
|
|
1689
|
+
"name": "data",
|
|
1690
|
+
"type": "json",
|
|
1691
|
+
"default": "{\n \"hidden\": false,\n \"password\": \"Pass!&#^@#*@\",\n \"ssid\": \"My WiFi network name\"\n}",
|
|
1692
|
+
"routing": {
|
|
1693
|
+
"send": {
|
|
1694
|
+
"property": "data",
|
|
1695
|
+
"propertyInDotNotation": false,
|
|
1696
|
+
"type": "body",
|
|
1697
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1698
|
+
}
|
|
1699
|
+
},
|
|
1700
|
+
"displayOptions": {
|
|
1701
|
+
"show": {
|
|
1702
|
+
"resource": [
|
|
1703
|
+
"Single QR Code"
|
|
1704
|
+
],
|
|
1705
|
+
"operation": [
|
|
1706
|
+
"Dispatcher Qrcode Wifi Post"
|
|
1707
|
+
]
|
|
1708
|
+
}
|
|
1709
|
+
}
|
|
1710
|
+
},
|
|
1711
|
+
{
|
|
1712
|
+
"displayName": "Image",
|
|
1713
|
+
"name": "image",
|
|
1714
|
+
"type": "json",
|
|
1715
|
+
"default": "{\n \"modules\": true,\n \"uri\": {}\n}",
|
|
1716
|
+
"routing": {
|
|
1717
|
+
"send": {
|
|
1718
|
+
"property": "image",
|
|
1719
|
+
"propertyInDotNotation": false,
|
|
1720
|
+
"type": "body",
|
|
1721
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1722
|
+
}
|
|
1723
|
+
},
|
|
1724
|
+
"displayOptions": {
|
|
1725
|
+
"show": {
|
|
1726
|
+
"resource": [
|
|
1727
|
+
"Single QR Code"
|
|
1728
|
+
],
|
|
1729
|
+
"operation": [
|
|
1730
|
+
"Dispatcher Qrcode Wifi Post"
|
|
1731
|
+
]
|
|
1732
|
+
}
|
|
1733
|
+
}
|
|
1734
|
+
},
|
|
1735
|
+
{
|
|
1736
|
+
"displayName": "Output",
|
|
1737
|
+
"name": "output",
|
|
1738
|
+
"type": "json",
|
|
1739
|
+
"default": "{\n \"filename\": \"qrcode\"\n}",
|
|
1740
|
+
"routing": {
|
|
1741
|
+
"send": {
|
|
1742
|
+
"property": "output",
|
|
1743
|
+
"propertyInDotNotation": false,
|
|
1744
|
+
"type": "body",
|
|
1745
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1746
|
+
}
|
|
1747
|
+
},
|
|
1748
|
+
"displayOptions": {
|
|
1749
|
+
"show": {
|
|
1750
|
+
"resource": [
|
|
1751
|
+
"Single QR Code"
|
|
1752
|
+
],
|
|
1753
|
+
"operation": [
|
|
1754
|
+
"Dispatcher Qrcode Wifi Post"
|
|
1755
|
+
]
|
|
1756
|
+
}
|
|
1757
|
+
}
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
"displayName": "Size",
|
|
1761
|
+
"name": "size",
|
|
1762
|
+
"type": "json",
|
|
1763
|
+
"default": "{\n \"quiet_zone\": 4,\n \"width\": 200\n}",
|
|
1764
|
+
"routing": {
|
|
1765
|
+
"send": {
|
|
1766
|
+
"property": "size",
|
|
1767
|
+
"propertyInDotNotation": false,
|
|
1768
|
+
"type": "body",
|
|
1769
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1770
|
+
}
|
|
1771
|
+
},
|
|
1772
|
+
"displayOptions": {
|
|
1773
|
+
"show": {
|
|
1774
|
+
"resource": [
|
|
1775
|
+
"Single QR Code"
|
|
1776
|
+
],
|
|
1777
|
+
"operation": [
|
|
1778
|
+
"Dispatcher Qrcode Wifi Post"
|
|
1779
|
+
]
|
|
1780
|
+
}
|
|
1781
|
+
}
|
|
1782
|
+
},
|
|
1783
|
+
{
|
|
1784
|
+
"displayName": "Style",
|
|
1785
|
+
"name": "style",
|
|
1786
|
+
"type": "json",
|
|
1787
|
+
"default": "{\n \"background\": {\n \"color\": \"#c2fce6\"\n },\n \"inner_eye\": {\n \"color\": \"black\"\n },\n \"module\": {},\n \"outer_eye\": {\n \"color\": \"rgb(0, 0, 255)\"\n }\n}",
|
|
1788
|
+
"routing": {
|
|
1789
|
+
"send": {
|
|
1790
|
+
"property": "style",
|
|
1791
|
+
"propertyInDotNotation": false,
|
|
1792
|
+
"type": "body",
|
|
1793
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1794
|
+
}
|
|
1795
|
+
},
|
|
1796
|
+
"displayOptions": {
|
|
1797
|
+
"show": {
|
|
1798
|
+
"resource": [
|
|
1799
|
+
"Single QR Code"
|
|
1800
|
+
],
|
|
1801
|
+
"operation": [
|
|
1802
|
+
"Dispatcher Qrcode Wifi Post"
|
|
1803
|
+
]
|
|
1804
|
+
}
|
|
1805
|
+
}
|
|
1806
|
+
},
|
|
1807
|
+
{
|
|
1808
|
+
"displayName": "Byvalue API Key",
|
|
1809
|
+
"name": "security_byvalue",
|
|
1810
|
+
"type": "string",
|
|
1811
|
+
"default": "",
|
|
1812
|
+
"description": "Connection to LinQR can be made through the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >Byvalue proxy</a>. The use of LinQR API is billed based on actual consumption and price per 1,000 requests. Using Byvalue gives you access to all API functionalities without the need to purchase any subscription. After registering in the Byvalue, an access key is generated that is used to connect to the API. More information about this connection method or pricing can be found directly in the <a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing in Byvalue</a>.\n\n<a href=\"https://www.app.byvalue.org/service/9051\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Checkout with Byvalue\" src=\"https://byvalue-static-resources.s3.eu-central-1.amazonaws.com/byvalue-badges/bvlu_btn_dark.png\"></a>",
|
|
1813
|
+
"required": false,
|
|
1814
|
+
"routing": {
|
|
1815
|
+
"request": {
|
|
1816
|
+
"headers": {
|
|
1817
|
+
"Byvalue-Token": "={{ $value }}"
|
|
1818
|
+
}
|
|
1819
|
+
}
|
|
1820
|
+
},
|
|
1821
|
+
"displayOptions": {
|
|
1822
|
+
"show": {
|
|
1823
|
+
"resource": [
|
|
1824
|
+
"Single QR Code"
|
|
1825
|
+
],
|
|
1826
|
+
"operation": [
|
|
1827
|
+
"Dispatcher Qrcode Wifi Post"
|
|
1828
|
+
]
|
|
1829
|
+
}
|
|
1830
|
+
}
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
"displayName": "X Rapid API Key (Header)",
|
|
1834
|
+
"name": "security_rapidapi",
|
|
1835
|
+
"type": "string",
|
|
1836
|
+
"default": "",
|
|
1837
|
+
"description": "The connection to LinQR can be made through a <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >RapidAPI proxy</a>. RapidAPI is a service that manages the use of API and keys while being an API load balancer. Access is granted on a subscription basis. LinQR subscriptions have different plans: `BASIC`, `PRO`, `ULTRA` and `MEGA`. They differ in the number of available functionalities and can be adjusted to the expected level of service usage. After registering at the RapidAPI, you can generate a key that will be used to authorize the client in the LinQR. More details on usage limits or pricing can be found directly on the <a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" >LinQR listing at the RapidAPI Hub</a>.\n\nIf you do not find a plan tailored to your needs in RapidAPI, contact us directly: we can prepare a custom subscription plan according to your needs.\n\n<a href=\"https://rapidapi.com/linqr-linqr-default/api/qrcode3/\" rel=\"noopener noreferrer\" target=\"_blank\" ><img width=\"215\" alt=\"Connect on RapidAPI\" src=\"https://files.readme.io/7002e7f-c563a12-rapidapi-badge-dark.png\"></a>",
|
|
1838
|
+
"required": false,
|
|
1839
|
+
"routing": {
|
|
1840
|
+
"request": {
|
|
1841
|
+
"headers": {
|
|
1842
|
+
"X-RapidAPI-Key": "={{ $value }}"
|
|
1843
|
+
}
|
|
1844
|
+
}
|
|
1845
|
+
},
|
|
1846
|
+
"displayOptions": {
|
|
1847
|
+
"show": {
|
|
1848
|
+
"resource": [
|
|
1849
|
+
"Single QR Code"
|
|
1850
|
+
],
|
|
1851
|
+
"operation": [
|
|
1852
|
+
"Dispatcher Qrcode Wifi Post"
|
|
1853
|
+
]
|
|
1854
|
+
}
|
|
1855
|
+
}
|
|
1856
|
+
},
|
|
1857
|
+
];
|
|
1858
|
+
//# sourceMappingURL=index.js.map
|