n8n-nodes-socialfetch 0.1.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.
@@ -0,0 +1,1797 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.tiktok = void 0;
4
+ const pagination_1 = require("../shared/pagination");
5
+ exports.tiktok = [
6
+ {
7
+ "displayName": "Operation",
8
+ "name": "operation",
9
+ "type": "options",
10
+ "noDataExpression": true,
11
+ "displayOptions": {
12
+ "show": {
13
+ "resource": [
14
+ "tiktok"
15
+ ]
16
+ }
17
+ },
18
+ "default": "tiktok.profile.get",
19
+ "options": [
20
+ {
21
+ "name": "Profile",
22
+ "value": "tiktok.profile.get",
23
+ "action": "Get TikTok profile",
24
+ "description": "Get a TikTok profile for a creator or account.",
25
+ "routing": {
26
+ "request": {
27
+ "method": "GET",
28
+ "url": "=/v1/tiktok/profiles/{{$parameter[\"handle\"]}}"
29
+ }
30
+ }
31
+ },
32
+ {
33
+ "name": "Profile videos",
34
+ "value": "tiktok.profile.videos.list",
35
+ "action": "List TikTok profile videos",
36
+ "description": "Get videos from a specific TikTok profile.",
37
+ "routing": {
38
+ "request": {
39
+ "method": "GET",
40
+ "url": "=/v1/tiktok/profiles/{{$parameter[\"handle\"]}}/videos"
41
+ },
42
+ "send": {
43
+ "paginate": "={{$parameter[\"returnAll\"]}}"
44
+ },
45
+ "operations": {
46
+ "pagination": pagination_1.cursorPagination
47
+ }
48
+ }
49
+ },
50
+ {
51
+ "name": "Profile followers",
52
+ "value": "tiktok.profile.followers.list",
53
+ "action": "List TikTok profile followers",
54
+ "description": "Get followers from a specific TikTok profile.",
55
+ "routing": {
56
+ "request": {
57
+ "method": "GET",
58
+ "url": "=/v1/tiktok/profiles/{{$parameter[\"handle\"]}}/followers"
59
+ },
60
+ "send": {
61
+ "paginate": "={{$parameter[\"returnAll\"]}}"
62
+ },
63
+ "operations": {
64
+ "pagination": pagination_1.cursorPagination
65
+ }
66
+ }
67
+ },
68
+ {
69
+ "name": "Profile following",
70
+ "value": "tiktok.profile.following.list",
71
+ "action": "List TikTok profile following",
72
+ "description": "Get accounts followed by a specific TikTok profile.",
73
+ "routing": {
74
+ "request": {
75
+ "method": "GET",
76
+ "url": "=/v1/tiktok/profiles/{{$parameter[\"handle\"]}}/following"
77
+ },
78
+ "send": {
79
+ "paginate": "={{$parameter[\"returnAll\"]}}"
80
+ },
81
+ "operations": {
82
+ "pagination": pagination_1.cursorPagination
83
+ }
84
+ }
85
+ },
86
+ {
87
+ "name": "Profile region",
88
+ "value": "tiktok.profile.region.get",
89
+ "action": "Get TikTok profile region",
90
+ "description": "Get the region code reported for a TikTok profile.",
91
+ "routing": {
92
+ "request": {
93
+ "method": "GET",
94
+ "url": "=/v1/tiktok/profiles/{{$parameter[\"handle\"]}}/region"
95
+ }
96
+ }
97
+ },
98
+ {
99
+ "name": "Live stream",
100
+ "value": "tiktok.profile.live.check",
101
+ "action": "Get TikTok live stream",
102
+ "description": "Check whether a TikTok creator is currently live.",
103
+ "routing": {
104
+ "request": {
105
+ "method": "GET",
106
+ "url": "=/v1/tiktok/profiles/{{$parameter[\"handle\"]}}/live"
107
+ }
108
+ }
109
+ },
110
+ {
111
+ "name": "User search",
112
+ "value": "tiktok.users.search",
113
+ "action": "Search TikTok users",
114
+ "description": "Search TikTok users by keyword.",
115
+ "routing": {
116
+ "request": {
117
+ "method": "GET",
118
+ "url": "/v1/tiktok/users/search"
119
+ },
120
+ "send": {
121
+ "paginate": "={{$parameter[\"returnAll\"]}}"
122
+ },
123
+ "operations": {
124
+ "pagination": pagination_1.cursorPagination
125
+ }
126
+ }
127
+ },
128
+ {
129
+ "name": "Search videos",
130
+ "value": "tiktok.search.videos.list",
131
+ "action": "Search TikTok videos",
132
+ "description": "Search TikTok videos by keyword.",
133
+ "routing": {
134
+ "request": {
135
+ "method": "GET",
136
+ "url": "/v1/tiktok/search"
137
+ },
138
+ "send": {
139
+ "paginate": "={{$parameter[\"returnAll\"]}}"
140
+ },
141
+ "operations": {
142
+ "pagination": pagination_1.cursorPagination
143
+ }
144
+ }
145
+ },
146
+ {
147
+ "name": "Hashtag search",
148
+ "value": "tiktok.search.hashtag.list",
149
+ "action": "Search TikTok by hashtag",
150
+ "description": "Search TikTok videos by hashtag.",
151
+ "routing": {
152
+ "request": {
153
+ "method": "GET",
154
+ "url": "/v1/tiktok/search/hashtags"
155
+ },
156
+ "send": {
157
+ "paginate": "={{$parameter[\"returnAll\"]}}"
158
+ },
159
+ "operations": {
160
+ "pagination": pagination_1.cursorPagination
161
+ }
162
+ }
163
+ },
164
+ {
165
+ "name": "Video",
166
+ "value": "tiktok.video.get",
167
+ "action": "Get TikTok video",
168
+ "description": "Get a single TikTok video.",
169
+ "routing": {
170
+ "request": {
171
+ "method": "GET",
172
+ "url": "/v1/tiktok/videos"
173
+ }
174
+ }
175
+ },
176
+ {
177
+ "name": "Comments",
178
+ "value": "tiktok.video.comments.list",
179
+ "action": "List TikTok video comments",
180
+ "description": "Get comments on a TikTok video.",
181
+ "routing": {
182
+ "request": {
183
+ "method": "GET",
184
+ "url": "/v1/tiktok/videos/comments"
185
+ },
186
+ "send": {
187
+ "paginate": "={{$parameter[\"returnAll\"]}}"
188
+ },
189
+ "operations": {
190
+ "pagination": pagination_1.cursorPagination
191
+ }
192
+ }
193
+ },
194
+ {
195
+ "name": "Transcript",
196
+ "value": "tiktok.video.transcript.get",
197
+ "action": "Get TikTok video transcript",
198
+ "description": "Get the spoken transcript for a TikTok video.",
199
+ "routing": {
200
+ "request": {
201
+ "method": "GET",
202
+ "url": "/v1/tiktok/videos/transcript"
203
+ }
204
+ }
205
+ },
206
+ {
207
+ "name": "Trending feed",
208
+ "value": "tiktok.feed.trending.list",
209
+ "action": "List TikTok trending feed",
210
+ "description": "Discover currently trending TikTok posts.",
211
+ "routing": {
212
+ "request": {
213
+ "method": "GET",
214
+ "url": "/v1/tiktok/feed/trending"
215
+ }
216
+ }
217
+ },
218
+ {
219
+ "name": "Shop product search",
220
+ "value": "tiktok.shop.products.search",
221
+ "action": "Search TikTok Shop products",
222
+ "description": "Search products in TikTok Shop.",
223
+ "routing": {
224
+ "request": {
225
+ "method": "GET",
226
+ "url": "/v1/tiktok/shop/products/search"
227
+ }
228
+ }
229
+ },
230
+ {
231
+ "name": "Shop store products",
232
+ "value": "tiktok.shop.products.list",
233
+ "action": "List TikTok Shop store products",
234
+ "description": "Get products listed in a TikTok Shop store.",
235
+ "routing": {
236
+ "request": {
237
+ "method": "GET",
238
+ "url": "/v1/tiktok/shop/products"
239
+ },
240
+ "send": {
241
+ "paginate": "={{$parameter[\"returnAll\"]}}"
242
+ },
243
+ "operations": {
244
+ "pagination": pagination_1.cursorPagination
245
+ }
246
+ }
247
+ },
248
+ {
249
+ "name": "Shop product",
250
+ "value": "tiktok.product.get",
251
+ "action": "Get TikTok Shop product",
252
+ "description": "Get details for a TikTok Shop product.",
253
+ "routing": {
254
+ "request": {
255
+ "method": "GET",
256
+ "url": "/v1/tiktok/products"
257
+ }
258
+ }
259
+ },
260
+ {
261
+ "name": "Shop product reviews",
262
+ "value": "tiktok.product.reviews.list",
263
+ "action": "List TikTok Shop product reviews",
264
+ "description": "Get buyer reviews for a TikTok Shop product.",
265
+ "routing": {
266
+ "request": {
267
+ "method": "GET",
268
+ "url": "/v1/tiktok/products/reviews"
269
+ }
270
+ }
271
+ },
272
+ {
273
+ "name": "Profile showcase products",
274
+ "value": "tiktok.profile.showcaseProducts.list",
275
+ "action": "List TikTok profile showcase products",
276
+ "description": "Get products featured on a creator's TikTok showcase.",
277
+ "routing": {
278
+ "request": {
279
+ "method": "GET",
280
+ "url": "=/v1/tiktok/profiles/{{$parameter[\"handle\"]}}/showcase-products"
281
+ },
282
+ "send": {
283
+ "paginate": "={{$parameter[\"returnAll\"]}}"
284
+ },
285
+ "operations": {
286
+ "pagination": pagination_1.cursorPagination
287
+ }
288
+ }
289
+ }
290
+ ]
291
+ },
292
+ {
293
+ "displayName": "Handle",
294
+ "name": "handle",
295
+ "type": "string",
296
+ "default": "",
297
+ "description": "TikTok handle to look up, with or without leading @.",
298
+ "placeholder": "e.g. n8n",
299
+ "required": true,
300
+ "displayOptions": {
301
+ "show": {
302
+ "resource": [
303
+ "tiktok"
304
+ ],
305
+ "operation": [
306
+ "tiktok.profile.get"
307
+ ]
308
+ }
309
+ }
310
+ },
311
+ {
312
+ "displayName": "Return All",
313
+ "name": "returnAll",
314
+ "type": "boolean",
315
+ "default": false,
316
+ "description": "Whether to return all results by paginating through every page, or only the first page. Each page consumes API credits.",
317
+ "displayOptions": {
318
+ "show": {
319
+ "resource": [
320
+ "tiktok"
321
+ ],
322
+ "operation": [
323
+ "tiktok.profile.videos.list"
324
+ ]
325
+ }
326
+ }
327
+ },
328
+ {
329
+ "displayName": "Handle",
330
+ "name": "handle",
331
+ "type": "string",
332
+ "default": "",
333
+ "description": "TikTok handle whose videos should be listed.",
334
+ "placeholder": "e.g. n8n",
335
+ "required": true,
336
+ "displayOptions": {
337
+ "show": {
338
+ "resource": [
339
+ "tiktok"
340
+ ],
341
+ "operation": [
342
+ "tiktok.profile.videos.list"
343
+ ]
344
+ }
345
+ }
346
+ },
347
+ {
348
+ "displayName": "Additional Fields",
349
+ "name": "additionalOptions",
350
+ "type": "collection",
351
+ "placeholder": "Add Field",
352
+ "default": {},
353
+ "displayOptions": {
354
+ "show": {
355
+ "resource": [
356
+ "tiktok"
357
+ ],
358
+ "operation": [
359
+ "tiktok.profile.videos.list"
360
+ ]
361
+ }
362
+ },
363
+ "options": [
364
+ {
365
+ "displayName": "Sort By",
366
+ "name": "sortBy",
367
+ "type": "options",
368
+ "options": [
369
+ {
370
+ "name": "Latest",
371
+ "value": "latest"
372
+ },
373
+ {
374
+ "name": "Popular",
375
+ "value": "popular"
376
+ }
377
+ ],
378
+ "default": "latest",
379
+ "description": "Optional sort order for the returned TikTok videos.",
380
+ "routing": {
381
+ "send": {
382
+ "type": "query",
383
+ "property": "sortBy"
384
+ }
385
+ }
386
+ },
387
+ {
388
+ "displayName": "User Id",
389
+ "name": "userId",
390
+ "type": "string",
391
+ "default": "",
392
+ "description": "Optional TikTok user id to speed up the request.",
393
+ "routing": {
394
+ "send": {
395
+ "type": "query",
396
+ "property": "userId"
397
+ }
398
+ }
399
+ },
400
+ {
401
+ "displayName": "Region",
402
+ "name": "region",
403
+ "type": "string",
404
+ "default": "",
405
+ "description": "Optional region (country code) for the request.",
406
+ "routing": {
407
+ "send": {
408
+ "type": "query",
409
+ "property": "region"
410
+ }
411
+ }
412
+ },
413
+ {
414
+ "displayName": "Trim",
415
+ "name": "trim",
416
+ "type": "boolean",
417
+ "default": false,
418
+ "description": "Optional flag for a smaller response with fewer fields.",
419
+ "routing": {
420
+ "send": {
421
+ "type": "query",
422
+ "property": "trim"
423
+ }
424
+ }
425
+ }
426
+ ]
427
+ },
428
+ {
429
+ "displayName": "Return All",
430
+ "name": "returnAll",
431
+ "type": "boolean",
432
+ "default": false,
433
+ "description": "Whether to return all results by paginating through every page, or only the first page. Each page consumes API credits.",
434
+ "displayOptions": {
435
+ "show": {
436
+ "resource": [
437
+ "tiktok"
438
+ ],
439
+ "operation": [
440
+ "tiktok.profile.followers.list"
441
+ ]
442
+ }
443
+ }
444
+ },
445
+ {
446
+ "displayName": "Handle",
447
+ "name": "handle",
448
+ "type": "string",
449
+ "default": "",
450
+ "description": "TikTok handle whose followers should be listed.",
451
+ "placeholder": "e.g. n8n",
452
+ "required": true,
453
+ "displayOptions": {
454
+ "show": {
455
+ "resource": [
456
+ "tiktok"
457
+ ],
458
+ "operation": [
459
+ "tiktok.profile.followers.list"
460
+ ]
461
+ }
462
+ }
463
+ },
464
+ {
465
+ "displayName": "Additional Fields",
466
+ "name": "additionalOptions",
467
+ "type": "collection",
468
+ "placeholder": "Add Field",
469
+ "default": {},
470
+ "displayOptions": {
471
+ "show": {
472
+ "resource": [
473
+ "tiktok"
474
+ ],
475
+ "operation": [
476
+ "tiktok.profile.followers.list"
477
+ ]
478
+ }
479
+ },
480
+ "options": [
481
+ {
482
+ "displayName": "User Id",
483
+ "name": "userId",
484
+ "type": "string",
485
+ "default": "",
486
+ "description": "Optional TikTok user id to speed up the request.",
487
+ "routing": {
488
+ "send": {
489
+ "type": "query",
490
+ "property": "userId"
491
+ }
492
+ }
493
+ },
494
+ {
495
+ "displayName": "Trim",
496
+ "name": "trim",
497
+ "type": "boolean",
498
+ "default": false,
499
+ "description": "Optional flag for a smaller response with fewer fields.",
500
+ "routing": {
501
+ "send": {
502
+ "type": "query",
503
+ "property": "trim"
504
+ }
505
+ }
506
+ }
507
+ ]
508
+ },
509
+ {
510
+ "displayName": "Return All",
511
+ "name": "returnAll",
512
+ "type": "boolean",
513
+ "default": false,
514
+ "description": "Whether to return all results by paginating through every page, or only the first page. Each page consumes API credits.",
515
+ "displayOptions": {
516
+ "show": {
517
+ "resource": [
518
+ "tiktok"
519
+ ],
520
+ "operation": [
521
+ "tiktok.profile.following.list"
522
+ ]
523
+ }
524
+ }
525
+ },
526
+ {
527
+ "displayName": "Handle",
528
+ "name": "handle",
529
+ "type": "string",
530
+ "default": "",
531
+ "description": "TikTok handle whose following list should be listed.",
532
+ "placeholder": "e.g. n8n",
533
+ "required": true,
534
+ "displayOptions": {
535
+ "show": {
536
+ "resource": [
537
+ "tiktok"
538
+ ],
539
+ "operation": [
540
+ "tiktok.profile.following.list"
541
+ ]
542
+ }
543
+ }
544
+ },
545
+ {
546
+ "displayName": "Additional Fields",
547
+ "name": "additionalOptions",
548
+ "type": "collection",
549
+ "placeholder": "Add Field",
550
+ "default": {},
551
+ "displayOptions": {
552
+ "show": {
553
+ "resource": [
554
+ "tiktok"
555
+ ],
556
+ "operation": [
557
+ "tiktok.profile.following.list"
558
+ ]
559
+ }
560
+ },
561
+ "options": [
562
+ {
563
+ "displayName": "Trim",
564
+ "name": "trim",
565
+ "type": "boolean",
566
+ "default": false,
567
+ "description": "Optional flag for a smaller response with fewer fields.",
568
+ "routing": {
569
+ "send": {
570
+ "type": "query",
571
+ "property": "trim"
572
+ }
573
+ }
574
+ }
575
+ ]
576
+ },
577
+ {
578
+ "displayName": "Handle",
579
+ "name": "handle",
580
+ "type": "string",
581
+ "default": "",
582
+ "description": "TikTok handle to look up, with or without a leading @.",
583
+ "placeholder": "e.g. n8n",
584
+ "required": true,
585
+ "displayOptions": {
586
+ "show": {
587
+ "resource": [
588
+ "tiktok"
589
+ ],
590
+ "operation": [
591
+ "tiktok.profile.region.get"
592
+ ]
593
+ }
594
+ }
595
+ },
596
+ {
597
+ "displayName": "Handle",
598
+ "name": "handle",
599
+ "type": "string",
600
+ "default": "",
601
+ "description": "TikTok handle to look up, with or without a leading @.",
602
+ "placeholder": "e.g. n8n",
603
+ "required": true,
604
+ "displayOptions": {
605
+ "show": {
606
+ "resource": [
607
+ "tiktok"
608
+ ],
609
+ "operation": [
610
+ "tiktok.profile.live.check"
611
+ ]
612
+ }
613
+ }
614
+ },
615
+ {
616
+ "displayName": "Return All",
617
+ "name": "returnAll",
618
+ "type": "boolean",
619
+ "default": false,
620
+ "description": "Whether to return all results by paginating through every page, or only the first page. Each page consumes API credits.",
621
+ "displayOptions": {
622
+ "show": {
623
+ "resource": [
624
+ "tiktok"
625
+ ],
626
+ "operation": [
627
+ "tiktok.users.search"
628
+ ]
629
+ }
630
+ }
631
+ },
632
+ {
633
+ "displayName": "Query",
634
+ "name": "query",
635
+ "type": "string",
636
+ "default": "",
637
+ "description": "Search query text for TikTok users.",
638
+ "placeholder": "e.g. automation",
639
+ "required": true,
640
+ "routing": {
641
+ "send": {
642
+ "type": "query",
643
+ "property": "query"
644
+ }
645
+ },
646
+ "displayOptions": {
647
+ "show": {
648
+ "resource": [
649
+ "tiktok"
650
+ ],
651
+ "operation": [
652
+ "tiktok.users.search"
653
+ ]
654
+ }
655
+ }
656
+ },
657
+ {
658
+ "displayName": "Return All",
659
+ "name": "returnAll",
660
+ "type": "boolean",
661
+ "default": false,
662
+ "description": "Whether to return all results by paginating through every page, or only the first page. Each page consumes API credits.",
663
+ "displayOptions": {
664
+ "show": {
665
+ "resource": [
666
+ "tiktok"
667
+ ],
668
+ "operation": [
669
+ "tiktok.search.videos.list"
670
+ ]
671
+ }
672
+ }
673
+ },
674
+ {
675
+ "displayName": "Query",
676
+ "name": "query",
677
+ "type": "string",
678
+ "default": "",
679
+ "description": "Search query text for TikTok videos.",
680
+ "placeholder": "e.g. automation",
681
+ "required": true,
682
+ "routing": {
683
+ "send": {
684
+ "type": "query",
685
+ "property": "query"
686
+ }
687
+ },
688
+ "displayOptions": {
689
+ "show": {
690
+ "resource": [
691
+ "tiktok"
692
+ ],
693
+ "operation": [
694
+ "tiktok.search.videos.list"
695
+ ]
696
+ }
697
+ }
698
+ },
699
+ {
700
+ "displayName": "Additional Fields",
701
+ "name": "additionalOptions",
702
+ "type": "collection",
703
+ "placeholder": "Add Field",
704
+ "default": {},
705
+ "displayOptions": {
706
+ "show": {
707
+ "resource": [
708
+ "tiktok"
709
+ ],
710
+ "operation": [
711
+ "tiktok.search.videos.list"
712
+ ]
713
+ }
714
+ },
715
+ "options": [
716
+ {
717
+ "displayName": "Date Posted",
718
+ "name": "datePosted",
719
+ "type": "options",
720
+ "options": [
721
+ {
722
+ "name": "Yesterday",
723
+ "value": "yesterday"
724
+ },
725
+ {
726
+ "name": "This Week",
727
+ "value": "this-week"
728
+ },
729
+ {
730
+ "name": "This Month",
731
+ "value": "this-month"
732
+ },
733
+ {
734
+ "name": "Last 3 Months",
735
+ "value": "last-3-months"
736
+ },
737
+ {
738
+ "name": "Last 6 Months",
739
+ "value": "last-6-months"
740
+ },
741
+ {
742
+ "name": "All Time",
743
+ "value": "all-time"
744
+ }
745
+ ],
746
+ "default": "yesterday",
747
+ "description": "Optional upload date filter for video results.",
748
+ "routing": {
749
+ "send": {
750
+ "type": "query",
751
+ "property": "datePosted"
752
+ }
753
+ }
754
+ },
755
+ {
756
+ "displayName": "Sort By",
757
+ "name": "sortBy",
758
+ "type": "options",
759
+ "options": [
760
+ {
761
+ "name": "Relevance",
762
+ "value": "relevance"
763
+ },
764
+ {
765
+ "name": "Most Liked",
766
+ "value": "most-liked"
767
+ },
768
+ {
769
+ "name": "Date Posted",
770
+ "value": "date-posted"
771
+ }
772
+ ],
773
+ "default": "relevance",
774
+ "description": "Optional sort order for search results.",
775
+ "routing": {
776
+ "send": {
777
+ "type": "query",
778
+ "property": "sortBy"
779
+ }
780
+ }
781
+ },
782
+ {
783
+ "displayName": "Region",
784
+ "name": "region",
785
+ "type": "string",
786
+ "default": "",
787
+ "description": "Optional two-letter region code for localized search results.",
788
+ "routing": {
789
+ "send": {
790
+ "type": "query",
791
+ "property": "region"
792
+ }
793
+ }
794
+ },
795
+ {
796
+ "displayName": "Trim",
797
+ "name": "trim",
798
+ "type": "boolean",
799
+ "default": false,
800
+ "description": "When true, returns a smaller response with fewer fields.",
801
+ "routing": {
802
+ "send": {
803
+ "type": "query",
804
+ "property": "trim"
805
+ }
806
+ }
807
+ }
808
+ ]
809
+ },
810
+ {
811
+ "displayName": "Return All",
812
+ "name": "returnAll",
813
+ "type": "boolean",
814
+ "default": false,
815
+ "description": "Whether to return all results by paginating through every page, or only the first page. Each page consumes API credits.",
816
+ "displayOptions": {
817
+ "show": {
818
+ "resource": [
819
+ "tiktok"
820
+ ],
821
+ "operation": [
822
+ "tiktok.search.hashtag.list"
823
+ ]
824
+ }
825
+ }
826
+ },
827
+ {
828
+ "displayName": "Hashtag",
829
+ "name": "hashtag",
830
+ "type": "string",
831
+ "default": "",
832
+ "description": "Hashtag to search for. A leading # is optional.",
833
+ "required": true,
834
+ "routing": {
835
+ "send": {
836
+ "type": "query",
837
+ "property": "hashtag"
838
+ }
839
+ },
840
+ "displayOptions": {
841
+ "show": {
842
+ "resource": [
843
+ "tiktok"
844
+ ],
845
+ "operation": [
846
+ "tiktok.search.hashtag.list"
847
+ ]
848
+ }
849
+ }
850
+ },
851
+ {
852
+ "displayName": "Additional Fields",
853
+ "name": "additionalOptions",
854
+ "type": "collection",
855
+ "placeholder": "Add Field",
856
+ "default": {},
857
+ "displayOptions": {
858
+ "show": {
859
+ "resource": [
860
+ "tiktok"
861
+ ],
862
+ "operation": [
863
+ "tiktok.search.hashtag.list"
864
+ ]
865
+ }
866
+ },
867
+ "options": [
868
+ {
869
+ "displayName": "Region",
870
+ "name": "region",
871
+ "type": "string",
872
+ "default": "",
873
+ "description": "Optional region (country code) for the request. This sets the proxy region and does not filter results to that country only.",
874
+ "routing": {
875
+ "send": {
876
+ "type": "query",
877
+ "property": "region"
878
+ }
879
+ }
880
+ },
881
+ {
882
+ "displayName": "Trim",
883
+ "name": "trim",
884
+ "type": "boolean",
885
+ "default": false,
886
+ "description": "Whether to request a smaller response with fewer fields.",
887
+ "routing": {
888
+ "send": {
889
+ "type": "query",
890
+ "property": "trim"
891
+ }
892
+ }
893
+ }
894
+ ]
895
+ },
896
+ {
897
+ "displayName": "Url",
898
+ "name": "url",
899
+ "type": "string",
900
+ "default": "",
901
+ "description": "Link to the video or photo post.",
902
+ "placeholder": "e.g. https://example.com/page",
903
+ "required": true,
904
+ "routing": {
905
+ "send": {
906
+ "type": "query",
907
+ "property": "url"
908
+ }
909
+ },
910
+ "displayOptions": {
911
+ "show": {
912
+ "resource": [
913
+ "tiktok"
914
+ ],
915
+ "operation": [
916
+ "tiktok.video.get"
917
+ ]
918
+ }
919
+ }
920
+ },
921
+ {
922
+ "displayName": "Additional Fields",
923
+ "name": "additionalOptions",
924
+ "type": "collection",
925
+ "placeholder": "Add Field",
926
+ "default": {},
927
+ "displayOptions": {
928
+ "show": {
929
+ "resource": [
930
+ "tiktok"
931
+ ],
932
+ "operation": [
933
+ "tiktok.video.get"
934
+ ]
935
+ }
936
+ },
937
+ "options": [
938
+ {
939
+ "displayName": "Region",
940
+ "name": "region",
941
+ "type": "string",
942
+ "default": "",
943
+ "description": "Optional two-letter region (country code) used to route the request when needed.",
944
+ "routing": {
945
+ "send": {
946
+ "type": "query",
947
+ "property": "region"
948
+ }
949
+ }
950
+ },
951
+ {
952
+ "displayName": "Trim",
953
+ "name": "trim",
954
+ "type": "boolean",
955
+ "default": false,
956
+ "description": "When true, returns a smaller response with fewer fields.",
957
+ "routing": {
958
+ "send": {
959
+ "type": "query",
960
+ "property": "trim"
961
+ }
962
+ }
963
+ },
964
+ {
965
+ "displayName": "Download Media",
966
+ "name": "downloadMedia",
967
+ "type": "boolean",
968
+ "default": false,
969
+ "description": "When true, includes hosted CDN URLs in `downloads` when available. Adds 10 credits (11 total with the base lookup) on successful lookups, even if `downloads` is empty.",
970
+ "routing": {
971
+ "send": {
972
+ "type": "query",
973
+ "property": "downloadMedia"
974
+ }
975
+ }
976
+ },
977
+ {
978
+ "displayName": "Get Transcript",
979
+ "name": "getTranscript",
980
+ "type": "boolean",
981
+ "default": false,
982
+ "description": "When true, includes the video transcript (WEBVTT) in `transcript` when one is available.",
983
+ "routing": {
984
+ "send": {
985
+ "type": "query",
986
+ "property": "getTranscript"
987
+ }
988
+ }
989
+ }
990
+ ]
991
+ },
992
+ {
993
+ "displayName": "Return All",
994
+ "name": "returnAll",
995
+ "type": "boolean",
996
+ "default": false,
997
+ "description": "Whether to return all results by paginating through every page, or only the first page. Each page consumes API credits.",
998
+ "displayOptions": {
999
+ "show": {
1000
+ "resource": [
1001
+ "tiktok"
1002
+ ],
1003
+ "operation": [
1004
+ "tiktok.video.comments.list"
1005
+ ]
1006
+ }
1007
+ }
1008
+ },
1009
+ {
1010
+ "displayName": "Url",
1011
+ "name": "url",
1012
+ "type": "string",
1013
+ "default": "",
1014
+ "description": "Link to the TikTok video whose comments should be listed.",
1015
+ "placeholder": "e.g. https://example.com/page",
1016
+ "required": true,
1017
+ "routing": {
1018
+ "send": {
1019
+ "type": "query",
1020
+ "property": "url"
1021
+ }
1022
+ },
1023
+ "displayOptions": {
1024
+ "show": {
1025
+ "resource": [
1026
+ "tiktok"
1027
+ ],
1028
+ "operation": [
1029
+ "tiktok.video.comments.list"
1030
+ ]
1031
+ }
1032
+ }
1033
+ },
1034
+ {
1035
+ "displayName": "Additional Fields",
1036
+ "name": "additionalOptions",
1037
+ "type": "collection",
1038
+ "placeholder": "Add Field",
1039
+ "default": {},
1040
+ "displayOptions": {
1041
+ "show": {
1042
+ "resource": [
1043
+ "tiktok"
1044
+ ],
1045
+ "operation": [
1046
+ "tiktok.video.comments.list"
1047
+ ]
1048
+ }
1049
+ },
1050
+ "options": [
1051
+ {
1052
+ "displayName": "Trim",
1053
+ "name": "trim",
1054
+ "type": "boolean",
1055
+ "default": false,
1056
+ "description": "When true, returns a smaller response with fewer fields.",
1057
+ "routing": {
1058
+ "send": {
1059
+ "type": "query",
1060
+ "property": "trim"
1061
+ }
1062
+ }
1063
+ }
1064
+ ]
1065
+ },
1066
+ {
1067
+ "displayName": "Url",
1068
+ "name": "url",
1069
+ "type": "string",
1070
+ "default": "",
1071
+ "description": "Link to the TikTok video whose transcript should be returned.",
1072
+ "placeholder": "e.g. https://example.com/page",
1073
+ "required": true,
1074
+ "routing": {
1075
+ "send": {
1076
+ "type": "query",
1077
+ "property": "url"
1078
+ }
1079
+ },
1080
+ "displayOptions": {
1081
+ "show": {
1082
+ "resource": [
1083
+ "tiktok"
1084
+ ],
1085
+ "operation": [
1086
+ "tiktok.video.transcript.get"
1087
+ ]
1088
+ }
1089
+ }
1090
+ },
1091
+ {
1092
+ "displayName": "Additional Fields",
1093
+ "name": "additionalOptions",
1094
+ "type": "collection",
1095
+ "placeholder": "Add Field",
1096
+ "default": {},
1097
+ "displayOptions": {
1098
+ "show": {
1099
+ "resource": [
1100
+ "tiktok"
1101
+ ],
1102
+ "operation": [
1103
+ "tiktok.video.transcript.get"
1104
+ ]
1105
+ }
1106
+ },
1107
+ "options": [
1108
+ {
1109
+ "displayName": "Language",
1110
+ "name": "language",
1111
+ "type": "string",
1112
+ "default": "",
1113
+ "description": "Optional two-letter language code to request a transcript in a specific language when available.",
1114
+ "routing": {
1115
+ "send": {
1116
+ "type": "query",
1117
+ "property": "language"
1118
+ }
1119
+ }
1120
+ },
1121
+ {
1122
+ "displayName": "Use Ai Fallback",
1123
+ "name": "useAiFallback",
1124
+ "type": "boolean",
1125
+ "default": false,
1126
+ "description": "When true, uses SocialFetch's AI fallback when a transcript is not otherwise available. Adds 10 credits on completed lookups (11 total with the base lookup).",
1127
+ "routing": {
1128
+ "send": {
1129
+ "type": "query",
1130
+ "property": "useAiFallback"
1131
+ }
1132
+ }
1133
+ }
1134
+ ]
1135
+ },
1136
+ {
1137
+ "displayName": "Region",
1138
+ "name": "region",
1139
+ "type": "string",
1140
+ "default": "",
1141
+ "description": "Two-letter region code for the request.",
1142
+ "required": true,
1143
+ "routing": {
1144
+ "send": {
1145
+ "type": "query",
1146
+ "property": "region"
1147
+ }
1148
+ },
1149
+ "displayOptions": {
1150
+ "show": {
1151
+ "resource": [
1152
+ "tiktok"
1153
+ ],
1154
+ "operation": [
1155
+ "tiktok.feed.trending.list"
1156
+ ]
1157
+ }
1158
+ }
1159
+ },
1160
+ {
1161
+ "displayName": "Additional Fields",
1162
+ "name": "additionalOptions",
1163
+ "type": "collection",
1164
+ "placeholder": "Add Field",
1165
+ "default": {},
1166
+ "displayOptions": {
1167
+ "show": {
1168
+ "resource": [
1169
+ "tiktok"
1170
+ ],
1171
+ "operation": [
1172
+ "tiktok.feed.trending.list"
1173
+ ]
1174
+ }
1175
+ },
1176
+ "options": [
1177
+ {
1178
+ "displayName": "Trim",
1179
+ "name": "trim",
1180
+ "type": "boolean",
1181
+ "default": false,
1182
+ "description": "When true, requests a smaller response with fewer optional fields.",
1183
+ "routing": {
1184
+ "send": {
1185
+ "type": "query",
1186
+ "property": "trim"
1187
+ }
1188
+ }
1189
+ }
1190
+ ]
1191
+ },
1192
+ {
1193
+ "displayName": "Query",
1194
+ "name": "query",
1195
+ "type": "string",
1196
+ "default": "",
1197
+ "description": "Search query text for TikTok Shop products.",
1198
+ "placeholder": "e.g. automation",
1199
+ "required": true,
1200
+ "routing": {
1201
+ "send": {
1202
+ "type": "query",
1203
+ "property": "query"
1204
+ }
1205
+ },
1206
+ "displayOptions": {
1207
+ "show": {
1208
+ "resource": [
1209
+ "tiktok"
1210
+ ],
1211
+ "operation": [
1212
+ "tiktok.shop.products.search"
1213
+ ]
1214
+ }
1215
+ }
1216
+ },
1217
+ {
1218
+ "displayName": "Additional Fields",
1219
+ "name": "additionalOptions",
1220
+ "type": "collection",
1221
+ "placeholder": "Add Field",
1222
+ "default": {},
1223
+ "displayOptions": {
1224
+ "show": {
1225
+ "resource": [
1226
+ "tiktok"
1227
+ ],
1228
+ "operation": [
1229
+ "tiktok.shop.products.search"
1230
+ ]
1231
+ }
1232
+ },
1233
+ "options": [
1234
+ {
1235
+ "displayName": "Page",
1236
+ "name": "page",
1237
+ "type": "number",
1238
+ "default": 0,
1239
+ "description": "1-based results page number. Omit to request the first page. Pagination is page-based.",
1240
+ "routing": {
1241
+ "send": {
1242
+ "type": "query",
1243
+ "property": "page"
1244
+ }
1245
+ }
1246
+ },
1247
+ {
1248
+ "displayName": "Region",
1249
+ "name": "region",
1250
+ "type": "options",
1251
+ "options": [
1252
+ {
1253
+ "name": "US",
1254
+ "value": "US"
1255
+ },
1256
+ {
1257
+ "name": "GB",
1258
+ "value": "GB"
1259
+ },
1260
+ {
1261
+ "name": "DE",
1262
+ "value": "DE"
1263
+ },
1264
+ {
1265
+ "name": "FR",
1266
+ "value": "FR"
1267
+ },
1268
+ {
1269
+ "name": "IT",
1270
+ "value": "IT"
1271
+ },
1272
+ {
1273
+ "name": "ID",
1274
+ "value": "ID"
1275
+ },
1276
+ {
1277
+ "name": "MY",
1278
+ "value": "MY"
1279
+ },
1280
+ {
1281
+ "name": "MX",
1282
+ "value": "MX"
1283
+ },
1284
+ {
1285
+ "name": "PH",
1286
+ "value": "PH"
1287
+ },
1288
+ {
1289
+ "name": "SG",
1290
+ "value": "SG"
1291
+ },
1292
+ {
1293
+ "name": "ES",
1294
+ "value": "ES"
1295
+ },
1296
+ {
1297
+ "name": "TH",
1298
+ "value": "TH"
1299
+ },
1300
+ {
1301
+ "name": "VN",
1302
+ "value": "VN"
1303
+ },
1304
+ {
1305
+ "name": "BR",
1306
+ "value": "BR"
1307
+ },
1308
+ {
1309
+ "name": "JP",
1310
+ "value": "JP"
1311
+ },
1312
+ {
1313
+ "name": "IE",
1314
+ "value": "IE"
1315
+ }
1316
+ ],
1317
+ "default": "US",
1318
+ "description": "Optional country or region code for the product search catalog.",
1319
+ "routing": {
1320
+ "send": {
1321
+ "type": "query",
1322
+ "property": "region"
1323
+ }
1324
+ }
1325
+ }
1326
+ ]
1327
+ },
1328
+ {
1329
+ "displayName": "Return All",
1330
+ "name": "returnAll",
1331
+ "type": "boolean",
1332
+ "default": false,
1333
+ "description": "Whether to return all results by paginating through every page, or only the first page. Each page consumes API credits.",
1334
+ "displayOptions": {
1335
+ "show": {
1336
+ "resource": [
1337
+ "tiktok"
1338
+ ],
1339
+ "operation": [
1340
+ "tiktok.shop.products.list"
1341
+ ]
1342
+ }
1343
+ }
1344
+ },
1345
+ {
1346
+ "displayName": "Url",
1347
+ "name": "url",
1348
+ "type": "string",
1349
+ "default": "",
1350
+ "description": "Public TikTok Shop store URL whose products should be listed.",
1351
+ "placeholder": "e.g. https://example.com/page",
1352
+ "required": true,
1353
+ "routing": {
1354
+ "send": {
1355
+ "type": "query",
1356
+ "property": "url"
1357
+ }
1358
+ },
1359
+ "displayOptions": {
1360
+ "show": {
1361
+ "resource": [
1362
+ "tiktok"
1363
+ ],
1364
+ "operation": [
1365
+ "tiktok.shop.products.list"
1366
+ ]
1367
+ }
1368
+ }
1369
+ },
1370
+ {
1371
+ "displayName": "Additional Fields",
1372
+ "name": "additionalOptions",
1373
+ "type": "collection",
1374
+ "placeholder": "Add Field",
1375
+ "default": {},
1376
+ "displayOptions": {
1377
+ "show": {
1378
+ "resource": [
1379
+ "tiktok"
1380
+ ],
1381
+ "operation": [
1382
+ "tiktok.shop.products.list"
1383
+ ]
1384
+ }
1385
+ },
1386
+ "options": [
1387
+ {
1388
+ "displayName": "Region",
1389
+ "name": "region",
1390
+ "type": "options",
1391
+ "options": [
1392
+ {
1393
+ "name": "US",
1394
+ "value": "US"
1395
+ },
1396
+ {
1397
+ "name": "GB",
1398
+ "value": "GB"
1399
+ },
1400
+ {
1401
+ "name": "DE",
1402
+ "value": "DE"
1403
+ },
1404
+ {
1405
+ "name": "FR",
1406
+ "value": "FR"
1407
+ },
1408
+ {
1409
+ "name": "IT",
1410
+ "value": "IT"
1411
+ },
1412
+ {
1413
+ "name": "ID",
1414
+ "value": "ID"
1415
+ },
1416
+ {
1417
+ "name": "MY",
1418
+ "value": "MY"
1419
+ },
1420
+ {
1421
+ "name": "MX",
1422
+ "value": "MX"
1423
+ },
1424
+ {
1425
+ "name": "PH",
1426
+ "value": "PH"
1427
+ },
1428
+ {
1429
+ "name": "SG",
1430
+ "value": "SG"
1431
+ },
1432
+ {
1433
+ "name": "ES",
1434
+ "value": "ES"
1435
+ },
1436
+ {
1437
+ "name": "TH",
1438
+ "value": "TH"
1439
+ },
1440
+ {
1441
+ "name": "VN",
1442
+ "value": "VN"
1443
+ },
1444
+ {
1445
+ "name": "BR",
1446
+ "value": "BR"
1447
+ },
1448
+ {
1449
+ "name": "JP",
1450
+ "value": "JP"
1451
+ },
1452
+ {
1453
+ "name": "IE",
1454
+ "value": "IE"
1455
+ }
1456
+ ],
1457
+ "default": "US",
1458
+ "description": "Optional region code for the shop catalog. When omitted, the default catalog region is US.",
1459
+ "routing": {
1460
+ "send": {
1461
+ "type": "query",
1462
+ "property": "region"
1463
+ }
1464
+ }
1465
+ }
1466
+ ]
1467
+ },
1468
+ {
1469
+ "displayName": "Url",
1470
+ "name": "url",
1471
+ "type": "string",
1472
+ "default": "",
1473
+ "description": "Public TikTok Shop product detail page URL for the product to retrieve.",
1474
+ "placeholder": "e.g. https://example.com/page",
1475
+ "required": true,
1476
+ "routing": {
1477
+ "send": {
1478
+ "type": "query",
1479
+ "property": "url"
1480
+ }
1481
+ },
1482
+ "displayOptions": {
1483
+ "show": {
1484
+ "resource": [
1485
+ "tiktok"
1486
+ ],
1487
+ "operation": [
1488
+ "tiktok.product.get"
1489
+ ]
1490
+ }
1491
+ }
1492
+ },
1493
+ {
1494
+ "displayName": "Additional Fields",
1495
+ "name": "additionalOptions",
1496
+ "type": "collection",
1497
+ "placeholder": "Add Field",
1498
+ "default": {},
1499
+ "displayOptions": {
1500
+ "show": {
1501
+ "resource": [
1502
+ "tiktok"
1503
+ ],
1504
+ "operation": [
1505
+ "tiktok.product.get"
1506
+ ]
1507
+ }
1508
+ },
1509
+ "options": [
1510
+ {
1511
+ "displayName": "Region",
1512
+ "name": "region",
1513
+ "type": "options",
1514
+ "options": [
1515
+ {
1516
+ "name": "US",
1517
+ "value": "US"
1518
+ },
1519
+ {
1520
+ "name": "GB",
1521
+ "value": "GB"
1522
+ },
1523
+ {
1524
+ "name": "DE",
1525
+ "value": "DE"
1526
+ },
1527
+ {
1528
+ "name": "FR",
1529
+ "value": "FR"
1530
+ },
1531
+ {
1532
+ "name": "IT",
1533
+ "value": "IT"
1534
+ },
1535
+ {
1536
+ "name": "ID",
1537
+ "value": "ID"
1538
+ },
1539
+ {
1540
+ "name": "MY",
1541
+ "value": "MY"
1542
+ },
1543
+ {
1544
+ "name": "MX",
1545
+ "value": "MX"
1546
+ },
1547
+ {
1548
+ "name": "PH",
1549
+ "value": "PH"
1550
+ },
1551
+ {
1552
+ "name": "SG",
1553
+ "value": "SG"
1554
+ },
1555
+ {
1556
+ "name": "ES",
1557
+ "value": "ES"
1558
+ },
1559
+ {
1560
+ "name": "TH",
1561
+ "value": "TH"
1562
+ },
1563
+ {
1564
+ "name": "VN",
1565
+ "value": "VN"
1566
+ },
1567
+ {
1568
+ "name": "BR",
1569
+ "value": "BR"
1570
+ },
1571
+ {
1572
+ "name": "JP",
1573
+ "value": "JP"
1574
+ },
1575
+ {
1576
+ "name": "IE",
1577
+ "value": "IE"
1578
+ }
1579
+ ],
1580
+ "default": "US",
1581
+ "description": "Optional country or region code for the product catalog. When omitted, the default catalog region applies.",
1582
+ "routing": {
1583
+ "send": {
1584
+ "type": "query",
1585
+ "property": "region"
1586
+ }
1587
+ }
1588
+ }
1589
+ ]
1590
+ },
1591
+ {
1592
+ "displayName": "Additional Fields",
1593
+ "name": "additionalOptions",
1594
+ "type": "collection",
1595
+ "placeholder": "Add Field",
1596
+ "default": {},
1597
+ "displayOptions": {
1598
+ "show": {
1599
+ "resource": [
1600
+ "tiktok"
1601
+ ],
1602
+ "operation": [
1603
+ "tiktok.product.reviews.list"
1604
+ ]
1605
+ }
1606
+ },
1607
+ "options": [
1608
+ {
1609
+ "displayName": "Url",
1610
+ "name": "url",
1611
+ "type": "string",
1612
+ "default": "",
1613
+ "description": "Public TikTok Shop product detail page URL for the product whose reviews should be listed.",
1614
+ "placeholder": "e.g. https://example.com/page",
1615
+ "routing": {
1616
+ "send": {
1617
+ "type": "query",
1618
+ "property": "url"
1619
+ }
1620
+ }
1621
+ },
1622
+ {
1623
+ "displayName": "Product Id",
1624
+ "name": "productId",
1625
+ "type": "string",
1626
+ "default": "",
1627
+ "description": "TikTok Shop product identifier. Provide this instead of `url` when you already know the product id.",
1628
+ "routing": {
1629
+ "send": {
1630
+ "type": "query",
1631
+ "property": "productId"
1632
+ }
1633
+ }
1634
+ },
1635
+ {
1636
+ "displayName": "Region",
1637
+ "name": "region",
1638
+ "type": "options",
1639
+ "options": [
1640
+ {
1641
+ "name": "US",
1642
+ "value": "US"
1643
+ },
1644
+ {
1645
+ "name": "GB",
1646
+ "value": "GB"
1647
+ },
1648
+ {
1649
+ "name": "DE",
1650
+ "value": "DE"
1651
+ },
1652
+ {
1653
+ "name": "FR",
1654
+ "value": "FR"
1655
+ },
1656
+ {
1657
+ "name": "IT",
1658
+ "value": "IT"
1659
+ },
1660
+ {
1661
+ "name": "ID",
1662
+ "value": "ID"
1663
+ },
1664
+ {
1665
+ "name": "MY",
1666
+ "value": "MY"
1667
+ },
1668
+ {
1669
+ "name": "MX",
1670
+ "value": "MX"
1671
+ },
1672
+ {
1673
+ "name": "PH",
1674
+ "value": "PH"
1675
+ },
1676
+ {
1677
+ "name": "SG",
1678
+ "value": "SG"
1679
+ },
1680
+ {
1681
+ "name": "ES",
1682
+ "value": "ES"
1683
+ },
1684
+ {
1685
+ "name": "TH",
1686
+ "value": "TH"
1687
+ },
1688
+ {
1689
+ "name": "VN",
1690
+ "value": "VN"
1691
+ },
1692
+ {
1693
+ "name": "BR",
1694
+ "value": "BR"
1695
+ },
1696
+ {
1697
+ "name": "JP",
1698
+ "value": "JP"
1699
+ },
1700
+ {
1701
+ "name": "IE",
1702
+ "value": "IE"
1703
+ }
1704
+ ],
1705
+ "default": "US",
1706
+ "description": "Optional country or region code for the product review catalog. When omitted, the default catalog region applies.",
1707
+ "routing": {
1708
+ "send": {
1709
+ "type": "query",
1710
+ "property": "region"
1711
+ }
1712
+ }
1713
+ },
1714
+ {
1715
+ "displayName": "Page",
1716
+ "name": "page",
1717
+ "type": "number",
1718
+ "default": 0,
1719
+ "description": "1-based review page number. Omit to request the first page.",
1720
+ "routing": {
1721
+ "send": {
1722
+ "type": "query",
1723
+ "property": "page"
1724
+ }
1725
+ }
1726
+ }
1727
+ ]
1728
+ },
1729
+ {
1730
+ "displayName": "Return All",
1731
+ "name": "returnAll",
1732
+ "type": "boolean",
1733
+ "default": false,
1734
+ "description": "Whether to return all results by paginating through every page, or only the first page. Each page consumes API credits.",
1735
+ "displayOptions": {
1736
+ "show": {
1737
+ "resource": [
1738
+ "tiktok"
1739
+ ],
1740
+ "operation": [
1741
+ "tiktok.profile.showcaseProducts.list"
1742
+ ]
1743
+ }
1744
+ }
1745
+ },
1746
+ {
1747
+ "displayName": "Handle",
1748
+ "name": "handle",
1749
+ "type": "string",
1750
+ "default": "",
1751
+ "description": "TikTok handle whose profile showcase products should be listed.",
1752
+ "placeholder": "e.g. n8n",
1753
+ "required": true,
1754
+ "displayOptions": {
1755
+ "show": {
1756
+ "resource": [
1757
+ "tiktok"
1758
+ ],
1759
+ "operation": [
1760
+ "tiktok.profile.showcaseProducts.list"
1761
+ ]
1762
+ }
1763
+ }
1764
+ },
1765
+ {
1766
+ "displayName": "Additional Fields",
1767
+ "name": "additionalOptions",
1768
+ "type": "collection",
1769
+ "placeholder": "Add Field",
1770
+ "default": {},
1771
+ "displayOptions": {
1772
+ "show": {
1773
+ "resource": [
1774
+ "tiktok"
1775
+ ],
1776
+ "operation": [
1777
+ "tiktok.profile.showcaseProducts.list"
1778
+ ]
1779
+ }
1780
+ },
1781
+ "options": [
1782
+ {
1783
+ "displayName": "Region",
1784
+ "name": "region",
1785
+ "type": "string",
1786
+ "default": "",
1787
+ "description": "Optional region (country code) for the request.",
1788
+ "routing": {
1789
+ "send": {
1790
+ "type": "query",
1791
+ "property": "region"
1792
+ }
1793
+ }
1794
+ }
1795
+ ]
1796
+ }
1797
+ ];