-
Notifications
You must be signed in to change notification settings - Fork 5.2k
/
Copy pathapimusers.json
1010 lines (1010 loc) · 32.9 KB
/
apimusers.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
{
"swagger": "2.0",
"info": {
"title": "ApiManagementClient",
"description": "Use these REST APIs for performing operations on User entity in Azure API Management deployment. The User entity in API Management represents the developers that call the APIs of the products to which they are subscribed.",
"version": "2018-01-01"
},
"host": "management.azure.com",
"schemes": [
"https"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"security": [
{
"azure_auth": [
"user_impersonation"
]
}
],
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"authorizationUrl": "https://#.microsoftonline.com/common/oauth2/authorize",
"flow": "implicit",
"description": "Azure Active Directory OAuth2 Flow.",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
},
"paths": {
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/identity": {
"get": {
"tags": [
"Users"
],
"operationId": "User_GetIdentity",
"description": "Returns calling user identity information.",
"x-ms-examples": {
"ApiManagementListUsers": {
"$ref": "./examples/ApiManagementGetUserIdentity.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "Current user APIM id.",
"schema": {
"$ref": "#/definitions/CurrentUserIdentity"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users": {
"get": {
"tags": [
"Users"
],
"operationId": "User_ListByService",
"description": "Lists a collection of registered users in the specified service instance.",
"x-ms-examples": {
"ApiManagementListUsers": {
"$ref": "./examples/ApiManagementListUsers.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"name": "$filter",
"in": "query",
"required": false,
"type": "string",
"description": "| Field | Supported operators | Supported functions |\n|------------------|------------------------|-----------------------------------|\n| id | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| firstName | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| lastName | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| email | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| state | eq | N/A |\n| registrationDate | ge, le, eq, ne, gt, lt | N/A |\n| note | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |"
},
{
"$ref": "./apimanagement.json#/parameters/TopQueryParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SkipQueryParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "Lists a collection of User entities.",
"schema": {
"$ref": "#/definitions/UserCollection"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-odata": "#/definitions/UserContract"
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}": {
"head": {
"tags": [
"Users"
],
"operationId": "User_GetEntityTag",
"description": "Gets the entity state (Etag) version of the user specified by its identifier.",
"x-ms-examples": {
"ApiManagementHeadUser": {
"$ref": "./examples/ApiManagementHeadUser.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"$ref": "#/parameters/UserIdParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "Specified user entity exists and current entity state version is present in the ETag header.",
"headers": {
"ETag": {
"description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.",
"type": "string"
}
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
}
},
"get": {
"tags": [
"Users"
],
"operationId": "User_Get",
"description": "Gets the details of the user specified by its identifier.",
"x-ms-examples": {
"ApiManagementGetUser": {
"$ref": "./examples/ApiManagementGetUser.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"$ref": "#/parameters/UserIdParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "Gets the specified user entity.",
"schema": {
"$ref": "#/definitions/UserContract"
},
"headers": {
"ETag": {
"description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.",
"type": "string"
}
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
}
},
"put": {
"tags": [
"Users"
],
"operationId": "User_CreateOrUpdate",
"description": "Creates or Updates a user.",
"x-ms-examples": {
"ApiManagementCreateUserBasic": {
"$ref": "./examples/ApiManagementCreateUserBasic.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"$ref": "#/parameters/UserIdParameter"
},
{
"name": "parameters",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/UserCreateParameters"
},
"description": "Create or update parameters."
},
{
"$ref": "./apimanagement.json#/parameters/IfMatchOptionalParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"201": {
"description": "User was successfully created.",
"schema": {
"$ref": "#/definitions/UserContract"
}
},
"200": {
"description": "User was successfully updated.",
"schema": {
"$ref": "#/definitions/UserContract"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
}
},
"patch": {
"tags": [
"Users"
],
"operationId": "User_Update",
"description": "Updates the details of the user specified by its identifier.",
"x-ms-examples": {
"ApiManagementUpdateUserBasic": {
"$ref": "./examples/ApiManagementUpdateUserBasic.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"$ref": "#/parameters/UserIdParameter"
},
{
"name": "parameters",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/UserUpdateParameters"
},
"description": "Update parameters."
},
{
"$ref": "./apimanagement.json#/parameters/IfMatchRequiredParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"204": {
"description": "The user details were successfully updated."
},
"default": {
"description": "*** Error Responses: ***\n\n * 405 Administrator user cannot be modified\n\n * 4XX Error response giving details why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
}
},
"delete": {
"tags": [
"Users"
],
"operationId": "User_Delete",
"description": "Deletes specific user.",
"x-ms-examples": {
"ApiManagementDeleteUser": {
"$ref": "./examples/ApiManagementDeleteUser.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"$ref": "#/parameters/UserIdParameter"
},
{
"name": "deleteSubscriptions",
"in": "query",
"required": false,
"type": "boolean",
"description": "Whether to delete user's subscription or not."
},
{
"name": "notify",
"in": "query",
"required": false,
"type": "boolean",
"description": "Send an Account Closed Email notification to the User."
},
{
"$ref": "./apimanagement.json#/parameters/IfMatchRequiredParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "The user details were successfully deleted."
},
"204": {
"description": "The user details were successfully deleted."
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}/generateSsoUrl": {
"post": {
"tags": [
"Users"
],
"operationId": "User_GenerateSsoUrl",
"description": "Retrieves a redirection URL containing an authentication token for signing a given user into the developer portal.",
"x-ms-examples": {
"ApiManagementUsersGenerateSsoUrl": {
"$ref": "./examples/ApiManagementUsersGenerateSsoUrl.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"$ref": "#/parameters/UserIdParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "The response body contains the single sign-on URL.",
"schema": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/GenerateSsoUrlResult"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}/groups": {
"get": {
"tags": [
"UserGroups"
],
"operationId": "UserGroup_List",
"description": "Lists all user groups.",
"x-ms-examples": {
"ApiManagementListUserGroups": {
"$ref": "./examples/ApiManagementListUserGroups.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"$ref": "#/parameters/UserIdParameter"
},
{
"name": "$filter",
"in": "query",
"required": false,
"type": "string",
"description": "| Field | Supported operators | Supported functions |\n|-------------|------------------------|---------------------------------------------|\n| id | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| name | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| description | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |"
},
{
"$ref": "./apimanagement.json#/parameters/TopQueryParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SkipQueryParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "Lists a collection of Group entities.",
"schema": {
"$ref": "./apimgroups.json#/definitions/GroupCollection"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-odata": "./apimgroups.json#/definitions/GroupContract"
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}/subscriptions": {
"get": {
"tags": [
"UserSubscriptions"
],
"operationId": "UserSubscription_List",
"description": "Lists the collection of subscriptions of the specified user.",
"x-ms-examples": {
"ApiManagementListUserSubscriptions": {
"$ref": "./examples/ApiManagementListUserSubscriptions.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"$ref": "#/parameters/UserIdParameter"
},
{
"name": "$filter",
"in": "query",
"required": false,
"type": "string",
"description": "| Field | Supported operators | Supported functions |\n|--------------|------------------------|---------------------------------------------|\n| id | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| name | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| stateComment | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| userId | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| productId | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |\n| state | eq | |"
},
{
"$ref": "./apimanagement.json#/parameters/TopQueryParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SkipQueryParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "Lists a collection of Subscription entities.",
"schema": {
"$ref": "./apimsubscriptions.json#/definitions/SubscriptionCollection"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-odata": "./apimsubscriptions.json#/definitions/SubscriptionContract"
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}/identities": {
"get": {
"tags": [
"UserIdentities"
],
"operationId": "UserIdentities_List",
"description": "Lists all user identities.",
"x-ms-examples": {
"ApiManagementListUsersIdentities": {
"$ref": "./examples/ApiManagementListUsersIdentities.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"$ref": "#/parameters/UserIdParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
}
],
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"responses": {
"200": {
"description": "Lists of User Identities.",
"schema": {
"$ref": "#/definitions/UserIdentityCollection"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}/token": {
"post": {
"tags": [
"Users"
],
"operationId": "User_GetSharedAccessToken",
"description": "Gets the Shared Access Authorization Token for the User.",
"x-ms-examples": {
"ApiManagementUsersGetToken": {
"$ref": "./examples/ApiManagementUsersGetToken.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"$ref": "#/parameters/UserIdParameter"
},
{
"name": "parameters",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/UserTokenParameters"
},
"description": "Create Authorization Token parameters."
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "The response body contains the authorization token for the user.",
"schema": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/UserTokenResult"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
}
}
}
},
"definitions": {
"GenerateSsoUrlResult": {
"properties": {
"value": {
"type": "string",
"description": "Redirect Url containing the SSO URL value."
}
},
"description": "Generate SSO Url operations response details."
},
"UserCollection": {
"properties": {
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/UserContract"
},
"description": "Page values."
},
"nextLink": {
"type": "string",
"description": "Next page link if any."
}
},
"description": "Paged Users list representation."
},
"UserContract": {
"properties": {
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/UserContractProperties",
"description": "User entity contract properties."
}
},
"allOf": [
{
"$ref": "./apimanagement.json#/definitions/Resource"
}
],
"description": "User details."
},
"UserContractProperties": {
"properties": {
"firstName": {
"type": "string",
"description": "First name."
},
"lastName": {
"type": "string",
"description": "Last name."
},
"email": {
"type": "string",
"description": "Email address."
},
"registrationDate": {
"type": "string",
"format": "date-time",
"description": "Date of user registration. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n"
},
"groups": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "./apimgroups.json#/definitions/GroupContractProperties"
},
"description": "Collection of groups user is part of."
}
},
"allOf": [
{
"$ref": "#/definitions/UserEntityBaseParameters"
}
],
"description": "User profile."
},
"UserCreateParameters": {
"properties": {
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/UserCreateParameterProperties",
"description": "User entity create contract properties."
}
},
"description": "User create details."
},
"UserCreateParameterProperties": {
"properties": {
"email": {
"type": "string",
"description": "Email address. Must not be empty and must be unique within the service instance.",
"minLength": 1,
"maxLength": 254
},
"firstName": {
"type": "string",
"description": "First name.",
"minLength": 1,
"maxLength": 100
},
"lastName": {
"type": "string",
"description": "Last name.",
"minLength": 1,
"maxLength": 100
},
"password": {
"type": "string",
"description": "User Password. If no value is provided, a default password is generated."
},
"confirmation": {
"type": "string",
"description": "Determines the type of confirmation e-mail that will be sent to the newly created user.",
"enum": [
"#",
"invite"
],
"x-ms-enum": {
"name": "Confirmation",
"modelAsString": true,
"values": [
{
"value": "#",
"description": "Send an e-mail to the user confirming they have successfully signed up."
},
{
"value": "invite",
"description": "Send an e-mail inviting the user to sign-up and complete registration."
}
]
}
}
},
"allOf": [
{
"$ref": "#/definitions/UserEntityBaseParameters"
}
],
"required": [
"email",
"firstName",
"lastName"
],
"description": "Parameters supplied to the Create User operation."
},
"UserEntityBaseParameters": {
"properties": {
"state": {
"type": "string",
"description": "Account state. Specifies whether the user is active or not. Blocked users are unable to #to the developer portal or call any APIs of subscribed products. Default state is Active.",
"enum": [
"active",
"blocked",
"pending",
"deleted"
],
"default": "active",
"x-ms-enum": {
"name": "UserState",
"modelAsString": true,
"values": [
{
"value": "active",
"description": "User state is active."
},
{
"value": "blocked",
"description": "User is blocked. Blocked users cannot authenticate at developer portal or call API."
},
{
"value": "pending",
"description": "User account is pending. Requires identity confirmation before it can be made active."
},
{
"value": "deleted",
"description": "User account is closed. All identities and related entities are removed."
}
]
}
},
"note": {
"type": "string",
"description": "Optional note about a user set by the administrator."
},
"identities": {
"type": "array",
"items": {
"$ref": "#/definitions/UserIdentityContract"
},
"description": "Collection of user identities."
}
},
"description": "User Entity Base Parameters set."
},
"UserIdentityCollection": {
"properties": {
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/UserIdentityContract"
},
"description": "User Identity values."
},
"count": {
"type": "integer",
"format": "int64",
"description": "Total record count number across all pages."
},
"nextLink": {
"type": "string",
"description": "Next page link if any."
}
},
"description": "List of Users Identity list representation."
},
"UserIdentityContract": {
"properties": {
"provider": {
"type": "string",
"description": "Identity provider name."
},
"id": {
"type": "string",
"description": "Identifier value within provider."
}
},
"description": "User identity details."
},
"UserTokenParameters": {
"properties": {
"keyType": {
"type": "string",
"description": "The Key to be used to generate token for user.",
"enum": [
"primary",
"secondary"
],
"default": "primary",
"x-ms-enum": {
"name": "KeyType",
"modelAsString": false
}
},
"expiry": {
"type": "string",
"format": "date-time",
"description": "The Expiry time of the Token. Maximum token expiry time is set to 30 days. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n"
}
},
"required": [
"keyType",
"expiry"
],
"description": "Parameters supplied to the Get User Token operation."
},
"UserTokenResult": {
"properties": {
"value": {
"type": "string",
"description": "Shared Access Authorization token for the User."
}
},
"description": "Get User Token response details."
},
"UserUpdateParameters": {
"properties": {
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/UserUpdateParametersProperties",
"description": "User entity update contract properties."
}
},
"description": "User update parameters."
},
"UserUpdateParametersProperties": {
"properties": {
"email": {
"type": "string",
"description": "Email address. Must not be empty and must be unique within the service instance.",
"minLength": 1,
"maxLength": 254
},
"password": {
"type": "string",
"description": "User Password."
},
"firstName": {
"type": "string",
"description": "First name.",
"minLength": 1,
"maxLength": 100
},
"lastName": {
"type": "string",
"description": "Last name.",
"minLength": 1,
"maxLength": 100
}
},
"allOf": [
{
"$ref": "#/definitions/UserEntityBaseParameters"
}
],
"description": "Parameters supplied to the Update User operation."
},
"CurrentUserIdentity": {
"properties": {
"id": {
"type": "string",
"description": "API Management service user id."
}
}
}
},
"parameters": {
"UserIdParameter": {
"name": "uid",
"in": "path",