-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
11325 lines (11321 loc) · 369 KB
/
openapi.yaml
File metadata and controls
11325 lines (11321 loc) · 369 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
openapi: 3.0.3
info:
contact:
email: admin@athenian.co
name: the administrator by email
description: |-
Server version: {{ server_version }} built on {{ build_date }} @ [{{ commit }}](https://github.com/athenianco/athenian-api/commit/{{ commit }})
Origin GitHub repository: [athenianco/api-spec](https://github.com/athenianco/api-spec).
Authorization persists between sessions. Marks:
* 🛡️ endpoint requires account admin privileges.
* 👤 endpoint only works with JWT authentication.
<details>
<summary>List of common server errors.</summary>
* __500__ endpoint crashed. We reported the incident to Sentry and will fix it soon! Please include the value of `instance` in the response if you contact the support. Repeating the request will not help, most probably.
* __501__ some functions are missing, either because they are not implemented yet or a non-critical runtime dependency is not satisfied. Repeating the request will not help, guaranteed.
* __502__ server crashed badly, either due to a memory access violation in native code or running out of memory. We reported this incident to Sentry and will fix it soon! Try repeating the request.
* __503__ server has not fully launched yet, e.g. hasn't connected to the database; server is shutting down; we are experiencing a partial outage. Try repeating the request.
* __504__ endpoint took too much time and was interrupted. We reported the incident to Sentry and will see how to improve the performance. Repeating the request will not help, most probably.
</details>
license:
name: CC-BY-4.0
title: '{{ title }}'
version: 2.1.86
servers:
- description: '{{ server_description }} - {{ server_url }}'
url: '{{ server_url }}/v1'
# yamllint disable-line rule:key-ordering
paths:
/account/user:
put:
operationId: change_user
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AccountUserChangeRequest'
x-body-name: body
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/Account'
description: Effective account members.
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: Requesting user is not an admin of the account.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The account was not found.
security:
- bearerAuth: []
summary: '🛡️👤 Change the status of an account member: regular, admin, or banished
(deleted). This endpoint is allowed only for account admins.'
tags:
- user
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.user_controller
/account/{id}/details:
get:
operationId: get_account_details
parameters:
- description: Numeric identifier of the account. The user must belong to that
account. To find out which accounts the user belongs to, see `/user`.
explode: false
in: path
name: id
required: true
schema:
type: integer
style: simple
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/Account'
description: List of the account members and installed GitHub and JIRA organizations.
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The user does not have access to this account.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The account was not found.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: List the calling user's account members and installed GitHub and JIRA
organizations.
tags:
- user
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.user_controller
/account/{id}/features:
get:
operationId: get_account_features
parameters:
- description: Numeric identifier of the account. The user must belong to that
account. To find out which accounts the user belongs to, see `/user`.
explode: false
in: path
name: id
required: true
schema:
type: integer
style: simple
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/ProductFeatures'
description: List of the enabled product features for the account.
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The user does not have access to this account.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The account was not found.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: List the product features enabled for the account.
tags:
- user
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.user_controller
/diff/releases:
post:
operationId: diff_releases
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/DiffReleasesRequest'
x-body-name: body
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/DiffedReleases'
description: Releases between the two specified borders, excluding the first
one and including the second one. Triaged by repository.
400:
$ref: '#/components/responses/InvalidRequestErrorResponse'
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: Calling user is not allowed to access the specified repositories.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The specified account does not exist or the user is not a member.
422:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The account's installation has not finished yet.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: Find releases between the two given ones per repository.
tags:
- filter
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.filter_controller
/events/clear_cache:
post:
operationId: clear_precomputed_events
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/DeleteEventsCacheRequest'
x-body-name: body
responses:
200:
content:
application/json:
schema:
enum:
- {}
type: object
description: Empty response indicates a successful operation.
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: Calling user is not allowed to access the specified repositories.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The user does not belong to the specified account.
422:
content:
application/json:
schema:
$ref: '#/components/schemas/NoSourceDataError'
description: The account's installation has not finished yet.
424:
content:
application/json:
schema:
$ref: '#/components/schemas/MissingSettingsError'
description: One or more logical repositories miss the release settings.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: Reset the precomputed data related to the pushed events.
tags:
- events
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.events_controller
/events/deployments:
post:
operationId: notify_deployments
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/NotifyDeploymentsRequest'
x-body-name: body
responses:
200:
content:
application/json:
schema:
properties:
deployments:
$ref: '#/components/schemas/NotifiedDeployments'
required:
- deployments
type: object
description: Details about the accepted deployment notifications.
400:
$ref: '#/components/responses/InvalidRequestErrorResponse'
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: Calling user is not allowed to access the specified repositories.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The specified account does not exist or the user is not a member.
422:
content:
application/json:
schema:
$ref: '#/components/schemas/NoSourceDataError'
description: The account's installation has not finished yet.
security:
- apiKeyAuth: []
summary: Notify about new deployments.
tags:
- events
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.events_controller
/events/deployment/{name}/labels:
parameters:
- description: Name of the deployment.
in: path
name: name
required: true
schema:
type: string
style: simple
get:
operationId: get_deployment_labels
responses:
200:
$ref: '#/components/responses/DeploymentLabelsResponse'
404:
$ref: '#/components/responses/DeploymentNotFoundResponse'
security:
- apiKeyAuth: []
tags:
- events
# {% if False %}
- default
# {% endif %}
summary: Retrieve the labels associated with the deployment.
x-openapi-router-controller: athenian.api.controllers.events_controller
patch:
operationId: modify_deployment_labels
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/DeploymentModifyLabelsRequest'
x-body-name: body
responses:
200:
$ref: '#/components/responses/DeploymentLabelsResponse'
400:
$ref: '#/components/responses/InvalidRequestErrorResponse'
404:
$ref: '#/components/responses/DeploymentNotFoundResponse'
security:
- apiKeyAuth: []
summary: |
Modify the labels for the deployment applying the given instructions.
tags:
- events
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.events_controller
/events/releases:
post:
operationId: notify_releases
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/NotifyReleasesRequest'
x-body-name: body
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/NotifyReleasesResponse'
description: Summary of the accepted and the rejected releases.
400:
$ref: '#/components/responses/InvalidRequestErrorResponse'
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: Calling user is not allowed to access the specified repositories.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The specified account does not exist or the user is not a member.
422:
content:
application/json:
schema:
$ref: '#/components/schemas/NoSourceDataError'
description: The account's installation has not finished yet.
security:
- apiKeyAuth: []
summary: Notify about new releases. The release settings must be set to "event".
tags:
- events
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.events_controller
/filter/code_checks:
post:
operationId: filter_code_checks
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FilterCodeChecksRequest'
x-body-name: body
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/FilteredCodeCheckRuns'
description: Code check runs that satisfy the specified filters.
400:
$ref: '#/components/responses/InvalidRequestErrorResponse'
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: Calling user is not allowed to access the specified repositories.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The specified account does not exist or the user is not a member.
422:
content:
application/json:
schema:
$ref: '#/components/schemas/NoSourceDataError'
description: The account's installation has not finished yet.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: Find code check runs that match the specified query. [What a code check
run is exactly.](https://docs.github.com/en/rest/guides/getting-started-with-the-checks-api#about-check-runs)
tags:
- filter
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.filter_controller
/filter/commits:
post:
operationId: filter_commits
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FilterCommitsRequest'
x-body-name: body
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/CommitsList'
description: Commits that satisfy the specified filters grouped by date.
400:
$ref: '#/components/responses/InvalidRequestErrorResponse'
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: Calling user is not allowed to access the specified repositories.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The specified account does not exist or the user is not a member.
422:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The account's installation has not finished yet.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: Find commits that match the specified query.
tags:
- filter
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.filter_controller
/filter/contributors:
post:
operationId: filter_contributors
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FilterContributorsRequest'
x-body-name: body
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/DeveloperSummaries'
description: Repositories that were updated within the given timeframe.
400:
$ref: '#/components/responses/InvalidRequestErrorResponse'
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: Calling user is not allowed to access the specified repositories.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The specified account does not exist or the user is not a member.
422:
content:
application/json:
schema:
$ref: '#/components/schemas/NoSourceDataError'
description: The account's installation has not finished yet.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: Find developers that made an action within the given timeframe.
tags:
- filter
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.filter_controller
/filter/deployments:
post:
operationId: filter_deployments
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FilterDeploymentsRequest'
x-body-name: body
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/FilteredDeployments'
description: Deployments that satisfy the specified filters.
400:
$ref: '#/components/responses/InvalidRequestErrorResponse'
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: Calling user is not allowed to access the specified repositories.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The specified account does not exist or the user is not a member.
422:
content:
application/json:
schema:
$ref: '#/components/schemas/NoSourceDataError'
description: The account's installation has not finished yet.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: List the deployments that satisfy the provided filters. We accept new
deployment notifications at `/events/deployments`.
tags:
- filter
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.filter_controller
/filter/environments:
post:
operationId: filter_environments
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FilterEnvironmentsRequest'
x-body-name: body
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/FilteredEnvironments'
description: Deployment environments that satisfy the specified filters.
400:
$ref: '#/components/responses/InvalidRequestErrorResponse'
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The specified account does not exist or the user is not a member.
422:
content:
application/json:
schema:
$ref: '#/components/schemas/NoSourceDataError'
description: The account hasn't submitted any deployment notifications.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: List the deployment environments.
tags:
- filter
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.filter_controller
/filter/jira:
post:
operationId: filter_jira_stuff
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FilterJIRAStuff'
x-body-name: body
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/FilteredJIRAStuff'
description: List of found JIRA entities, ordered by the last usage time.
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The user is not an account member.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The account was not found.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: Find various JIRA entities relevant to the specified date interval.
tags:
- filter
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.jira_controller
/filter/labels:
post:
operationId: filter_labels
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FilterLabelsRequest'
x-body-name: body
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/FilteredLabels'
description: List of labels.
400:
$ref: '#/components/responses/InvalidRequestErrorResponse'
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: Calling user is not allowed to access the specified repositories.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The specified account does not exist or the user is not a member.
422:
content:
application/json:
schema:
$ref: '#/components/schemas/NoSourceDataError'
description: The account's installation has not finished yet.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: Find labels used in the given repositories.
tags:
- filter
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.filter_controller
/filter/pull_requests:
post:
operationId: filter_prs
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FilterPullRequestsRequest'
x-body-name: body
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/PullRequestSet'
description: List of pull requests satisfying the specified filters.
400:
$ref: '#/components/responses/InvalidRequestErrorResponse'
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: Calling user is not allowed to access the specified repositories.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The specified account does not exist or the user is not a member.
422:
content:
application/json:
schema:
$ref: '#/components/schemas/NoSourceDataError'
description: The account's installation has not finished yet.
424:
content:
application/json:
schema:
$ref: '#/components/schemas/MissingSettingsError'
description: One or more logical repositories miss the release settings.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: List pull requests that satisfy the query.
tags:
- filter
# {% if False %}
- default
# {% endif %}
x-openapi-router-controller: athenian.api.controllers.filter_controller
/filter/releases:
post:
operationId: filter_releases
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FilterReleasesRequest'
x-body-name: body
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/ReleaseSet'
description: Repositories that were updated within the given timeframe.
400:
$ref: '#/components/responses/InvalidRequestErrorResponse'
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: Calling user is not allowed to access the specified repositories.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The specified account does not exist or the user is not a member.
422:
content:
application/json:
schema:
$ref: '#/components/schemas/NoSourceDataError'
description: The account's installation has not finished yet.
424:
content:
application/json:
schema:
$ref: '#/components/schemas/MissingSettingsError'
description: One or more logical repositories miss the release settings.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: Find releases that were published in the given time fram in the given
repositories.
tags:
- filter
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.filter_controller
/filter/repositories:
post:
operationId: filter_repositories
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FilterRepositoriesRequest'
x-body-name: body
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/RepositorySet'
description: Repositories that were updated within the given timeframe.
400:
$ref: '#/components/responses/InvalidRequestErrorResponse'
403:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: Calling user is not allowed to access the specified repositories.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The specified account does not exist or the user is not a member.
422:
content:
application/json:
schema:
$ref: '#/components/schemas/NoSourceDataError'
description: The account's installation has not finished yet.
424:
content:
application/json:
schema:
$ref: '#/components/schemas/MissingSettingsError'
description: One or more logical repositories miss the release settings.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: Find repositories that were updated within the given timeframe.
tags:
- filter
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.filter_controller
/get/contributors/{id}:
get:
operationId: get_contributors
parameters:
- $ref: '#/components/parameters/pathAccountID'
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/Contributors'
description: List of all contributors belonging to the specified account.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The user does not belong to the specified account.
422:
content:
application/json:
schema:
$ref: '#/components/schemas/NoSourceDataError'
description: The installation has not finished yet.
424:
content:
application/json:
schema:
$ref: '#/components/schemas/MissingSettingsError'
description: One or more logical repositories miss the release settings.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: List all the contributors belonging to the specified account.
tags:
- get
# {% if False %}
- default
# {% endif %}
x-codegen-request-body-name: body
x-openapi-router-controller: athenian.api.controllers.contributors_controller
/get/export:
get:
operationId: get_everything
parameters:
- description: Numeric identifier of the account. Raises HTTP 400 if the user
belongs to more than one account.
explode: false
in: query
name: account
required: false
schema:
type: integer
style: form
- description: Output file format. The default is `parquet`.
explode: false
in: query
name: format
required: false
schema:
enum:
- parquet
type: string
style: form
responses:
200:
content:
application/zip:
schema:
format: binary
type: string
description: Uncompressed ZIP archive with binary files in the configured
format.
400:
content:
application/json:
schema:
$ref: '#/components/schemas/InvalidRequestError'
description: Invalid query parameter values.
404:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: The user does not belong to the specified account.
422:
content:
application/json:
schema:
$ref: '#/components/schemas/NoSourceDataError'
description: The installation has not finished yet.
424:
content:
application/json:
schema:
$ref: '#/components/schemas/MissingSettingsError'
description: One or more logical repositories miss the release settings.
security:
- bearerAuth: []
- apiKeyAuth: []
summary: Download all the data collected by Athenian for custom analysis.
tags:
- integrations
# {% if False %}
- default
# {% endif %}
x-openapi-router-controller: athenian.api.controllers.integrations_controller
/get/jira_issues:
post:
operationId: get_jira_issues
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/GetJIRAIssuesRequest'
x-body-name: body
responses:
200:
content: