-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStreamBox-API-Insomnia.yaml
More file actions
1175 lines (1175 loc) · 34.2 KB
/
StreamBox-API-Insomnia.yaml
File metadata and controls
1175 lines (1175 loc) · 34.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
type: collection.insomnia.rest/5.0
name: StreamBox API
meta:
id: wrk_d5513ee831d448d286f60bca072e9132
created: 1767801417023
modified: 1767801417023
description: ""
collection:
- name: Health
meta:
id: fld_0d8f7cd5933f44d0bfa0fbb6d6219cc2
created: 1736121007524
modified: 1736121007524
sortKey: 0
description: ""
children:
- url: "{{ _.baseUrl }}/"
name: Health Check
meta:
id: req_7d5d4c628017457fbc17e207eb4d2c3a
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Check API health status
sortKey: -1736121007524
method: GET
headers:
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- name: Videos
meta:
id: fld_24e213cdd35c425daa202480f1e14fa8
created: 1736121007524
modified: 1736121007524
sortKey: 0
description: ""
children:
- url: "{{ _.baseUrl }}/videos/{{ _.videoId }}"
name: Get Video by ID
meta:
id: req_1cc0f9851a714037b67780afeb12a0f6
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Get video details by ID
sortKey: -1736121007525
method: GET
headers:
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/videos/{{ _.videoId }}"
name: Update Video
meta:
id: req_52c79b9dc7d1485fb33c6e7a43cf7a93
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Update video metadata
sortKey: -1736121007529
method: PATCH
body:
mimeType: application/json
text: |-
{
"title": "Updated Video Title",
"description": "Updated video description with more details."
}
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: Content-Type
value: application/json
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/api/videos"
name: List All Videos
meta:
id: req_9253c38e61a646fb8e661575072e8574
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: List all videos with pagination and filters
sortKey: -1736121007528
method: GET
parameters:
- name: page
value: "1"
- name: limit
value: "20"
- name: status
value: ready
disabled: true
headers:
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/channels/{{ _.channelId }}/videos"
name: Upload Video
meta:
id: req_a0f0a35368314903bbaa0597bcc44374
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Upload a new video to a channel
sortKey: -1736121007524
method: POST
body:
mimeType: multipart/form-data
params:
- name: file
value: ""
fileName: ""
type: file
- name: title
value: My First Video
- name: description
value: This is the description of my first uploaded video.
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/videos/{{ _.videoId }}"
name: Delete Video
meta:
id: req_d986353e0c954e63876387240f3bb4fd
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Delete a video
sortKey: -1736121007530
method: DELETE
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/videos/{{ _.videoId }}/status"
name: Get Video Processing Status
meta:
id: req_de3ab35da2fa4d159eaca34ddc005192
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Get video processing/transcoding status
sortKey: -1736121007526
method: GET
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/channels/{{ _.channelId }}/videos"
name: Get Channel Videos
meta:
id: req_fa336b801cad47f88c1250f22634ca39
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Get all videos for a channel
sortKey: -1736121007527
method: GET
parameters:
- name: page
value: "1"
- name: limit
value: "20"
headers:
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- name: Auth
meta:
id: fld_2c4c7baf16aa4d629348b973ec3e5092
created: 1736121007524
modified: 1736121007524
sortKey: 0
description: ""
children:
- url: "{{ _.baseUrl }}/auth/login"
name: Login
meta:
id: req_1e514d153fb24ee2b8428f867bb55a87
created: 1736121007524
modified: 1767801638529
isPrivate: false
description: Login with email and password
sortKey: -1736121007525
method: POST
body:
mimeType: application/json
text: |-
{
"email": "testuser3@example.com",
"password": "SecurePass123!"
}
headers:
- name: Content-Type
value: application/json
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/auth/me"
name: Get Current User
meta:
id: req_83329f9667e74c92bf23bbd9c75168eb
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Get authenticated user profile
sortKey: -1736121007526
method: GET
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/auth/register"
name: Register User
meta:
id: req_a11cfa530ec0403b8b233d974019b466
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Register a new user account
sortKey: -1736121007524
method: POST
body:
mimeType: application/json
text: |-
{
"email": "testuser@example.com",
"username": "testuser123",
"password": "SecurePass123!",
"displayName": "Test User"
}
headers:
- name: Content-Type
value: application/json
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/auth/logout"
name: Logout
meta:
id: req_ec853b90d7794a1abfa37da13b65a250
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Logout current user
sortKey: -1736121007527
method: POST
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- name: Engagement
meta:
id: fld_2e336e4b87114a86bfe19940a3a80bc9
created: 1736121007524
modified: 1736121007524
sortKey: 0
description: ""
children:
- url: "{{ _.baseUrl }}/api/videos/{{ _.videoId }}/dislike"
name: Dislike Video
meta:
id: req_4339667e844e4800b20b2550486fa041
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Dislike a video
sortKey: -1736121007525
method: POST
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/api/videos/{{ _.videoId }}/comments"
name: Add Comment
meta:
id: req_63dbbcfacf7d4bc2a5b81b43f2c32fc9
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Add a comment to a video
sortKey: -1736121007528
method: POST
body:
mimeType: application/json
text: |-
{
"content": "This is a great video! Thanks for sharing."
}
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: Content-Type
value: application/json
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/api/comments/{{ _.commentId }}"
name: Delete Comment
meta:
id: req_66d6a1cc438145bc8bb9737034ad75ef
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Delete a comment
sortKey: -1736121007530
method: DELETE
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/api/videos/{{ _.videoId }}/reaction"
name: Remove Reaction
meta:
id: req_75ec335ea2a84ac39ef78931cec62448
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Remove like/dislike reaction from video
sortKey: -1736121007526
method: DELETE
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/api/videos/{{ _.videoId }}/like"
name: Like Video
meta:
id: req_90891f20494343d39db07b07a2648661
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Like a video
sortKey: -1736121007524
method: POST
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/api/videos/{{ _.videoId }}/comments"
name: Reply to Comment
meta:
id: req_9ed4cde628804938a78fa8c852e3d2be
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Reply to an existing comment
sortKey: -1736121007529
method: POST
body:
mimeType: application/json
text: |-
{
"content": "Thanks for your comment!",
"parentId": "{{ _.commentId }}"
}
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: Content-Type
value: application/json
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/api/videos/{{ _.videoId }}/comments"
name: Get Video Comments
meta:
id: req_a719419f3f60479f9bef74f243294116
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Get comments for a video
sortKey: -1736121007527
method: GET
parameters:
- name: page
value: "1"
- name: limit
value: "20"
headers:
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- name: Subscriptions
meta:
id: fld_55acdea8b9d74a6ab1ce5e3a3dbbae02
created: 1736121007524
modified: 1736121007524
sortKey: 0
description: ""
children:
- url: "{{ _.baseUrl }}/api/subscriptions"
name: Get My Subscriptions
meta:
id: req_43e2bd073eb24af3af701c862a5e40b9
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Get all subscribed channels
sortKey: -1736121007526
method: GET
parameters:
- name: page
value: "1"
- name: limit
value: "20"
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/api/feed"
name: Get Subscription Feed
meta:
id: req_ac72f8a5b80044fd874cbd2c0996361f
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Get video feed from subscribed channels
sortKey: -1736121007527
method: GET
parameters:
- name: cursor
value: ""
disabled: true
- name: limit
value: "20"
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/api/channels/{{ _.channelId }}/subscribe"
name: Subscribe to Channel
meta:
id: req_d642cff9f2e64525a2a984ef9ed4cead
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Subscribe to a channel
sortKey: -1736121007524
method: POST
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/api/channels/{{ _.channelId }}/subscribe"
name: Unsubscribe from Channel
meta:
id: req_ed4838fcf8fb4d3982d80fa8ecfcc780
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Unsubscribe from a channel
sortKey: -1736121007525
method: DELETE
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- name: Users
meta:
id: fld_5f9cd316b0114e12a9de32216535d7b7
created: 1736121007524
modified: 1736121007524
sortKey: 0
description: ""
children:
- url: "{{ _.baseUrl }}/api/users/{{ _.userId }}"
name: Get User by ID
meta:
id: req_492a002aa37546bc82b46ade846f80ea
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Get user details by ID
sortKey: -1736121007524
method: GET
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/api/users/{{ _.userId }}"
name: Update User
meta:
id: req_fc8d379b66234e4fbc8ca1db9458258c
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Update user profile
sortKey: -1736121007525
method: PATCH
body:
mimeType: application/json
text: |-
{
"displayName": "Updated Display Name",
"avatarUrl": "https://example.com/avatar.jpg"
}
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: Content-Type
value: application/json
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- name: Admin
meta:
id: fld_94244c27a0cf4b819d445bd7503918c9
created: 1736121007524
modified: 1736121007524
sortKey: 0
description: ""
children:
- url: "{{ _.baseUrl }}/admin/videos/{{ _.videoId }}/reject"
name: Reject Video
meta:
id: req_35b8e2d90b0046f7bfb7df61794fbc07
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Reject a video with reason
sortKey: -1736121007526
method: POST
body:
mimeType: application/json
text: |-
{
"reason": "Content violates community guidelines"
}
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: Content-Type
value: application/json
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/admin/videos/{{ _.videoId }}/approve"
name: Approve Video
meta:
id: req_54375749934b4fd9a0ad32664d88da92
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Approve a video for publishing
sortKey: -1736121007525
method: POST
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/admin/moderation-queue"
name: Get Moderation Queue
meta:
id: req_ad2de205ec6e49b8bfcd5544a7b5ba76
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Get videos pending moderation
sortKey: -1736121007524
method: GET
parameters:
- name: page
value: "1"
- name: limit
value: "20"
- name: status
value: pending
disabled: true
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- name: Search
meta:
id: fld_da30c4dddd334a2cb6ce3d8201e07114
created: 1736121007524
modified: 1736121007524
sortKey: 0
description: ""
children:
- url: "{{ _.baseUrl }}/api/videos/trending"
name: Get Trending Videos
meta:
id: req_6c4d8277ac0043b69618c929abd04919
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Get trending videos
sortKey: -1736121007526
method: GET
parameters:
- name: limit
value: "20"
- name: period
value: 7d
disabled: true
headers:
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/api/search/videos"
name: Search Videos
meta:
id: req_e8c1a69ecef7418dbfe0e8a7e4dbf9ea
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Search for videos by query
sortKey: -1736121007524
method: GET
parameters:
- name: q
value: tutorial
- name: page
value: "1"
- name: limit
value: "20"
- name: sort
value: relevance
disabled: true
headers:
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/api/search/channels"
name: Search Channels
meta:
id: req_e9ad69e8decd42e5b2c87a1a7f8b4428
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: Search for channels by query
sortKey: -1736121007525
method: GET
parameters:
- name: q
value: gaming
- name: page
value: "1"
- name: limit
value: "20"
headers:
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- name: Channels
meta:
id: fld_fbef9c13c8ec4fe4b9a384b1fa4335cb
created: 1736121007524
modified: 1736121007524
sortKey: 0
description: ""
children:
- url: "{{ _.baseUrl }}/api/channels"
name: List All Channels
meta:
id: req_65f5f59dddc34d859e502e63ca909e1d
created: 1736121007524
modified: 1736121007524
isPrivate: false
description: List all channels with pagination
sortKey: -1736121007527
method: GET
parameters:
- name: page
value: "1"
- name: limit
value: "20"
headers:
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/channels/cmk4jopj70003etfiylj2axco"
name: Delete Channel
meta:
id: req_70a90f8123694637b544e0f3aca4ef03
created: 1736121007524
modified: 1767824743632
isPrivate: false
description: Delete a channel
sortKey: -1736121007529
method: DELETE
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/channels"
name: Create Channel
meta:
id: req_970975ceb44043a884a029ed56f401bb
created: 1736121007524
modified: 1767822239195
isPrivate: false
description: Create a new channel
sortKey: -1736121007524
method: POST
body:
mimeType: application/json
text: |-
{
"name": "My Awesome Channel8",
"handle": "myawesomechannel8",
"description": "This is my channel for awesome content!"
}
headers:
- name: Authorization
value: Bearer {{ _.accessToken }}
- name: Content-Type
value: application/json
- name: User-Agent
value: insomnia/11.5.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: "{{ _.baseUrl }}/channels/{{ _.channelId }}"
name: Update Channel
meta:
id: req_b5ef837a43ca4ab8aeb08f90a1e406cd
created: 1736121007524
modified: 1767878249379
isPrivate: false
description: Update channel details
sortKey: -1736121007528
method: PATCH
body: