forked from Shuffle/openapi-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathokta_openapi.yaml
6563 lines (6563 loc) · 185 KB
/
okta_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
basePath: /
components:
securitySchemes:
ApiKeyAuth:
in: header
name: Authorization
type: apiKey
host: your-domain.okta.com
info:
contact:
email: [email protected]
name: Okta Developer Team
url: http://developer.okta.com/
description: 'Allows customers to easily access the Okta API. Generated from https://raw.githubusercontent.com/okta/okta-management-openapi-spec/master/resources/spec.yaml.
Prefix auth token with SSWS. More docs: https://developer.okta.com/docs/reference/api/users/'
title: Okta OpenAPI
version: '1.0'
x-categories:
- IAM
x-logo: data:image/png;base64,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
openapi: 3.0.0
paths:
/api/v1/apps:
get:
description: Enumerates apps added to your organization with pagination. A subset
of apps can be returned that match a supported filter expression or query.
operationId: List_Applications
parameters:
- description: Generated by shuffler.io OpenAPI
in: query
name: q
required: false
schema:
type: string
- description: Specifies the pagination cursor for the next page of apps
in: query
name: after
required: false
schema:
type: string
- description: Specifies the number of results for a page
in: query
name: limit
required: false
schema:
type: string
- description: Filters apps by status, user.id, group.id or credentials.signing.kid
expression
in: query
name: filter
required: false
schema:
type: string
- description: Traverses users link relationship and optionally embeds Application
User resource
in: query
name: expand
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: query
name: includeNonDeleted
required: false
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: List Applications
post:
description: Adds a new application to your Okta organization.
operationId: Add_Application
parameters:
- description: Executes activation lifecycle operation when creating the app
in: query
name: activate
required: false
schema:
type: string
- description: Header generated by shuffler.io OpenAPI
example: undefined
in: header
multiline: false
name: OktaAccessGateway-Agent
required: false
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Add Application
/api/v1/apps/{appId}:
delete:
description: Removes an inactive application.
operationId: Delete_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Delete Application
get:
description: Fetches an application from your Okta organization by `id`.
operationId: Get_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: query
name: expand
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Get Application
put:
description: Updates an application in your organization.
operationId: Update_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Update Application
/api/v1/apps/{appId}/credentials/csrs:
get:
description: Enumerates Certificate Signing Requests for an application
operationId: List_Certificate_Signing_Requests_for_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: List Certificate Signing Requests for Application
post:
description: Generates a new key pair and returns the Certificate Signing Request
for it.
operationId: Generate_Certificate_Signing_Request_for_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Generate Certificate Signing Request for Application
/api/v1/apps/{appId}/credentials/csrs/{csrId}:
delete:
operationId: Delete_appId
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: csrId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Delete appId
get:
operationId: Get_appId
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: csrId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Get appId
/api/v1/apps/{appId}/credentials/csrs/{csrId}/lifecycle/publish:
post:
operationId: Post_appId
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: csrId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Post appId
/api/v1/apps/{appId}/credentials/keys:
get:
description: Enumerates key credentials for an application
operationId: List_Key_Credentials_for_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: List Key Credentials for Application
/api/v1/apps/{appId}/credentials/keys/generate:
post:
description: Generates a new X.509 certificate for an application key credential
operationId: Generates_a_new_X509_certificate_for_an_application_key_credential
parameters:
- description: Generated by shuffler.io OpenAPI
in: query
name: validityYears
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Generates a new X509 certificate for an application key credential
/api/v1/apps/{appId}/credentials/keys/{keyId}:
get:
description: Gets a specific application key credential by kid
operationId: Get_Key_Credential_for_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: keyId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Get Key Credential for Application
/api/v1/apps/{appId}/credentials/keys/{keyId}/clone:
post:
description: Clones a X.509 certificate for an application key credential from
a source application to target application.
operationId: Clone_Application_Key_Credential
parameters:
- description: Unique key of the target Application
in: query
name: targetAid
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: keyId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Clone Application Key Credential
/api/v1/apps/{appId}/grants:
get:
description: Lists all scope consent grants for the application
operationId: Get_app_grants
parameters:
- description: Generated by shuffler.io OpenAPI
in: query
name: expand
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Get app grants
post:
description: Grants consent for the application to request an OAuth 2.0 Okta
scope
operationId: Grants_consent_for_the_application_to_request_an_OAuth_20_Okta_scope
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Grants consent for the application to request an OAuth 20 Okta scope
/api/v1/apps/{appId}/grants/{grantId}:
delete:
description: Revokes permission for the application to request the given scope
operationId: Revokes_permission_for_the_application_to_request_the_given_scope
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: grantId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Revokes permission for the application to request the given scope
get:
description: Fetches a single scope consent grant for the application
operationId: Fetches_a_single_scope_consent_grant_for_the_application
parameters:
- description: Generated by shuffler.io OpenAPI
in: query
name: expand
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: grantId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Fetches a single scope consent grant for the application
/api/v1/apps/{appId}/groups:
get:
description: Enumerates group assignments for an application.
operationId: List_Groups_Assigned_to_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: query
name: q
required: false
schema:
type: string
- description: Specifies the pagination cursor for the next page of assignments
in: query
name: after
required: false
schema:
type: string
- description: Specifies the number of results for a page
in: query
name: limit
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: query
name: expand
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: List Groups Assigned to Application
/api/v1/apps/{appId}/groups/{groupId}:
delete:
description: Removes a group assignment from an application.
operationId: Remove_Group_from_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: groupId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Remove Group from Application
get:
description: Fetches an application group assignment
operationId: Get_Assigned_Group_for_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: query
name: expand
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: groupId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Get Assigned Group for Application
put:
description: Assigns a group to an application
operationId: Assign_Group_to_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: groupId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Assign Group to Application
/api/v1/apps/{appId}/lifecycle/activate:
post:
description: Activates an inactive application.
operationId: Activate_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Activate Application
/api/v1/apps/{appId}/lifecycle/deactivate:
post:
description: Deactivates an active application.
operationId: Deactivate_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Deactivate Application
/api/v1/apps/{appId}/tokens:
delete:
description: Revokes all tokens for the specified application
operationId: Revokes_all_tokens_for_the_specified_application
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Revokes all tokens for the specified application
get:
description: Lists all tokens for the application
operationId: Lists_all_tokens_for_the_application
parameters:
- description: Generated by shuffler.io OpenAPI
in: query
name: expand
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: query
name: after
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: query
name: limit
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Lists all tokens for the application
/api/v1/apps/{appId}/tokens/{tokenId}:
delete:
description: Revokes the specified token for the specified application
operationId: Revokes_the_specified_token_for_the_specified_application
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: tokenId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Revokes the specified token for the specified application
get:
description: Gets a token for the specified application
operationId: Gets_a_token_for_the_specified_application
parameters:
- description: Generated by shuffler.io OpenAPI
in: query
name: expand
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: tokenId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Gets a token for the specified application
/api/v1/apps/{appId}/users:
get:
description: Enumerates all assigned [application users](#application-user-model)
for an application.
operationId: List_Users_Assigned_to_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: query
name: q
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: query
name: query_scope
required: false
schema:
type: string
- description: specifies the pagination cursor for the next page of assignments
in: query
name: after
required: false
schema:
type: string
- description: specifies the number of results for a page
in: query
name: limit
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: query
name: filter
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: query
name: expand
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: List Users Assigned to Application
post:
description: Assigns an user to an application with [credentials](#application-user-credentials-object)
and an app-specific [profile](#application-user-profile-object). Profile mappings
defined for the application are first applied before applying any profile
properties specified in the request.
operationId: Assign_User_to_Application_for_SSO__Provisioning
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Assign User to Application for SSO Provisioning
/api/v1/apps/{appId}/users/{userId}:
delete:
description: Removes an assignment for a user from an application.
operationId: Remove_User_from_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: query
name: sendEmail
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: userId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Remove User from Application
get:
description: Fetches a specific user assignment for application by `id`.
operationId: Get_Assigned_User_for_Application
parameters:
- description: Generated by shuffler.io OpenAPI
in: query
name: expand
required: false
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: userId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default
summary: Get Assigned User for Application
post:
description: Updates a user's profile for an application
operationId: Update_Application_Profile_for_Assigned_User
parameters:
- description: Generated by shuffler.io OpenAPI
in: path
name: appId
required: true
schema:
type: string
- description: Generated by shuffler.io OpenAPI
in: path
name: userId
required: true
schema:
type: string
requestBody:
content: {}
responses:
default:
content:
text/plain:
schema:
example: ''
type: string
description: default