-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstream.yaml
2856 lines (2856 loc) · 124 KB
/
stream.yaml
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
swagger: "2.0"
x-stoplight:
id: 2sx0arp6v1nl9
info:
title: Gotipath API
version: v1
termsOfService: "https://www.gotipath.com/legal"
x-providerName: gotipath.com
x-preferred: true
description: Welcome to the Streaming Platform API documentation. Learn how to use the Gotipath API. Everything that can be done with the control panel can also be achieved with our API documented on this page.
contact:
email: developer@gotipath.com
name: Gotipath Developers
url: "https://gotipath.com/support"
x-twitter: Gotipath
x-apisguru-categories:
- telecom
license:
name: MIT
url: "https://opensource.org/licenses/MIT"
x-logo:
url: "https://images.prismic.io/gotipath-website/9d1ecca4-d282-4eb1-a7d3-9534700edcf8_gotiPath_logo.png"
href: "https://docs.gotipath.com/"
altText: Gotipath
host: apistream.gotipath.com
basePath: /v1
schemes:
- https
produces:
- application/json
consumes:
- application/json
security:
- X-Auth-LibraryId: []
- X-Auth-ApiKey: []
- X-Auth-ClientId: []
paths:
"/libraries/{id}/collections":
parameters:
- type: string
name: id
in: path
required: true
description: libraries id
format: uuid
get:
summary: Get All Collections
tags:
- Collections
responses:
"200":
description: OK
schema:
type: object
properties:
message:
type: string
result:
type: object
properties:
data:
type: array
items:
type: object
properties:
id:
type: string
library_id:
type: string
created_at:
type: string
updated_at:
type: string
name:
type: string
parent_id:
type: string
children:
type: array
items:
type: object
properties:
id:
type: string
library_id:
type: string
created_at:
type: string
updated_at:
type: string
name:
type: string
parent_id:
type: string
children:
type: array
items:
type: object
properties: {}
success:
type: boolean
x-examples:
Example 1:
message: Collection Tree
result:
data:
- id: 21d26242-b240-4afb-a2c4-170fb71fc6d3
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:08:58.898+06:00"
updated_at: "2022-12-04T12:08:58.898+06:00"
name: test
parent_id: ""
children:
- id: dd003855-149e-44af-ac50-3921a4e02500
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:11:52.543+06:00"
updated_at: "2022-12-04T12:11:52.543+06:00"
name: test
parent_id: 21d26242-b240-4afb-a2c4-170fb71fc6d3
children: []
- id: b7460472-b7ad-46b9-a4fb-ebd1dfec923b
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:12:03.778+06:00"
updated_at: "2022-12-04T12:12:03.778+06:00"
name: test
parent_id: 21d26242-b240-4afb-a2c4-170fb71fc6d3
children: []
- id: 166d5f8d-e475-4fe9-8d05-306be9a5e378
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:12:24.001+06:00"
updated_at: "2022-12-04T12:12:24.001+06:00"
name: Movies
parent_id: ""
children:
- id: e7ec9662-de19-4791-8e82-d3c4860afc4d
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:13:21.841+06:00"
updated_at: "2022-12-04T12:13:21.841+06:00"
name: Bangla Movies
parent_id: 166d5f8d-e475-4fe9-8d05-306be9a5e378
children: []
- id: 9d61383c-1ecb-4750-af49-9bca83e2b45c
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:13:31.723+06:00"
updated_at: "2022-12-04T12:13:31.723+06:00"
name: Enlish Movies
parent_id: 166d5f8d-e475-4fe9-8d05-306be9a5e378
children: []
- id: fbe6138b-804f-479a-931e-46436cddd50c
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:13:43.937+06:00"
updated_at: "2022-12-04T12:13:43.937+06:00"
name: Catoon Movies
parent_id: 166d5f8d-e475-4fe9-8d05-306be9a5e378
children: []
- id: 89a67707-260d-44d1-9bd6-ab6096e21a9c
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:16:03.072+06:00"
updated_at: "2022-12-04T12:16:03.072+06:00"
name: Tutorial
parent_id: ""
children:
- id: ffde1310-6a26-41e1-9ddd-ea05ba77b517
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:16:30.549+06:00"
updated_at: "2022-12-04T12:16:30.549+06:00"
name: Go
parent_id: 89a67707-260d-44d1-9bd6-ab6096e21a9c
children:
- id: 666e6f4f-78a7-44cf-971c-5b670086ae51
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:17:37.674+06:00"
updated_at: "2022-12-04T12:17:37.674+06:00"
name: Conncurency
parent_id: ffde1310-6a26-41e1-9ddd-ea05ba77b517
children:
- id: 61c0193d-c2f9-47a6-8221-63995b5f35cd
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:45:59.322+06:00"
updated_at: "2022-12-04T14:45:59.322+06:00"
name: Lession 01
parent_id: 666e6f4f-78a7-44cf-971c-5b670086ae51
children:
- id: 2017b3bb-e1b3-450a-9076-12b0021bd4e4
library_id: 61c0193d-c2f9-47a6-8221-63995b5f35cd
created_at: "2022-12-05T15:38:01.607+06:00"
updated_at: "2022-12-05T15:38:01.607+06:00"
name: Lesson 01 - Sub
parent_id: 61c0193d-c2f9-47a6-8221-63995b5f35cd
children: []
- id: 356be3b0-c392-4976-be96-b47b471f953e
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:04.752+06:00"
updated_at: "2022-12-04T14:46:04.752+06:00"
name: Lession 02
parent_id: 666e6f4f-78a7-44cf-971c-5b670086ae51
children:
- id: 47d26b2b-4ef0-4e08-8bfc-9374158e8b5f
library_id: 356be3b0-c392-4976-be96-b47b471f953e
created_at: "2022-12-05T15:41:23.127+06:00"
updated_at: "2022-12-05T15:41:23.127+06:00"
name: Lesson 02 - Sub
parent_id: 356be3b0-c392-4976-be96-b47b471f953e
children: []
- id: 34280ec7-3e85-4460-9d08-f8ac9dccead4
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:07.907+06:00"
updated_at: "2022-12-04T14:46:07.907+06:00"
name: Lession 05
parent_id: 666e6f4f-78a7-44cf-971c-5b670086ae51
children: []
- id: 990cf2a7-b348-45ea-90a2-a9c1f1a9b019
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:13.21+06:00"
updated_at: "2022-12-04T14:46:13.21+06:00"
name: Lession 06
parent_id: 666e6f4f-78a7-44cf-971c-5b670086ae51
children: []
- id: cfcfea7b-1e1b-4dfb-ad00-46f81b2bd173
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:17.658+06:00"
updated_at: "2022-12-04T14:46:17.658+06:00"
name: Lession 07
parent_id: 666e6f4f-78a7-44cf-971c-5b670086ae51
children: []
- id: 21c31e59-f0d7-4569-a374-d3cc154e6806
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:22.144+06:00"
updated_at: "2022-12-04T14:46:22.144+06:00"
name: Lession 08
parent_id: 666e6f4f-78a7-44cf-971c-5b670086ae51
children: []
- id: 558da0e2-85c0-43bc-b4eb-d3f10f7aa4d8
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:26.986+06:00"
updated_at: "2022-12-04T14:46:26.986+06:00"
name: Lession 09
parent_id: 666e6f4f-78a7-44cf-971c-5b670086ae51
children:
- id: 225e42a2-4e86-4727-bc6c-ce40c02f59e7
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:44.931+06:00"
updated_at: "2022-12-04T14:46:44.931+06:00"
name: xfalfalf 09
parent_id: 558da0e2-85c0-43bc-b4eb-d3f10f7aa4d8
children: []
- id: 330903cb-ad7c-46f6-9688-3166e323b335
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:51.229+06:00"
updated_at: "2022-12-04T14:46:51.229+06:00"
name: xfalfalf 01
parent_id: 558da0e2-85c0-43bc-b4eb-d3f10f7aa4d8
children: []
- id: 7b3ade95-b9e3-48a9-8ce7-635c4afda2af
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:55.314+06:00"
updated_at: "2022-12-04T14:46:55.314+06:00"
name: xfalfalf 02
parent_id: 558da0e2-85c0-43bc-b4eb-d3f10f7aa4d8
children:
- id: 86af9c81-9532-49a2-b6dd-347eae7174f6
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:48:02.091+06:00"
updated_at: "2022-12-04T14:48:02.091+06:00"
name: xfalfalf 02
parent_id: 7b3ade95-b9e3-48a9-8ce7-635c4afda2af
children: []
- id: 845bc540-78b6-498f-a1ed-185b6b3d8319
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:48:03.176+06:00"
updated_at: "2022-12-04T14:48:03.176+06:00"
name: xfalfalf 02
parent_id: 7b3ade95-b9e3-48a9-8ce7-635c4afda2af
children: []
- id: ff82c90b-2c39-4c33-a3fc-5c932fc4ece1
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T16:01:51.924+06:00"
updated_at: "2022-12-04T16:01:51.924+06:00"
name: xfalfalf 02
parent_id: 7b3ade95-b9e3-48a9-8ce7-635c4afda2af
children: []
- id: 99bbd2a4-1db0-4381-807c-487468785a19
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:17:47.086+06:00"
updated_at: "2022-12-04T12:17:47.086+06:00"
name: Channel
parent_id: ffde1310-6a26-41e1-9ddd-ea05ba77b517
children: []
- id: b2e97f49-808c-4fa7-9c2e-f72d782a48d2
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:16:45.951+06:00"
updated_at: "2022-12-04T12:16:45.951+06:00"
name: C Programming
parent_id: 89a67707-260d-44d1-9bd6-ab6096e21a9c
children: []
- id: 9f78b0de-acb7-4c27-88fa-de9973600410
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:17:01.977+06:00"
updated_at: "2022-12-04T12:17:01.977+06:00"
name: Rust Tutorial
parent_id: 89a67707-260d-44d1-9bd6-ab6096e21a9c
children: []
- id: b8848271-eefb-4dff-bc36-34507b14dffa
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T19:06:25.716+06:00"
updated_at: "2022-12-04T19:06:25.716+06:00"
name: SSC
parent_id: ""
children:
- id: 43223a7d-e4ac-416a-91ba-5a7126747c7c
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T19:07:08.197+06:00"
updated_at: "2022-12-04T19:07:08.197+06:00"
name: Bangla
parent_id: b8848271-eefb-4dff-bc36-34507b14dffa
children: []
- id: ac07fc8f-b39e-4372-bac0-81d593138003
library_id: 39c58996-932c-4d7b-9577-aa64e051f25e
created_at: "2022-12-04T19:13:17.031+06:00"
updated_at: "2022-12-04T19:13:17.031+06:00"
name: HSC
parent_id: ""
children: []
- id: caded892-9f09-46c5-a52e-044052eb3f4a
library_id: 39c58996-932c-4d7b-9577-aa64e051f25e
created_at: "2022-12-04T19:13:39.715+06:00"
updated_at: "2022-12-04T19:13:39.715+06:00"
name: Sohel
parent_id: ""
children: []
- id: 64836f31-0432-4851-a151-bb3b2f123213
library_id: 39c58996-932c-4d7b-9577-aa64e051f25e
created_at: "2022-12-04T20:02:14.026+06:00"
updated_at: "2022-12-04T20:02:14.026+06:00"
name: JSC
parent_id: ""
children: []
- id: 6bc09f29-c645-47f8-b7fb-c1b265ba5c54
library_id: 39c58996-932c-4d7b-9577-aa64e051f25e
created_at: "2022-12-04T20:02:37.217+06:00"
updated_at: "2022-12-04T20:02:37.217+06:00"
name: PSC
parent_id: ""
children: []
- id: 8cea1877-2128-43e8-8fa2-94932b3a4a8a
library_id: 39c58996-932c-4d7b-9577-aa64e051f25e
created_at: "2022-12-04T20:06:20.275+06:00"
updated_at: "2022-12-04T20:06:20.275+06:00"
name: JPX
parent_id: ""
children:
- id: 8460534f-3d1e-49f0-99ae-26701f546f3d
library_id: 8cea1877-2128-43e8-8fa2-94932b3a4a8a
created_at: "2022-12-06T16:29:50.783+06:00"
updated_at: "2022-12-06T16:29:50.783+06:00"
name: JPX-SUB
parent_id: 8cea1877-2128-43e8-8fa2-94932b3a4a8a
children: []
- id: d7070df1-bc30-4bc3-8ff7-147aa5cbfbe3
library_id: 39c58996-932c-4d7b-9577-aa64e051f25e
created_at: "2022-12-05T11:57:36.783+06:00"
updated_at: "2022-12-05T11:57:36.783+06:00"
name: NPX
parent_id: ""
children:
- id: a2dce2c7-cd88-43b4-9e44-b7992c418702
library_id: d7070df1-bc30-4bc3-8ff7-147aa5cbfbe3
created_at: "2022-12-05T15:33:10.747+06:00"
updated_at: "2022-12-05T15:33:10.747+06:00"
name: NPX_SUB
parent_id: d7070df1-bc30-4bc3-8ff7-147aa5cbfbe3
children:
- id: 843a6d4a-a5aa-4885-bea3-83f66074e7ce
library_id: a2dce2c7-cd88-43b4-9e44-b7992c418702
created_at: "2022-12-06T16:21:02.777+06:00"
updated_at: "2022-12-06T16:21:02.777+06:00"
name: NPX_SUB-SUB
parent_id: a2dce2c7-cd88-43b4-9e44-b7992c418702
children: []
- id: 499397d3-a6a3-40d4-80a1-1bbf3c464452
library_id: a2dce2c7-cd88-43b4-9e44-b7992c418702
created_at: "2022-12-06T16:22:40.946+06:00"
updated_at: "2022-12-06T16:22:40.946+06:00"
name: NPX_SUB 2
parent_id: a2dce2c7-cd88-43b4-9e44-b7992c418702
children:
- id: 78232371-e76c-4544-9bbd-576149acf585
library_id: 499397d3-a6a3-40d4-80a1-1bbf3c464452
created_at: "2022-12-06T16:27:20.918+06:00"
updated_at: "2022-12-06T16:27:20.918+06:00"
name: NPX_SUB 2/2
parent_id: 499397d3-a6a3-40d4-80a1-1bbf3c464452
children: []
- id: 0c462f1a-d9d3-44c5-bcb7-a50f9b9b5947
library_id: 4c24ae13-478f-4d89-bf9f-ebab68c1424a
created_at: "2022-12-11T16:47:04.152+06:00"
updated_at: "2022-12-11T16:47:04.152+06:00"
name: Bangla
parent_id: ""
children: []
success: true
operationId: get-libraries-id-collections
description: Returns a list of created collections tree.
post:
tags:
- Collections
summary: Create Collections
operationId: post-libraries-id-collections
responses:
"200":
description: OK
description: Create collection
parameters:
- in: body
name: body
schema:
type: object
x-examples:
Example 1:
name: Bangla
parent_id: b8848271-eefb-4dff-bc36-34507b14dffa
properties:
name:
type: string
parent_id:
type: string
format: uuid
"/libraries/{libaryid}/collections/{collectionid}":
parameters:
- type: string
name: libaryid
in: path
required: true
description: libraries id
format: uuid
- type: string
name: collectionid
in: path
required: true
get:
summary: Get Collections
tags:
- Collections
responses:
"200":
description: OK
schema:
type: object
properties:
message:
type: string
result:
type: object
properties:
data:
type: array
items:
type: object
properties:
id:
type: string
library_id:
type: string
created_at:
type: string
updated_at:
type: string
name:
type: string
parent_id:
type: string
children:
type: array
items:
type: object
properties:
id:
type: string
library_id:
type: string
created_at:
type: string
updated_at:
type: string
name:
type: string
parent_id:
type: string
children:
type: array
items:
type: object
properties: {}
success:
type: boolean
x-examples:
Example 1:
message: Collection Tree
result:
data:
- id: 21d26242-b240-4afb-a2c4-170fb71fc6d3
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:08:58.898+06:00"
updated_at: "2022-12-04T12:08:58.898+06:00"
name: test
parent_id: ""
children:
- id: dd003855-149e-44af-ac50-3921a4e02500
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:11:52.543+06:00"
updated_at: "2022-12-04T12:11:52.543+06:00"
name: test
parent_id: 21d26242-b240-4afb-a2c4-170fb71fc6d3
children: []
- id: b7460472-b7ad-46b9-a4fb-ebd1dfec923b
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:12:03.778+06:00"
updated_at: "2022-12-04T12:12:03.778+06:00"
name: test
parent_id: 21d26242-b240-4afb-a2c4-170fb71fc6d3
children: []
- id: 166d5f8d-e475-4fe9-8d05-306be9a5e378
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:12:24.001+06:00"
updated_at: "2022-12-04T12:12:24.001+06:00"
name: Movies
parent_id: ""
children:
- id: e7ec9662-de19-4791-8e82-d3c4860afc4d
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:13:21.841+06:00"
updated_at: "2022-12-04T12:13:21.841+06:00"
name: Bangla Movies
parent_id: 166d5f8d-e475-4fe9-8d05-306be9a5e378
children: []
- id: 9d61383c-1ecb-4750-af49-9bca83e2b45c
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:13:31.723+06:00"
updated_at: "2022-12-04T12:13:31.723+06:00"
name: Enlish Movies
parent_id: 166d5f8d-e475-4fe9-8d05-306be9a5e378
children: []
- id: fbe6138b-804f-479a-931e-46436cddd50c
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:13:43.937+06:00"
updated_at: "2022-12-04T12:13:43.937+06:00"
name: Catoon Movies
parent_id: 166d5f8d-e475-4fe9-8d05-306be9a5e378
children: []
- id: 89a67707-260d-44d1-9bd6-ab6096e21a9c
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:16:03.072+06:00"
updated_at: "2022-12-04T12:16:03.072+06:00"
name: Tutorial
parent_id: ""
children:
- id: ffde1310-6a26-41e1-9ddd-ea05ba77b517
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:16:30.549+06:00"
updated_at: "2022-12-04T12:16:30.549+06:00"
name: Go
parent_id: 89a67707-260d-44d1-9bd6-ab6096e21a9c
children:
- id: 666e6f4f-78a7-44cf-971c-5b670086ae51
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:17:37.674+06:00"
updated_at: "2022-12-04T12:17:37.674+06:00"
name: Conncurency
parent_id: ffde1310-6a26-41e1-9ddd-ea05ba77b517
children:
- id: 61c0193d-c2f9-47a6-8221-63995b5f35cd
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:45:59.322+06:00"
updated_at: "2022-12-04T14:45:59.322+06:00"
name: Lession 01
parent_id: 666e6f4f-78a7-44cf-971c-5b670086ae51
children:
- id: 2017b3bb-e1b3-450a-9076-12b0021bd4e4
library_id: 61c0193d-c2f9-47a6-8221-63995b5f35cd
created_at: "2022-12-05T15:38:01.607+06:00"
updated_at: "2022-12-05T15:38:01.607+06:00"
name: Lesson 01 - Sub
parent_id: 61c0193d-c2f9-47a6-8221-63995b5f35cd
children: []
- id: 356be3b0-c392-4976-be96-b47b471f953e
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:04.752+06:00"
updated_at: "2022-12-04T14:46:04.752+06:00"
name: Lession 02
parent_id: 666e6f4f-78a7-44cf-971c-5b670086ae51
children:
- id: 47d26b2b-4ef0-4e08-8bfc-9374158e8b5f
library_id: 356be3b0-c392-4976-be96-b47b471f953e
created_at: "2022-12-05T15:41:23.127+06:00"
updated_at: "2022-12-05T15:41:23.127+06:00"
name: Lesson 02 - Sub
parent_id: 356be3b0-c392-4976-be96-b47b471f953e
children: []
- id: 34280ec7-3e85-4460-9d08-f8ac9dccead4
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:07.907+06:00"
updated_at: "2022-12-04T14:46:07.907+06:00"
name: Lession 05
parent_id: 666e6f4f-78a7-44cf-971c-5b670086ae51
children: []
- id: 990cf2a7-b348-45ea-90a2-a9c1f1a9b019
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:13.21+06:00"
updated_at: "2022-12-04T14:46:13.21+06:00"
name: Lession 06
parent_id: 666e6f4f-78a7-44cf-971c-5b670086ae51
children: []
- id: cfcfea7b-1e1b-4dfb-ad00-46f81b2bd173
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:17.658+06:00"
updated_at: "2022-12-04T14:46:17.658+06:00"
name: Lession 07
parent_id: 666e6f4f-78a7-44cf-971c-5b670086ae51
children: []
- id: 21c31e59-f0d7-4569-a374-d3cc154e6806
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:22.144+06:00"
updated_at: "2022-12-04T14:46:22.144+06:00"
name: Lession 08
parent_id: 666e6f4f-78a7-44cf-971c-5b670086ae51
children: []
- id: 558da0e2-85c0-43bc-b4eb-d3f10f7aa4d8
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:26.986+06:00"
updated_at: "2022-12-04T14:46:26.986+06:00"
name: Lession 09
parent_id: 666e6f4f-78a7-44cf-971c-5b670086ae51
children:
- id: 225e42a2-4e86-4727-bc6c-ce40c02f59e7
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:44.931+06:00"
updated_at: "2022-12-04T14:46:44.931+06:00"
name: xfalfalf 09
parent_id: 558da0e2-85c0-43bc-b4eb-d3f10f7aa4d8
children: []
- id: 330903cb-ad7c-46f6-9688-3166e323b335
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:51.229+06:00"
updated_at: "2022-12-04T14:46:51.229+06:00"
name: xfalfalf 01
parent_id: 558da0e2-85c0-43bc-b4eb-d3f10f7aa4d8
children: []
- id: 7b3ade95-b9e3-48a9-8ce7-635c4afda2af
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:46:55.314+06:00"
updated_at: "2022-12-04T14:46:55.314+06:00"
name: xfalfalf 02
parent_id: 558da0e2-85c0-43bc-b4eb-d3f10f7aa4d8
children:
- id: 86af9c81-9532-49a2-b6dd-347eae7174f6
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:48:02.091+06:00"
updated_at: "2022-12-04T14:48:02.091+06:00"
name: xfalfalf 02
parent_id: 7b3ade95-b9e3-48a9-8ce7-635c4afda2af
children: []
- id: 845bc540-78b6-498f-a1ed-185b6b3d8319
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T14:48:03.176+06:00"
updated_at: "2022-12-04T14:48:03.176+06:00"
name: xfalfalf 02
parent_id: 7b3ade95-b9e3-48a9-8ce7-635c4afda2af
children: []
- id: ff82c90b-2c39-4c33-a3fc-5c932fc4ece1
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T16:01:51.924+06:00"
updated_at: "2022-12-04T16:01:51.924+06:00"
name: xfalfalf 02
parent_id: 7b3ade95-b9e3-48a9-8ce7-635c4afda2af
children: []
- id: 99bbd2a4-1db0-4381-807c-487468785a19
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:17:47.086+06:00"
updated_at: "2022-12-04T12:17:47.086+06:00"
name: Channel
parent_id: ffde1310-6a26-41e1-9ddd-ea05ba77b517
children: []
- id: b2e97f49-808c-4fa7-9c2e-f72d782a48d2
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:16:45.951+06:00"
updated_at: "2022-12-04T12:16:45.951+06:00"
name: C Programming
parent_id: 89a67707-260d-44d1-9bd6-ab6096e21a9c
children: []
- id: 9f78b0de-acb7-4c27-88fa-de9973600410
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T12:17:01.977+06:00"
updated_at: "2022-12-04T12:17:01.977+06:00"
name: Rust Tutorial
parent_id: 89a67707-260d-44d1-9bd6-ab6096e21a9c
children: []
- id: b8848271-eefb-4dff-bc36-34507b14dffa
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T19:06:25.716+06:00"
updated_at: "2022-12-04T19:06:25.716+06:00"
name: SSC
parent_id: ""
children:
- id: 43223a7d-e4ac-416a-91ba-5a7126747c7c
library_id: 4067176e-da36-41a1-b178-34ac9e389039
created_at: "2022-12-04T19:07:08.197+06:00"
updated_at: "2022-12-04T19:07:08.197+06:00"
name: Bangla
parent_id: b8848271-eefb-4dff-bc36-34507b14dffa
children: []
- id: ac07fc8f-b39e-4372-bac0-81d593138003
library_id: 39c58996-932c-4d7b-9577-aa64e051f25e
created_at: "2022-12-04T19:13:17.031+06:00"
updated_at: "2022-12-04T19:13:17.031+06:00"
name: HSC
parent_id: ""
children: []
- id: caded892-9f09-46c5-a52e-044052eb3f4a
library_id: 39c58996-932c-4d7b-9577-aa64e051f25e
created_at: "2022-12-04T19:13:39.715+06:00"
updated_at: "2022-12-04T19:13:39.715+06:00"
name: Sohel
parent_id: ""
children: []
- id: 64836f31-0432-4851-a151-bb3b2f123213
library_id: 39c58996-932c-4d7b-9577-aa64e051f25e
created_at: "2022-12-04T20:02:14.026+06:00"
updated_at: "2022-12-04T20:02:14.026+06:00"
name: JSC
parent_id: ""
children: []
- id: 6bc09f29-c645-47f8-b7fb-c1b265ba5c54
library_id: 39c58996-932c-4d7b-9577-aa64e051f25e
created_at: "2022-12-04T20:02:37.217+06:00"
updated_at: "2022-12-04T20:02:37.217+06:00"
name: PSC
parent_id: ""
children: []
- id: 8cea1877-2128-43e8-8fa2-94932b3a4a8a
library_id: 39c58996-932c-4d7b-9577-aa64e051f25e
created_at: "2022-12-04T20:06:20.275+06:00"
updated_at: "2022-12-04T20:06:20.275+06:00"
name: JPX
parent_id: ""
children:
- id: 8460534f-3d1e-49f0-99ae-26701f546f3d
library_id: 8cea1877-2128-43e8-8fa2-94932b3a4a8a
created_at: "2022-12-06T16:29:50.783+06:00"
updated_at: "2022-12-06T16:29:50.783+06:00"
name: JPX-SUB
parent_id: 8cea1877-2128-43e8-8fa2-94932b3a4a8a
children: []
- id: d7070df1-bc30-4bc3-8ff7-147aa5cbfbe3
library_id: 39c58996-932c-4d7b-9577-aa64e051f25e
created_at: "2022-12-05T11:57:36.783+06:00"
updated_at: "2022-12-05T11:57:36.783+06:00"
name: NPX
parent_id: ""
children:
- id: a2dce2c7-cd88-43b4-9e44-b7992c418702
library_id: d7070df1-bc30-4bc3-8ff7-147aa5cbfbe3
created_at: "2022-12-05T15:33:10.747+06:00"
updated_at: "2022-12-05T15:33:10.747+06:00"
name: NPX_SUB
parent_id: d7070df1-bc30-4bc3-8ff7-147aa5cbfbe3
children:
- id: 843a6d4a-a5aa-4885-bea3-83f66074e7ce
library_id: a2dce2c7-cd88-43b4-9e44-b7992c418702
created_at: "2022-12-06T16:21:02.777+06:00"
updated_at: "2022-12-06T16:21:02.777+06:00"
name: NPX_SUB-SUB
parent_id: a2dce2c7-cd88-43b4-9e44-b7992c418702
children: []
- id: 499397d3-a6a3-40d4-80a1-1bbf3c464452
library_id: a2dce2c7-cd88-43b4-9e44-b7992c418702
created_at: "2022-12-06T16:22:40.946+06:00"
updated_at: "2022-12-06T16:22:40.946+06:00"
name: NPX_SUB 2
parent_id: a2dce2c7-cd88-43b4-9e44-b7992c418702
children:
- id: 78232371-e76c-4544-9bbd-576149acf585
library_id: 499397d3-a6a3-40d4-80a1-1bbf3c464452
created_at: "2022-12-06T16:27:20.918+06:00"
updated_at: "2022-12-06T16:27:20.918+06:00"
name: NPX_SUB 2/2
parent_id: 499397d3-a6a3-40d4-80a1-1bbf3c464452
children: []
- id: 0c462f1a-d9d3-44c5-bcb7-a50f9b9b5947
library_id: 4c24ae13-478f-4d89-bf9f-ebab68c1424a
created_at: "2022-12-11T16:47:04.152+06:00"
updated_at: "2022-12-11T16:47:04.152+06:00"
name: Bangla
parent_id: ""
children: []
success: true
operationId: get-details-libraries-id-collections
description: Returns collections details.
put:
tags:
- collections
summary: Update Collections
operationId: put-libraries-id-collections-id
responses:
"200":
description: OK
description: ""
parameters:
- in: body
name: body
schema:
type: object
properties: {}
"/libraries/{libraryId}/videos":
parameters:
- type: string
name: libraryId
in: path
description: Library Id
required: true
get:
summary: Get All Videos
tags:
- Videos
responses:
"200":
description: OK
schema:
type: object
properties:
message:
type: string
result:
type: array
items:
type: object
properties:
id:
type: string
library_id:
type: string
collection_id:
type: string
name:
type: string
views:
type: integer
length:
type: integer
formatted_duration:
type: string
status:
type: string
framerate:
type: integer
width:
type: integer
height:
type: integer
thumbnail_url:
type: string
preview_animation_thumbnail_url:
type: string
thumbnail_paths:
type: "null"
captions:
type: array
items:
type: object
properties: {}
chapters:
type: array
items:
type: object
properties: {}
moments:
type: object
properties: {}
uploaded_at:
type: string
created_at:
type: string
updated_at:
type: string
direct_play_url:
type: string
manifest_url:
type: string
success:
type: boolean
x-examples:
Example 1:
message: All Videos
result:
- id: 2347a717-90d5-405b-9b11-5a7fde61b840
library_id: b1499d37-8b26-403f-8947-1ae3193b09e7
collection_id: ""
name: Kaya Daugherty
views: 13
length: 118
formatted_duration: 1m58s
status: ""
framerate: 0
width: 62
height: 234
thumbnail_url: "https://vz-f22fff34-1c7.gpcdn.net/9e4ec55f-beca-4f28-a1b1-e0bb0fa3348f/thumbnail.jpg"
preview_animation_thumbnail_url: "https://vz-f22fff34-1c7.gpcdn.net/9e4ec55f-beca-4f28-a1b1-e0bb0fa3348f/preview.webp"
thumbnail_paths: null
captions: []
chapters: []
moments: {}
uploaded_at: 21-Dec-2007
created_at: 18-Dec-2022
updated_at: 18-Dec-2022
direct_play_url: "https://player.gotipath.com/stream/play/80938/fdb8783c-7c13-4fa0-a817-fd150fb9b92e"
manifest_url: "https://vz-40420aee-1b7.gpcdn.net/fdb8783c-7c13-4fa0-a817-fd150fb9b92e/playlist.m3u8"
- id: e4ec3b7e-ea75-4a58-a19e-72d651f08b6c
library_id: b1499d37-8b26-403f-8947-1ae3193b09e7
collection_id: ""
name: Jefferey McDermott
views: 181
length: 53
formatted_duration: 53s
status: ""
framerate: 0
width: 142
height: 251
thumbnail_url: "https://vz-f22fff34-1c7.gpcdn.net/9e4ec55f-beca-4f28-a1b1-e0bb0fa3348f/thumbnail.jpg"
preview_animation_thumbnail_url: "https://vz-f22fff34-1c7.gpcdn.net/9e4ec55f-beca-4f28-a1b1-e0bb0fa3348f/preview.webp"
thumbnail_paths: null
captions: []
chapters: []
moments: {}
uploaded_at: 23-Jan-2013
created_at: 18-Dec-2022
updated_at: 18-Dec-2022
direct_play_url: "https://player.gotipath.com/stream/play/80938/fdb8783c-7c13-4fa0-a817-fd150fb9b92e"
manifest_url: "https://vz-40420aee-1b7.gpcdn.net/fdb8783c-7c13-4fa0-a817-fd150fb9b92e/playlist.m3u8"
- id: e8ba9cf7-eef4-41c2-8f14-8a49d3af58d3
library_id: b1499d37-8b26-403f-8947-1ae3193b09e7
collection_id: ""
name: Jarvis Larkin
views: 235
length: 207
formatted_duration: 3m27s
status: ""
framerate: 0
width: 172
height: 154
thumbnail_url: "https://vz-f22fff34-1c7.gpcdn.net/9e4ec55f-beca-4f28-a1b1-e0bb0fa3348f/thumbnail.jpg"
preview_animation_thumbnail_url: "https://vz-f22fff34-1c7.gpcdn.net/9e4ec55f-beca-4f28-a1b1-e0bb0fa3348f/preview.webp"
thumbnail_paths: null
captions: []
chapters: []
moments: {}
uploaded_at: 13-Oct-2013
created_at: 18-Dec-2022
updated_at: 18-Dec-2022
direct_play_url: "https://player.gotipath.com/stream/play/80938/fdb8783c-7c13-4fa0-a817-fd150fb9b92e"
manifest_url: "https://vz-40420aee-1b7.gpcdn.net/fdb8783c-7c13-4fa0-a817-fd150fb9b92e/playlist.m3u8"
- id: 7bcc42f4-43ce-4261-9796-53698ba7c26d
library_id: b1499d37-8b26-403f-8947-1ae3193b09e7
collection_id: 3753c71a-e6b5-4e12-8bb9-4a69ec57da29
name: Hoyt Stehr
views: 255
length: 162
formatted_duration: 2m42s
status: ""
framerate: 0
width: 98
height: 119
thumbnail_url: "https://vz-f22fff34-1c7.gpcdn.net/9e4ec55f-beca-4f28-a1b1-e0bb0fa3348f/thumbnail.jpg"
preview_animation_thumbnail_url: "https://vz-f22fff34-1c7.gpcdn.net/9e4ec55f-beca-4f28-a1b1-e0bb0fa3348f/preview.webp"
thumbnail_paths: null
captions: []
chapters: []
moments: {}
uploaded_at: 14-Sep-2009
created_at: 18-Dec-2022
updated_at: 19-Dec-2022
direct_play_url: "https://player.gotipath.com/stream/play/80938/fdb8783c-7c13-4fa0-a817-fd150fb9b92e"
manifest_url: "https://vz-40420aee-1b7.gpcdn.net/fdb8783c-7c13-4fa0-a817-fd150fb9b92e/playlist.m3u8"
- id: 1e2a0acf-3ff8-4bd9-8fb2-23af8eab9184
library_id: b1499d37-8b26-403f-8947-1ae3193b09e7
collection_id: ""
name: Flavio Yundt
views: 248
length: 206
formatted_duration: 3m26s
status: ""
framerate: 0
width: 135
height: 40
thumbnail_url: "https://vz-f22fff34-1c7.gpcdn.net/9e4ec55f-beca-4f28-a1b1-e0bb0fa3348f/thumbnail.jpg"
preview_animation_thumbnail_url: "https://vz-f22fff34-1c7.gpcdn.net/9e4ec55f-beca-4f28-a1b1-e0bb0fa3348f/preview.webp"
thumbnail_paths: null
captions: []
chapters: []
moments: {}
uploaded_at: 26-Dec-1952
created_at: 18-Dec-2022