forked from khoren93/SwiftHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGithub.postman_collection.json
1878 lines (1878 loc) · 49.2 KB
/
Github.postman_collection.json
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
{
"info": {
"_postman_id": "85e4199c-818e-4cbc-8aca-3777c173cfa7",
"name": "Github",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "OAuth Authorizations",
"item": [
{
"name": "Create access token",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/x-www-form-urlencoded"
}
],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "client_id",
"value": "00cbdbffb01ec72e280a",
"description": "Required. The client ID you received from GitHub for your GitHub App.",
"type": "text"
},
{
"key": "client_secret",
"value": "5a39979251c0452a9476bd45c82a14d8e98c3fb3",
"description": "Required. The client secret you received from GitHub for your GitHub App.",
"type": "text"
},
{
"key": "code",
"value": "341528369f195e72c88e",
"description": "Required. The code you received as a response to Step 1.",
"type": "text"
},
{
"key": "redirect_uri",
"value": "swifthub://",
"description": "The URL in your application where users are sent after authorization.",
"type": "text"
},
{
"key": "state",
"value": "",
"description": "The unguessable random string you provided in Step 1.",
"type": "text"
}
]
},
"url": {
"raw": "https://github.com/login/oauth/access_token",
"protocol": "https",
"host": [
"github",
"com"
],
"path": [
"login",
"oauth",
"access_token"
]
}
},
"response": []
}
],
"description": "You can use this API to manage the access OAuth applications have to your account. You can only access this API via Basic Authentication using your username and password, not tokens.\n\nMake sure you understand how to work with two-factor authentication if you or your users have two-factor authentication enabled.",
"protocolProfileBehavior": {}
},
{
"name": "Repositories",
"item": [
{
"name": "Contents",
"item": [
{
"name": "Get the README",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repos/{{owner}}/{{repo}}/readme?ref=master",
"host": [
"{{base_url}}"
],
"path": [
"repos",
"{{owner}}",
"{{repo}}",
"readme"
],
"query": [
{
"key": "ref",
"value": "master"
}
]
},
"description": "This method returns the preferred README for a repository."
},
"response": []
},
{
"name": "Get contents",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repos/{{owner}}/{{repo}}/contents/:path",
"host": [
"{{base_url}}"
],
"path": [
"repos",
"{{owner}}",
"{{repo}}",
"contents",
":path"
],
"query": [
{
"key": "ref",
"value": "master",
"disabled": true
}
],
"variable": [
{
"key": "path",
"value": ""
}
]
},
"description": "Gets the contents of a file or directory in a repository. Specify the file path or directory in :path. If you omit :path, you will receive the contents of all files in the repository."
},
"response": []
}
],
"protocolProfileBehavior": {},
"_postman_isSubFolder": true
},
{
"name": "Commits",
"item": [
{
"name": "List commits on a repository",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repos/{{owner}}/{{repo}}/commits?per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"repos",
"{{owner}}",
"{{repo}}",
"commits"
],
"query": [
{
"key": "per_page",
"value": "{{per_page}}"
}
]
}
},
"response": []
},
{
"name": "Get a single commit",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repos/{{owner}}/{{repo}}/commits/:sha",
"host": [
"{{base_url}}"
],
"path": [
"repos",
"{{owner}}",
"{{repo}}",
"commits",
":sha"
],
"variable": [
{
"key": "sha",
"value": "e2dba47c808cd2dc1a5fb1a26db755a1fccb3415"
}
]
},
"description": "Diffs with binary data will have no patch property. Pass the appropriate media type to fetch diff and patch formats."
},
"response": []
}
],
"protocolProfileBehavior": {},
"_postman_isSubFolder": true
},
{
"name": "Branches",
"item": [
{
"name": "List branches",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repos/{{owner}}/{{repo}}/branches?per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"repos",
"{{owner}}",
"{{repo}}",
"branches"
],
"query": [
{
"key": "per_page",
"value": "{{per_page}}"
}
]
}
},
"response": []
},
{
"name": "Get branch",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repos/{{owner}}/{{repo}}/branches/:branch",
"host": [
"{{base_url}}"
],
"path": [
"repos",
"{{owner}}",
"{{repo}}",
"branches",
":branch"
],
"variable": [
{
"key": "branch",
"value": "3.1.2"
}
]
}
},
"response": []
}
],
"protocolProfileBehavior": {},
"_postman_isSubFolder": true
},
{
"name": "Releases",
"item": [
{
"name": "List releases for a repository",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repos/{{owner}}/{{repo}}/releases?per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"repos",
"{{owner}}",
"{{repo}}",
"releases"
],
"query": [
{
"key": "per_page",
"value": "{{per_page}}"
}
]
},
"description": "Information about published releases are available to everyone. Only users with push access will receive listings for draft releases."
},
"response": []
},
{
"name": "Get a single release",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repos/{{owner}}/{{repo}}/releases/:release_id",
"host": [
"{{base_url}}"
],
"path": [
"repos",
"{{owner}}",
"{{repo}}",
"releases",
":release_id"
],
"variable": [
{
"key": "release_id",
"value": "16165731"
}
]
}
},
"response": []
}
],
"protocolProfileBehavior": {},
"_postman_isSubFolder": true
},
{
"name": "Forks",
"item": [
{
"name": "List Forks",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repos/{{owner}}/{{repo}}/forks?per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"repos",
"{{owner}}",
"{{repo}}",
"forks"
],
"query": [
{
"key": "per_page",
"value": "{{per_page}}"
}
]
}
},
"response": []
}
],
"protocolProfileBehavior": {},
"_postman_isSubFolder": true
},
{
"name": "List your repositories",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/user/repos?page=1&visibility=all&affiliation=owner,collaborator,organization_member&sort=full_name&direction=asc&per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"user",
"repos"
],
"query": [
{
"key": "page",
"value": "1"
},
{
"key": "visibility",
"value": "all"
},
{
"key": "affiliation",
"value": "owner,collaborator,organization_member"
},
{
"key": "sort",
"value": "full_name"
},
{
"key": "direction",
"value": "asc"
},
{
"key": "per_page",
"value": "{{per_page}}"
}
]
},
"description": "List repositories that are accessible to the authenticated user.\n\nThis includes repositories owned by the authenticated user, repositories where the authenticated user is a collaborator, and repositories that the authenticated user has access to through an organization membership."
},
"response": []
},
{
"name": "List user repositories",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/users/{{username}}/repos?page=1&per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"users",
"{{username}}",
"repos"
],
"query": [
{
"key": "page",
"value": "1"
},
{
"key": "per_page",
"value": "{{per_page}}"
}
]
},
"description": "List public repositories for the specified user."
},
"response": []
},
{
"name": "List organization repositories",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/orgs/{{org}}/repos?type=all&page=1&per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"orgs",
"{{org}}",
"repos"
],
"query": [
{
"key": "type",
"value": "all"
},
{
"key": "page",
"value": "1"
},
{
"key": "per_page",
"value": "{{per_page}}"
}
]
},
"description": "List repositories for the specified org."
},
"response": []
},
{
"name": "List all public repositories",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repositories?since=364&per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"repositories"
],
"query": [
{
"key": "since",
"value": "364"
},
{
"key": "per_page",
"value": "{{per_page}}"
}
]
},
"description": "This provides a dump of every public repository, in the order that they were created.\n\nNote: Pagination is powered exclusively by the since parameter. Use the Link header to get the URL for the next page of repositories."
},
"response": []
},
{
"name": "Get",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repos/{{owner}}/{{repo}}",
"host": [
"{{base_url}}"
],
"path": [
"repos",
"{{owner}}",
"{{repo}}"
]
}
},
"response": []
},
{
"name": "List contributors",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repos/{{owner}}/{{repo}}/contributors?page=1&per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"repos",
"{{owner}}",
"{{repo}}",
"contributors"
],
"query": [
{
"key": "page",
"value": "1"
},
{
"key": "per_page",
"value": "{{per_page}}"
}
]
},
"description": "List contributors to the specified repository, sorted by the number of commits per contributor in descending order."
},
"response": []
},
{
"name": "List languages",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repos/{{owner}}/{{repo}}/languages",
"host": [
"{{base_url}}"
],
"path": [
"repos",
"{{owner}}",
"{{repo}}",
"languages"
]
},
"description": "List languages for the specified repository. The value on the right of a language is the number of bytes of code written in that language."
},
"response": []
},
{
"name": "List Teams",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repos/{{owner}}/{{repo}}/teams",
"host": [
"{{base_url}}"
],
"path": [
"repos",
"{{owner}}",
"{{repo}}",
"teams"
]
}
},
"response": []
},
{
"name": "List Tags",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repos/{{owner}}/{{repo}}/tags?page=1&per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"repos",
"{{owner}}",
"{{repo}}",
"tags"
],
"query": [
{
"key": "page",
"value": "1"
},
{
"key": "per_page",
"value": "{{per_page}}"
}
]
}
},
"response": []
}
],
"protocolProfileBehavior": {}
},
{
"name": "Organizations",
"item": [
{
"name": "Get an organization",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/orgs/{{org}}",
"host": [
"{{base_url}}"
],
"path": [
"orgs",
"{{org}}"
]
},
"description": "To see many of the organization response values, you need to be an authenticated organization owner with the admin:org scope. When the value of two_factor_requirement_enabled is true, the organization requires all members, billing managers, and outside collaborators to enable two-factor authentication."
},
"response": []
}
],
"protocolProfileBehavior": {}
},
{
"name": "Users",
"item": [
{
"name": "Followers",
"item": [
{
"name": "List followers of a user",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/users/{{username}}/followers?per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"users",
"{{username}}",
"followers"
],
"query": [
{
"key": "per_page",
"value": "{{per_page}}"
}
]
},
"description": "List a user's followers:"
},
"response": []
},
{
"name": "List users followed by another user",
"request": {
"auth": {
"type": "noauth"
},
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/users/{{username}}/following?per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"users",
"{{username}}",
"following"
],
"query": [
{
"key": "per_page",
"value": "{{per_page}}"
}
]
},
"description": "List who a user is following:"
},
"response": []
},
{
"name": "Check if you are following a user",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/user/following/{{owner}}",
"host": [
"{{base_url}}"
],
"path": [
"user",
"following",
"{{owner}}"
]
},
"description": "Response: \nThe parent and source objects are present when the repository is a fork. parent is the repository this repository was forked from, source is the ultimate source for the network."
},
"response": []
},
{
"name": "Follow a user",
"request": {
"method": "PUT",
"header": [],
"url": {
"raw": "{{base_url}}/user/following/{{owner}}",
"host": [
"{{base_url}}"
],
"path": [
"user",
"following",
"{{owner}}"
]
}
},
"response": []
},
{
"name": "Unfollow a user",
"request": {
"method": "DELETE",
"header": [],
"url": {
"raw": "{{base_url}}/user/following/{{owner}}",
"host": [
"{{base_url}}"
],
"path": [
"user",
"following",
"{{owner}}"
]
}
},
"response": []
}
],
"protocolProfileBehavior": {},
"_postman_isSubFolder": true
},
{
"name": "Get the authenticated user",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/user",
"host": [
"{{base_url}}"
],
"path": [
"user"
]
}
},
"response": []
},
{
"name": "Get a single user",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/users/{{owner}}",
"host": [
"{{base_url}}"
],
"path": [
"users",
"{{owner}}"
]
},
"description": "Provides publicly available information about someone with a GitHub account."
},
"response": []
}
],
"protocolProfileBehavior": {}
},
{
"name": "Search",
"item": [
{
"name": "Search Repositories",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/search/repositories?q=swift&sort=stars&order=desc&page=1&per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"search",
"repositories"
],
"query": [
{
"key": "q",
"value": "swift",
"description": "Required. The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as GitHub.com. To learn more about the format of the query, see Constructing a search query. See \"Searching for repositories\" for a detailed list of qualifiers."
},
{
"key": "sort",
"value": "stars",
"description": "Sorts the results of your query by number of stars, forks, or help-wanted-issues or how recently the items were updated. Default: best match"
},
{
"key": "order",
"value": "desc",
"description": "Determines whether the first search result returned is the highest number of matches (desc) or lowest number of matches (asc). This parameter is ignored unless you provide sort. Default: desc"
},
{
"key": "page",
"value": "1"
},
{
"key": "per_page",
"value": "{{per_page}}"
}
]
},
"description": "Find repositories via various criteria. This method returns up to 100 results per page."
},
"response": []
},
{
"name": "Search Users",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/search/users?q=realm&sort&order&page=1&per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"search",
"users"
],
"query": [
{
"key": "q",
"value": "realm",
"description": "Required. The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as GitHub.com. To learn more about the format of the query, see Constructing a search query. See \"Searching users\" for a detailed list of qualifiers."
},
{
"key": "sort",
"value": null,
"description": "Sorts the results of your query by number of followers or repositories, or when the person joined GitHub. Default: best match"
},
{
"key": "order",
"value": null,
"description": "Determines whether the first search result returned is the highest number of matches (desc) or lowest number of matches (asc). This parameter is ignored unless you provide sort. Default: desc"
},
{
"key": "page",
"value": "1"
},
{
"key": "per_page",
"value": "{{per_page}}"
}
]
},
"description": "Find users via various criteria. This method returns up to 100 results per page."
},
"response": []
}
],
"description": "The Search API is optimized to help you find the specific item you're looking for (e.g., a specific user, a specific file in a repository, etc.). Think of it the way you think of performing a search on Google. It's designed to help you find the one result you're looking for (or maybe the few results you're looking for). Just like searching on Google, you sometimes want to see a few pages of search results so that you can find the item that best meets your needs. To satisfy that need, the GitHub Search API provides up to 1,000 results for each search.",
"protocolProfileBehavior": {}
},
{
"name": "Activity",
"item": [
{
"name": "Events",
"item": [
{
"name": "List public events for an organization",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/orgs/{{org}}/events?page=1&per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"orgs",
"{{org}}",
"events"
],
"query": [
{
"key": "page",
"value": "1"
},
{
"key": "per_page",
"value": "{{per_page}}"
}
]
}
},
"response": []
},
{
"name": "List events that a user has received",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/users/{{username}}/received_events?page=1&per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"users",
"{{username}}",
"received_events"
],
"query": [
{
"key": "page",
"value": "1"
},
{
"key": "per_page",
"value": "{{per_page}}"
}
]
},
"description": "These are events that you've received by watching repos and following users. If you are authenticated as the given user, you will see private events. Otherwise, you'll only see public events."
},
"response": []
},
{
"name": "List repository events",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/repos/{{owner}}/{{repo}}/events?page=1&per_page={{per_page}}",
"host": [
"{{base_url}}"
],
"path": [
"repos",
"{{owner}}",
"{{repo}}",
"events"
],
"query": [
{
"key": "page",
"value": "1"
},
{
"key": "per_page",
"value": "{{per_page}}"
}
]
}
},
"response": []
},