-
Notifications
You must be signed in to change notification settings - Fork 2
/
openapi.yaml
20168 lines (20166 loc) · 637 KB
/
openapi.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
openapi: 3.0.0
info:
version: 1.0.3
title: Qovery API
description: |
- Qovery is the fastest way to deploy your full-stack apps on any Cloud provider.
- ℹ️ The API is stable and still in development.
contact:
name: Qovery Product Team
url: 'https://www.qovery.com'
email: [email protected]
x-logo:
url: 'https://raw.githubusercontent.com/Qovery/public-resources/master/qovery_new_logo_white.svg'
altText: Qovery
tags:
- name: Account
- name: Account Info
- name: Admin
- name: Application
- name: Application Actions
- name: Application Configuration
- name: Application Database
- name: Application Deployment Restriction
- name: Application Deployment History
- name: Application Environment Variable
- name: Application Logs
- name: Application Main Calls
- name: Application Secret
- name: Application Annotations Group
- name: Applications
- name: Container
- name: Container Actions
- name: Container Configuration
- name: Container Database
- name: Container Deployment History
- name: Container Environment Variable
- name: Container Logs
- name: Container Main Calls
- name: Container Registry
- name: Container Secret
- name: Container Annotations Group
- name: Containers
- name: Deployment Stage Main Calls
- name: Job
- name: Job Actions
- name: Job Configuration
- name: Job Database
- name: Job Deployment Restriction
- name: Job Deployment History
- name: Job Environment Variable
- name: Job Logs
- name: Job Main Calls
- name: Job Registry
- name: Job Secret
- name: Job Annotations Group
- name: Jobs
- name: Helm
- name: Helm Actions
- name: Helm Configuration
- name: Helm Database
- name: Helm Deployment Restriction
- name: Helm Deployment History
- name: Helm Logs
- name: Helm Main Calls
- name: Helm Repository
- name: Helms
- name: Backups
- name: Billing
- name: Cloud Provider
- name: Cloud Provider Credentials
- name: Clusters
- name: Custom Domain
- name: Container Custom Domain
- name: Database
- name: Database Actions
- name: Database Application
- name: Database Container
- name: Database Deployment History
- name: Database Main Calls
- name: Database Annotations Group
- name: Databases
- name: Environment
- name: Environment Actions
- name: Environment Deployment History
- name: Environment Deployment Rule
- name: Environment Logs
- name: Environment Main Calls
- name: Environment Secret
- name: Environment Variable
- name: Environments
- name: Git
- name: Github App
- name: Git repositories
- name: Members
- name: Organization
- name: Organization Account Git Repositories
- name: Organization Cluster Lock
- name: Organization Main Calls
- name: Organization Custom Role
- name: Organization Event
- name: Organization Api Token
- name: Organization Webhook
- name: Organization Annotations Group
- name: Organization Labels Group
- name: Project
- name: Project Deployment Rule
- name: Project Environment Variable
- name: Project Main Calls
- name: Project Secret
- name: Projects
- name: Referral & Rewards
- name: Container Registries
- name: Helm Repositories
- name: User Sign Up
- name: Variable Main Calls
- name: Helm Custom Domain
- name: Lifecycle Template Main Calls
x-tagGroups:
- name: Organization
tags:
- Organization Main Calls
- Organization Api Token
- Organization Account Git Repositories
- Organization Cluster Lock
- Organization Webhook
- Organization Custom Role
- Organization Event
- Organization Annotations Group
- Organization Labels Group
- Projects
- Members
- Billing
- Clusters
- Cloud Provider
- Cloud Provider Credentials
- Github App
- Container Registries
- Helm Repositories
- name: Project
tags:
- Project Main Calls
- Environments
- Project Deployment Rule
- Project Environment Variable
- Project Secret
- name: Environment
tags:
- Environment Main Calls
- Applications
- Containers
- Databases
- Jobs
- Helms
- Environment Actions
- Environment Logs
- Environment Deployment History
- Environment Deployment Rule
- Environment Variable
- Environment Secret
- Environment Export
- name: Deployment Stage
tags:
- Deployment Stage Main Calls
- name: Application
tags:
- Application Main Calls
- Application Actions
- Application Configuration
- Application Custom Domain
- Application Database
- Application Logs
- Application Deployment Restriction
- Application Deployment History
- Application Environment Variable
- Application Secret
- Application Annotations Group
- name: Container
tags:
- Container Main Calls
- Container Actions
- Container Configuration
- Container Custom Domain
- Container Database
- Container Logs
- Container Deployment History
- Container Environment Variable
- Container Secret
- Container Annotations Group
- name: Database
tags:
- Database Main Calls
- Database Actions
- Database Applications
- Database Deployment History
- Database Containers
- Database Application
- Database Container
- Backups
- Database Annotations Group
- name: Job
tags:
- Job Main Calls
- Job Actions
- Job Configuration
- Job Custom Domain
- Job Deployment Restriction
- Job Deployment History
- Job Environment Variable
- Job Secret
- Job Annotations Group
- name: Helm
tags:
- Helm Main Calls
- Helm Actions
- Helm Configuration
- Helm Custom Domain
- Helm Deployment Restriction
- Helm Deployment History
- name: Account
tags:
- Account Info
- Git repositories
- Referral & Rewards
- name: Git
tags:
- Git repositories
- name: Variable
tags:
- Variable Main Calls
- name: Lifecycle Template
tags:
- Lifecycle Template Main Calls
- name: Admin
tags:
- User Sign Up
servers:
- url: 'https://api.qovery.com'
paths:
/organization:
get:
summary: List user organizations
operationId: listOrganization
tags:
- Organization Main Calls
responses:
'200':
description: List organizations
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationResponseList'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
post:
summary: Create an organization
operationId: createOrganization
tags:
- Organization Main Calls
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationRequest'
responses:
'201':
description: Create organization
content:
application/json:
schema:
$ref: '#/components/schemas/Organization'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'409':
description: Organization name is already taken
'/organization/{organizationId}':
get:
summary: Get organization by ID
operationId: getOrganization
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Organization Main Calls
responses:
'200':
description: Get organization by ID
content:
application/json:
schema:
$ref: '#/components/schemas/Organization'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
put:
summary: Edit an organization
description: To edit an organization you must have the admin permission
operationId: editOrganization
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Organization Main Calls
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationEditRequest'
responses:
'200':
description: Edit an organization
content:
application/json:
schema:
$ref: '#/components/schemas/Organization'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'409':
description: Organization name is already taken
delete:
summary: Delete an organization
description: To delete an organization you must have the admin permission
operationId: deleteOrganization
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Organization Main Calls
responses:
'204':
$ref: '#/components/responses/204-deletion'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/apiToken':
get:
summary: List organization api tokens
description: List organization api tokens
operationId: listOrganizationApiTokens
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Organization Api Token
responses:
'200':
description: List organization api tokens
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationApiTokenResponseList'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
post:
summary: Create an organization api token
description: Create an organization api token. You can use the generated token to interact in a programmatic way with our API.
operationId: createOrganizationApiToken
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Organization Api Token
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationApiTokenCreateRequest'
responses:
'201':
description: Organization api token created
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationApiTokenCreate'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'409':
description: Organization Api Token name is already taken
'/organization/{organizationId}/apiToken/{apiTokenId}':
delete:
summary: Delete organization api token
description: Delete organization api token
operationId: deleteOrganizationApiToken
parameters:
- $ref: '#/components/parameters/organizationId'
- name: apiTokenId
in: path
description: Organization Api Token ID
required: true
schema:
type: string
format: uuid
tags:
- Organization Api Token
responses:
'204':
$ref: '#/components/responses/204'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/availableRole':
get:
summary: List organization available roles
description: List organization available roles
operationId: listOrganizationAvailableRoles
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Organization Main Calls
responses:
'200':
description: List organization available roles
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationAvailableRoleList'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/gitToken':
get:
summary: List organization git tokens
description: List organization git tokens
operationId: listOrganizationGitTokens
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Organization Main Calls
responses:
'200':
description: List organization git tokens
content:
application/json:
schema:
$ref: '#/components/schemas/GitTokenResponseList'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
post:
summary: Create a git token
description: Create a new git token to be used as a git provider by a service
operationId: createGitToken
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Organization Main Calls
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/GitTokenRequest'
responses:
'201':
description: Git token created
content:
application/json:
schema:
$ref: '#/components/schemas/GitTokenResponse'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/gitToken/{gitTokenId}':
get:
summary: Get organization git token
description: Get organization git token
operationId: getOrganizationGitToken
parameters:
- $ref: '#/components/parameters/organizationId'
- $ref: '#/components/parameters/gitTokenId'
tags:
- Organization Main Calls
responses:
'200':
description: Get organization git token
content:
application/json:
schema:
$ref: '#/components/schemas/GitTokenResponse'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
put:
summary: Edit a git token
operationId: editGitToken
parameters:
- $ref: '#/components/parameters/organizationId'
- $ref: '#/components/parameters/gitTokenId'
tags:
- Organization Main Calls
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/GitTokenRequest'
responses:
'200':
description: Git token edited
content:
application/json:
schema:
$ref: '#/components/schemas/GitTokenResponse'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
delete:
summary: Delete a git token
operationId: deleteGitToken
parameters:
- $ref: '#/components/parameters/organizationId'
- $ref: '#/components/parameters/gitTokenId'
tags:
- Organization Main Calls
responses:
'204':
$ref: '#/components/responses/204-deletion'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/gitToken/{gitTokenId}/associatedServices':
get:
summary: Get organization git token associated services
description: Get organization git tokens associated services
operationId: getGitTokenAssociatedServices
parameters:
- $ref: '#/components/parameters/organizationId'
- $ref: '#/components/parameters/gitTokenId'
tags:
- Organization Main Calls
responses:
'200':
description: Get organization git token associated services
content:
application/json:
schema:
$ref: '#/components/schemas/GitTokenAssociatedServicesResponseList'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/member':
get:
summary: Get organization members
operationId: getOrganizationMembers
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Members
responses:
'200':
description: Get members
content:
application/json:
schema:
$ref: '#/components/schemas/MemberResponseList'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
put:
summary: Edit an organization member role
description: Edit an organization member role
operationId: editOrganizationMemberRole
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Members
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/MemberRoleUpdateRequest'
responses:
'200':
description: Edit an organization member role
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
delete:
summary: Remove a member
operationId: deleteMember
parameters:
- $ref: '#/components/parameters/organizationId'
requestBody:
content:
application/json:
schema:
type: object
required:
- user_id
properties:
user_id:
type: string
format: uuid
tags:
- Members
responses:
'204':
$ref: '#/components/responses/204-deletion'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/inviteMember':
get:
summary: Get invited members
operationId: getOrganizationInvitedMembers
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Members
responses:
'200':
description: Get invited members
content:
application/json:
schema:
$ref: '#/components/schemas/InviteMemberResponseList'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
post:
summary: Invite someone in the organization
operationId: postInviteMember
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Members
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/InviteMemberRequest'
responses:
'201':
description: User invited
content:
application/json:
schema:
$ref: '#/components/schemas/InviteMember'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'409':
description: User already invited
'/organization/{organizationId}/inviteMember/{inviteId}':
get:
summary: Get member invitation
operationId: getMemberInvitation
parameters:
- $ref: '#/components/parameters/organizationId'
- $ref: '#/components/parameters/inviteId'
tags:
- Members
responses:
'200':
description: Get member invitation
content:
application/json:
schema:
$ref: '#/components/schemas/InviteMember'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
post:
summary: Accept Invite in the organization
operationId: postAcceptInviteMember
parameters:
- $ref: '#/components/parameters/organizationId'
- $ref: '#/components/parameters/inviteId'
tags:
- Members
responses:
'201':
description: User invited
content:
application/json:
schema:
$ref: '#/components/schemas/InviteMember'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'409':
description: User already invited
delete:
summary: Remove an invited member
operationId: deleteInviteMember
parameters:
- $ref: '#/components/parameters/organizationId'
- $ref: '#/components/parameters/inviteId'
tags:
- Members
responses:
'204':
$ref: '#/components/responses/204-deletion'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/transferOwnership':
post:
summary: Transfer organization ownership to another user
operationId: postOrganizationTransferOwnership
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Members
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/TransferOwnershipRequest'
responses:
'204':
$ref: '#/components/responses/204'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/currentCost':
get:
summary: Get organization current cost
operationId: getOrganizationCurrentCost
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Billing
responses:
'200':
description: Get Cost
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationCurrentCost'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/creditCode':
post:
summary: Add credit code
operationId: addCreditCode
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Billing
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationCreditCodeRequest'
responses:
'200':
description: add credit code
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/changePlan':
post:
summary: Change organization plan
operationId: changePlan
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Billing
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationChangePlanRequest'
responses:
'200':
description: plan has been successfully changed
content:
application/json:
schema:
$ref: '#/components/schemas/Organization'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/cluster/{clusterId}/currentCost':
get:
summary: Get cluster current cost
operationId: getClusterCurrentCost
description: |
Get your cluster cost range. We are unable to give a precise cost of your infrastructure at the moment.
But Qovery guarantees that the cost of your cluster will not exceed the max range.
parameters:
- $ref: '#/components/parameters/organizationId'
- $ref: '#/components/parameters/clusterId'
tags:
- Billing
responses:
'200':
description: Get cluster cost
content:
application/json:
schema:
$ref: '#/components/schemas/CostRange'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/billingInfo':
get:
summary: Get organization billing info
operationId: getOrganizationBillingInfo
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Billing
responses:
'200':
description: Get Billing Info
content:
application/json:
schema:
$ref: '#/components/schemas/BillingInfo'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
put:
summary: Edit Organization Billing Info
operationId: editOrganizationBillingInfo
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Billing
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/BillingInfoRequest'
responses:
'200':
description: Edit billing info
content:
application/json:
schema:
$ref: '#/components/schemas/BillingInfo'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/billingStatus':
get:
summary: Get organization billing status
description: |
This endpoint returns a "is_valid" boolean field reflecting the billing status of the organization:
- If true, the organization billing is valid
- For Startup organization, it returns false if there is at least 1 invoice unpaid since 1 week
- For Community organization, it returns false if there is no credit left
operationId: getOrganizationBillingStatus
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Billing
responses:
'200':
description: Get Billing Status
content:
application/json:
schema:
$ref: '#/components/schemas/BillingStatus'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/billingUsageReport':
post:
summary: Generate organization billing usage report
operationId: generateBillingUsageReport
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Billing
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationBillingUsageReportRequest'
responses:
'200':
description: billing usage report has been successfully generated
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationBillingUsageReportResponse'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'