-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure_codes.json
5556 lines (5556 loc) · 227 KB
/
azure_codes.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
[
{
"ErrorCode": "0",
"Message": "No specific error message for this error code"
},
{
"ErrorCode": "16000",
"Message": "Either multiple user identities are available for the current request or selected account is not supported for the scenario.",
"Remediation": "This is not an error scenario, but is handled like one by Azure AD to handle certain authentication flows. This is not an indication that anything went wrong."
},
{
"ErrorCode": "16001",
"Message": "Active accounts must be logged out first."
},
{
"ErrorCode": "16002",
"Message": "Application requested to sign out of a user session which does not exist."
},
{
"ErrorCode": "16003",
"Message": "The user account does not exist in the directory or the user hasn't been explicitly added to the tenant. To sign into this application, the account must be added to the directory.",
"Remediation": "Invite the user to the tenant, or ignore this error if the user isn't supposed to be a member of the tenant. This can be the case when someone is sent to a login URL for your tenant without being a member, or picks the wrong user account."
},
{
"ErrorCode": "17001",
"Message": "Protected credential key can not be decoded."
},
{
"ErrorCode": "17002",
"Message": "Credential key can not be protected."
},
{
"ErrorCode": "17003",
"Message": "User key ({keyType}) could not be provisioned."
},
{
"ErrorCode": "17004",
"Message": "Protected credential key can not be decoded."
},
{
"ErrorCode": "18000",
"Message": "Cannot decrypt auth ticket with key version '{version}'."
},
{
"ErrorCode": "18001",
"Message": "Cannot decrypt buffer because of a HMAC mismatch."
},
{
"ErrorCode": "20001",
"Message": "The sign-in response message does not contain an issued token.",
"Remediation": "There's an issue with your federated identity provider. The WS-Federation response acquired from a federated identity provider has been successfully parsed, but it did not contain SAML 1.1 assertion issued for the user. Please contact your identity provider to resolve this issue."
},
{
"ErrorCode": "20002",
"Message": "An error occurred while attempting to export Federation Metadata."
},
{
"ErrorCode": "20012",
"Message": "An error occurred when we tried to process a WS-Federation message. The message was invalid.",
"Remediation": "There is an issue with your federated identity provider. Contact your identity provider to resolve this issue."
},
{
"ErrorCode": "20024",
"Message": "Federation metadata retrieval failed after multiple retries."
},
{
"ErrorCode": "20033",
"Message": "The actual message content is runtime specific. Please see returned exception message for details.",
"Remediation": "Actual message content is runtime specific. Please see returned exception message for details."
},
{
"ErrorCode": "20034",
"Message": "Non-retryable error has occurred."
},
{
"ErrorCode": "25008",
"Message": "Unable to parse assertion."
},
{
"ErrorCode": "26000",
"Message": "The provided access grant requires interaction."
},
{
"ErrorCode": "27000",
"Message": "Error when processing DeviceAuthRedirect request."
},
{
"ErrorCode": "28000",
"Message": "Provided value for the input parameter scope is not valid because it contains more than one resource. Scope {scope} is not valid."
},
{
"ErrorCode": "28001",
"Message": "Provided request must include a 'scope' input parameter."
},
{
"ErrorCode": "28002",
"Message": "Provided value for the input parameter scope '{scope}' is not valid when requesting an access token. Please specify a valid scope."
},
{
"ErrorCode": "28003",
"Message": "Provided value for the input parameter scope cannot be empty when requesting an access token using the provided authorization code. Please specify a valid scope."
},
{
"ErrorCode": "28004",
"Message": "The provided value for the input parameter 'scope' exceeded the number of scopes allowed. The scope {scope} is not valid."
},
{
"ErrorCode": "28005",
"Message": "The provided value for the input parameter 'actionid' was invalid."
},
{
"ErrorCode": "28006",
"Message": "The provided value for the input parameter 'pageid' was invalid."
},
{
"ErrorCode": "28007",
"Message": "The parameters provided in the request are incorrect or missing."
},
{
"ErrorCode": "29000",
"Message": "Invalid signing key for SSH certificate"
},
{
"ErrorCode": "29001",
"Message": "User is missing UPN or email"
},
{
"ErrorCode": "29002",
"Message": "Missing Proof of Possession key"
},
{
"ErrorCode": "29003",
"Message": "Proof of Possession key is invalid"
},
{
"ErrorCode": "29004",
"Message": "Proof of Possession key type is not supported"
},
{
"ErrorCode": "29005",
"Message": "The token scenario {tokenScenario} is invalid."
},
{
"ErrorCode": "29006",
"Message": "Client is missing application principal ID (Client ID) in tenant {tenantId}"
},
{
"ErrorCode": "29007",
"Message": "The permission (scope) list {scopeListString} is missing user_impersonation"
},
{
"ErrorCode": "29008",
"Message": "The resource 'Microsoft Azure Linux Virtual Machine Sign-In' ({resourceUrl}) is required for SSH certificate token request"
},
{
"ErrorCode": "29100",
"Message": "A transient error has occurred. Please try again."
},
{
"ErrorCode": "29200",
"Message": "QR Code requested. Generate QR code and display on UX page for interactive sign-ins."
},
{
"ErrorCode": "29201",
"Message": "Invalid QR Code request. Client Id ({clientId}) or target client Id ({targetClientId}) is invalid."
},
{
"ErrorCode": "29202",
"Message": "Invalid scope and response_type request parameters. scope=qrcode can only be used with response_type=none."
},
{
"ErrorCode": "29203",
"Message": "Invalid target_client_id '{targetClientId}' argument value."
},
{
"ErrorCode": "29204",
"Message": "Failed to write QR Code token to Store."
},
{
"ErrorCode": "29205",
"Message": "Generated QR Code string has exceeded maximum supported length."
},
{
"ErrorCode": "29206",
"Message": "Invalid QR Code redemption request. Client Id ({clientId}) is invalid."
},
{
"ErrorCode": "29207",
"Message": "Error processing session data. QR Code is either invalid or expired."
},
{
"ErrorCode": "29208",
"Message": "Error processing session data. QR Code was already redeemed."
},
{
"ErrorCode": "29210",
"Message": "QR Code sign-in is disabled via user credential policy."
},
{
"ErrorCode": "29211",
"Message": "QR Code sign-in is not supported for passthrough users."
},
{
"ErrorCode": "29212",
"Message": "QR Code sign-in is not supported for consumer user scenarios."
},
{
"ErrorCode": "40002",
"Message": "The identity provider returned an error. The status returned was '{status}' and the message was '{message}'."
},
{
"ErrorCode": "40003",
"Message": "A required token was not emitted by an external Identity Provider."
},
{
"ErrorCode": "40004",
"Message": "A required token was not emitted by an external Identity Provider."
},
{
"ErrorCode": "40005",
"Message": "Invalid token received from external Identity Provider. Current time: {curTime}, expiry time of assertion {expTime}."
},
{
"ErrorCode": "40008",
"Message": "There was an unexpected error from the external identity provider.",
"Remediation": "There is an issue with your federated identity provider. Contact your identity provider to resolve this issue."
},
{
"ErrorCode": "40009",
"Message": "The identity provider returned an error.",
"Remediation": "There is an issue with your federated identity provider. Contact your identity provider to resolve this issue."
},
{
"ErrorCode": "40010",
"Message": "The identity provider has failed with a transient error.",
"Remediation": "The application should retry the request. If there is still an issue, contact your identity provider."
},
{
"ErrorCode": "40013",
"Message": "Social IDP MicroService Federation disabled."
},
{
"ErrorCode": "40014",
"Message": "Federated Identity Provider is unavailable.",
"Remediation": "There is an issue with your federated identity provider. Contact your identity provider to resolve this issue."
},
{
"ErrorCode": "40015",
"Message": "The identity provider returned an error.",
"Remediation": "There is an issue with your federated identity provider. Contact your identity provider to resolve this issue."
},
{
"ErrorCode": "40016",
"Message": "The Identity Provider returned an error.",
"Remediation": "There is an issue with your federated identity provider. Contact your identity provider to resolve this issue."
},
{
"ErrorCode": "50000",
"Message": "There was an error issuing a token or an issue with our sign-in service.",
"Remediation": "If this persists, open a support ticket to resolve this issue: https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-troubleshooting-support-howto"
},
{
"ErrorCode": "50001",
"Message": "The resource is disabled or the resource named could not be found. This can happen if the application has not been installed by the administrator of the tenant, or if the resource principal was not found in the directory or is invalid due to a typo.",
"Remediation": "Check your app's code to ensure that you have specified the exact and correct resource URL for the resource you are trying to access. Please see the returned exception message for details."
},
{
"ErrorCode": "50002",
"Message": "This tenant isn't supported for this authentication method yet."
},
{
"ErrorCode": "50003",
"Message": "Certificate roll is in progress. Please retry the operation later.",
"Remediation": "Check the resolutions outlined at https://docs.microsoft.com/azure/active-directory/application-sign-in-problem-federated-sso-gallery#certificate-or-key-not-configured. If you still see issues, contact the app owner or an app admin."
},
{
"ErrorCode": "50004",
"Message": "A transient error has occurred. Please try again."
},
{
"ErrorCode": "50005",
"Message": "User tried to log in to a device from a platform ({platform}) that's currently not supported through Conditional Access policy. Supported device platforms are: iOS, Android, Mac, and Windows flavors."
},
{
"ErrorCode": "50006",
"Message": "Signature verification failed because of an invalid signature.",
"Remediation": "Check out the resolution outlined at https://docs.microsoft.com/azure/active-directory/application-sign-in-problem-federated-sso-gallery. If the issue persists, contact the application owner or application administrator."
},
{
"ErrorCode": "50007",
"Message": "Encryption certificate was not found in the directory."
},
{
"ErrorCode": "50008",
"Message": "The SAML token is invalid.",
"Remediation": "Developer error - the app is attempting to sign in without the necessary or correct authentication parameters."
},
{
"ErrorCode": "50010",
"Message": "Audience URI validation failed since no token audiences were configured.",
"Remediation": "Contact the application owner for resolution."
},
{
"ErrorCode": "50011",
"Message": "The reply URL specified in the request does not match the reply URLs configured for the application: '{identifier}'. {detail}",
"Remediation": "Developer error - the app is attempting to sign in without the necessary or correct authentication parameters."
},
{
"ErrorCode": "50012",
"Message": "Authentication failed.",
"Remediation": "Ensure that the request is sent with the correct credentials and claims."
},
{
"ErrorCode": "50013",
"Message": "Assertion failed signature validation. Possibly because the token issuer doesn't match the API version within its valid time range, it's expired or malformed, or the refresh token in the assertion is not a primary refresh token.",
"Remediation": "Application error. Contact the app developer and ask them to debug this issue."
},
{
"ErrorCode": "50014",
"Message": "The user's redemption is in a pending state. The guest user account is not fully created yet."
},
{
"ErrorCode": "50015",
"Message": "The user requires legal age group consent.",
"Remediation": "This user was asked to provide their age due to legal requirements."
},
{
"ErrorCode": "50016",
"Message": "Invalid Argument Redirect ErrorCode value."
},
{
"ErrorCode": "50017",
"Message": "Validation of given certificate for certificate based authentication failed.",
"Remediation": "Contact the tenant admin. Possible reasons for this error include: cannot find issuing certificate in trusted certificates list, unable to find expected CrlSegment, cannot find issuing certificate in trusted certificates list, delta CRL distribution point is configured without a corresponding CRL distribution point, unable to retrieve valid CRL segments because of a timeout issue, or unable to download CRL."
},
{
"ErrorCode": "50020",
"Message": "User account '{email}' from identity provider '{idp}' does not exist in tenant '{tenant}' and cannot access the application '{appId}'({appName}) in that tenant. The account needs to be added as an external user in the tenant first. Sign out and sign in again with a different Azure Active Directory user account.",
"Remediation": "A user was sent to a tenanted endpoint, and signed into an AAD account that doesn't exist in your tenant. If this user should be a member of the tenant, they should be invited via the B2B system. See here for details: https://docs.microsoft.com/azure/active-directory/b2b/add-users-administrator"
},
{
"ErrorCode": "50023",
"Message": "ClaimType '{claimType}' is reserved for system use."
},
{
"ErrorCode": "50024",
"Message": "Unable to decrypt client state."
},
{
"ErrorCode": "50025",
"Message": "The issuer name must be specified."
},
{
"ErrorCode": "50027",
"Message": "JWT token is invalid or malformed.",
"Remediation": "Contact the application owner to fix the JWT their app is creating for authentication. This can occur for a variety of reasons: doesn't contain nonce claim or sub claim, subject identifier mismatch, duplicate claim in idToken claims, unexpected issuer, unexpected audience, not within its valid time range, or a token format issue."
},
{
"ErrorCode": "50029",
"Message": "The reply URI specified in the request contains invalid characters. Domain names of this form are not supported.",
"Remediation": "Contact the developer to update their app and app registration to use a different URI."
},
{
"ErrorCode": "50030",
"Message": "One of forwardableOnBehalfOfOriginsAcceptedAudiencesList or ForwardableOnBehalfOfOriginsAcceptedPrecedingAppsList is not set. Both fields need to be filled for PFT OBO to be successful. These must be filled for multi-hop PFT OBO to be succesful.",
"Remediation": "The application owner must update the app registration and provide both the app that sent the PFT and the original resource."
},
{
"ErrorCode": "50032",
"Message": "RSA key size {actualSize} is less than the minimum required {minSize} bits."
},
{
"ErrorCode": "50033",
"Message": "A transient error has occurred. Please try again."
},
{
"ErrorCode": "50034",
"Message": "The user account {identifier} does not exist in the {tenant} directory. To sign into this application, the account must be added to the directory.",
"Remediation": "The user that attempted to sign in doesn't exist in this tenant. This can occur because the user mis-typed their username, or isn't in the tenant. An application may have chosen the wrong tenant to sign into, and the currently logged in user was prevented from doing so since they did not exist in your tenant. If this user should be able to log in, add them as a guest. See docs here: https://docs.microsoft.com/azure/active-directory/b2b/add-users-administrator"
},
{
"ErrorCode": "50038",
"Message": "The API version isn't supported."
},
{
"ErrorCode": "50042",
"Message": "The salt required to generate a pairwise identifier is missing in the principal.",
"Remediation": "If this application has been recently registered, please wait for some time for the configuration to take effect, and then try again."
},
{
"ErrorCode": "50043",
"Message": "Unable to generate a pairwise identifier with more than one salt in principal."
},
{
"ErrorCode": "50045",
"Message": "The salt required to generate a pairwise identifier is malformed in principal."
},
{
"ErrorCode": "50048",
"Message": "Subject must match the issuer claim in the client assertion.",
"Remediation": "Contact the developer to ensure that the JWT they generated for authentication has correct sub and iss claims. https://docs.microsoft.com/azure/active-directory/develop/active-directory-certificate-credentials"
},
{
"ErrorCode": "50049",
"Message": "Unknown or invalid instance.",
"Remediation": "Application error - the login request was malformed and could not be matched with an existing authentication endpoint or instance."
},
{
"ErrorCode": "50050",
"Message": "The request is malformed: invalid format for '{name}' value.",
"Remediation": "Contact the application owner."
},
{
"ErrorCode": "50052",
"Message": "The password entered exceeds the maximum length. Please reach out to your admin to reset the password.",
"Remediation": "The user is unable to login because their password exceeds the permitted maximum length. They should contact their admin to reset the password. If SSPR is enabled for their tenant, they can reset their password by following the Forgot your password link."
},
{
"ErrorCode": "50053",
"Message": "The account is locked, you've tried to sign in too many times with an incorrect user ID or password.",
"Remediation": "This error can be returned for two reasons - the sign in could have come from a malicious IP address, or the account was locked due to repeated sign-in attempts. Only one error code is used to prevent an attacker from distinguishing between the states. In your Azure AD tenant, you can distinguish between these states by looking at the specific sign-in log entry for this request. For accounts locked for too many attempts, see https://docs.microsoft.com/azure/active-directory/identity-protection/howto-unblock-user"
},
{
"ErrorCode": "50054",
"Message": "Looks like you entered your old password. Try again with your new one.",
"Remediation": "The user needs to enter a new password, not one they previously used."
},
{
"ErrorCode": "50055",
"Message": "The password is expired.",
"Remediation": "The user's password is expired, and therefore their login or session was ended. They will be offered the opportunity to reset it, or may ask an admin to reset it via https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-users-reset-password-azure-portal"
},
{
"ErrorCode": "50056",
"Message": "Invalid or missing password: password does not exist in the directory for this user.",
"Remediation": "The user should be asked to enter their password again."
},
{
"ErrorCode": "50057",
"Message": "The user account is disabled.",
"Remediation": "The user object in Active Directory backing this account has been disabled. An admin can re-enable this account through Powershell: https://docs.microsoft.com/powershell/module/addsadministration/enable-adaccount?view=win10-ps"
},
{
"ErrorCode": "50058",
"Message": "Session information is not sufficient for single-sign-on.",
"Remediation": "This means that a user is not signed in. This is a common error that's expected when a user is unauthenticated and has not yet signed in. If this error is encountered in an SSO context where the user has previously signed in, this means that the SSO session was either not found or invalid. This error may be returned to the application if prompt=none is specified."
},
{
"ErrorCode": "50059",
"Message": "No tenant-identifying information found in either the request or implied by any provided credentials."
},
{
"ErrorCode": "50060",
"Message": "Unable to sign out."
},
{
"ErrorCode": "50061",
"Message": "Unable to complete signout. The request was invalid."
},
{
"ErrorCode": "50062",
"Message": "Signout request is unauthorized."
},
{
"ErrorCode": "50068",
"Message": "Signout failed. The initiating application is not a participant in the current session."
},
{
"ErrorCode": "50069",
"Message": "Signout failed. The request specified a name identifier of '{identifier}' which did not match the existing session(s)."
},
{
"ErrorCode": "50070",
"Message": "Signout failed. The request specified session indexes '{identifier}' which did not match the existing session(s)."
},
{
"ErrorCode": "50071",
"Message": "Signout request has expired."
},
{
"ErrorCode": "50072",
"Message": "Due to a configuration change made by your administrator, or because you moved to a new location, you must enroll in multi-factor authentication to access '{identifier}'.",
"Remediation": "The user was presented options to provide contact options so that they can do MFA."
},
{
"ErrorCode": "50074",
"Message": "Strong Authentication is required.",
"Remediation": "User needs to perform multi-factor authentication. There could be multiple things requiring multi-factor, e.g. Conditional Access policies, per-user enforcement, requested by client, among others."
},
{
"ErrorCode": "50076",
"Message": "Due to a configuration change made by your administrator, or because you moved to a new location, you must use multi-factor authentication to access '{resource}'.",
"Remediation": "User needs to perform multi-factor authentication. There could be multiple things requiring multi-factor, e.g. Conditional Access policies, per-user enforcement, requested by client, among others."
},
{
"ErrorCode": "50077",
"Message": "The administrator created a conditional access policy that requires the authenticator to be used to provide GPS location."
},
{
"ErrorCode": "50078",
"Message": "Presented multi-factor authentication has expired due to policies configured by your administrator, you must refresh your multi-factor authentication to access '{resource}'."
},
{
"ErrorCode": "50079",
"Message": "Due to a configuration change made by your administrator, or because you moved to a new location, you must enroll in multi-factor authentication to access '{identifier}'.",
"Remediation": "Either a managed user needs to register security info to complete multi-factor authentication, or a federated user needs to get the multi-factor claim from the federated identity provider. There could be multiple things requiring multi-factor, e.g. Conditional Access policies, per-user enforcement, requested by client, among others."
},
{
"ErrorCode": "50080",
"Message": "Bad request received."
},
{
"ErrorCode": "50081",
"Message": "The administrator created a conditional access policy that requires GPS location."
},
{
"ErrorCode": "50085",
"Message": "Refresh token needs a social identity provider login.",
"Remediation": "The user is being redirected to another IDP for reauthentication."
},
{
"ErrorCode": "50087",
"Message": "A transient error has occurred during strong authentication. Please try again."
},
{
"ErrorCode": "50088",
"Message": "Limit on telecom MFA calls reached. Please try again in a few minutes."
},
{
"ErrorCode": "50089",
"Message": "Authentication failed due to flow token expired.",
"Remediation": "Expected - auth codes, refresh tokens, and sessions expire over time or are revoked by the user or an admin. The app will request a new login from the user."
},
{
"ErrorCode": "50091",
"Message": "Passed query string length exceeds supported limit."
},
{
"ErrorCode": "50093",
"Message": "Missing value for the SAML NameID."
},
{
"ErrorCode": "50094",
"Message": "Unknown source configured on the audience for the SAML NameID."
},
{
"ErrorCode": "50095",
"Message": "Unknown source configured on the audience for the SAML email claim."
},
{
"ErrorCode": "50096",
"Message": "Source configured on the audience for the SAML NameID is not compatible with the requested format."
},
{
"ErrorCode": "50097",
"Message": "Device authentication is required.",
"Remediation": "This is not an error - this is an interrupt that triggers device authentication when required due to a Conditional Access policy or because the application or resource requested the device ID in a token. This code alone does not indicate a failure on your users part to sign in. The sign in logs may indicate that the device authentication challenge was passed succesfully or failed."
},
{
"ErrorCode": "50098",
"Message": "JWT body must contain '{field}'."
},
{
"ErrorCode": "50099",
"Message": "Invalid nonce."
},
{
"ErrorCode": "50100",
"Message": "There was an error transforming the claims for the token."
},
{
"ErrorCode": "50101",
"Message": "Unknown claims transformer '{name}' was specified for principal '{principalId}'."
},
{
"ErrorCode": "50102",
"Message": "Unable to load CustomClaimsTransformer '{type}' was specified for principal '{principalId}'."
},
{
"ErrorCode": "50103",
"Message": "There was an error transforming the claims for the token: {errorMessage}"
},
{
"ErrorCode": "50105",
"Message": "Your administrator has configured the application {appName} ('{appId}') to block users unless they are specifically granted ('assigned') access to the application. The signed in user '{user}' is blocked because they are not a direct member of a group with access, nor had access directly assigned by an administrator. Please contact your administrator to assign access to this application.",
"Remediation": "Assign the user to the app. See https://docs.microsoft.com/azure/active-directory/manage-apps/methods-for-assigning-users-and-groups and https://docs.microsoft.com/azure/active-directory/manage-apps/application-sign-in-problem-federated-sso-gallery#user-not-assigned-a-role"
},
{
"ErrorCode": "50107",
"Message": "The requested federation realm object '{name}' does not exist.",
"Remediation": "Application error - the login request was malformed and could not be matched with an existing authentication endpoint or instance."
},
{
"ErrorCode": "50108",
"Message": "Claims transformation configuration could not be retrieved."
},
{
"ErrorCode": "50109",
"Message": "Claim transformation is unknown from configuration."
},
{
"ErrorCode": "50111",
"Message": "Unknown claim transformation was asked to be applied."
},
{
"ErrorCode": "50117",
"Message": "Failed to deserialize policy specified in the request's claim parameter."
},
{
"ErrorCode": "50120",
"Message": "Unknown credential type, issue with the JWT header."
},
{
"ErrorCode": "50123",
"Message": "Unknown claims transformation method '{method}' was specified for principal '{principalId}'."
},
{
"ErrorCode": "50124",
"Message": "Invalid regular expression configured for claims transformation for this application.",
"Remediation": "Contact your tenant admin to fix the claims mapping configuration. See https://docs.microsoft.com/azure/active-directory/develop/active-directory-saml-claims-customization"
},
{
"ErrorCode": "50125",
"Message": "Sign-in was interrupted due to a password reset or password registration entry.",
"Remediation": "User authentication was blocked because they need to provide password reset information. Their next interactive sign in will ask them for this, which the app should trigger next."
},
{
"ErrorCode": "50126",
"Message": "Error validating credentials due to invalid username or password.",
"Remediation": "The user didn't enter the right credentials. It's expected to see some number of these errors in your logs due to users making mistakes."
},
{
"ErrorCode": "50127",
"Message": "Client app is a MAM app and device is not registered.",
"Remediation": "The user needs to install the broker app and work place join using the broker app in order to register the device."
},
{
"ErrorCode": "50128",
"Message": "No tenant-identifying information found in either the request or implied by any provided credentials."
},
{
"ErrorCode": "50129",
"Message": "The device is not workplace joined. Workplace join is required to register the device."
},
{
"ErrorCode": "50130",
"Message": "The claim value(s) '{value}' cannot be interpreted as known auth method(s)."
},
{
"ErrorCode": "50131",
"Message": "Device is not in required device state: {state}. Or, the request was blocked due to suspicious activity, access policy, or security policy decisions."
},
{
"ErrorCode": "50132",
"Message": "The session is not valid due the following reasons: password expiration or recent password change, SSO Artifact is invalid or expired, session is not fresh enough for application, or a silent sign-in request was sent but the user's session with Azure AD is invalid or has expired.",
"Remediation": "Expected - auth codes, refresh tokens, and sessions expire over time or are revoked by the user or an admin. The app will request a new login from the user."
},
{
"ErrorCode": "50133",
"Message": "The session is not valid due to password expiration or recent password change.",
"Remediation": "Expected - auth codes, refresh tokens, and sessions expire over time or are revoked by the user or an admin. The app will request a new login from the user."
},
{
"ErrorCode": "50134",
"Message": "Wrong data center. To authorize a request that was initiated by an app in the OAuth 2.0 device flow, the authorizing party must be in the same data center where the original request resides."
},
{
"ErrorCode": "50135",
"Message": "Password change is required due to account risk."
},
{
"ErrorCode": "50136",
"Message": "Single MSA session detected when requesting an MSA ticket."
},
{
"ErrorCode": "50137",
"Message": "Password needs to be changed due to security policy rule."
},
{
"ErrorCode": "50138",
"Message": "Invalid encryption key environment."
},
{
"ErrorCode": "50139",
"Message": "Session is invalid due to missing an external refresh token."
},
{
"ErrorCode": "50140",
"Message": "This occurred due to 'Keep me signed in' interrupt when the user was signing in.",
"Remediation": "This is an expected part of the login flow, where a user is asked if they want to remain signed into this browser to make further logins easier. For more details, see https://techcommunity.microsoft.com/t5/Azure-Active-Directory/The-new-Azure-AD-sign-in-and-Keep-me-signed-in-experiences/td-p/128267"
},
{
"ErrorCode": "50141",
"Message": "Protected key is not intended for the authenticated user."
},
{
"ErrorCode": "50142",
"Message": "Password change is required due to a conditional access policy."
},
{
"ErrorCode": "50143",
"Message": "Session mismatch. The session is invalid because user tenant does not match the domain hint.",
"Remediation": "The app attempted to sign in a user to the wrong tenant. They need to correctly track the tenant that they have signed the user into."
},
{
"ErrorCode": "50144",
"Message": "The user's Active Directory password has expired.",
"Remediation": "Generate a new password for the user or have the user use the self-service reset tool to reset their password."
},
{
"ErrorCode": "50146",
"Message": "This application is required to be configured with an application-specific signing key. It is either not configured with one, or the key has expired or is not yet valid.",
"Remediation": "Please contact the owner of the application."
},
{
"ErrorCode": "50147",
"Message": "Invalid size of the code challenge parameter.",
"Remediation": "Contact the application owner to correct their use of the PKCE parameters."
},
{
"ErrorCode": "50148",
"Message": "The code_verifier does not match the code_challenge supplied in the authorization request for PKCE.",
"Remediation": "Contact the application owner to correct their use of the PKCE parameters."
},
{
"ErrorCode": "50149",
"Message": "Invalid Code_Challenge_method parameter."
},
{
"ErrorCode": "50150",
"Message": "The provided credentials does not have a valid user consent approval information."
},
{
"ErrorCode": "50155",
"Message": "Device authentication failed."
},
{
"ErrorCode": "50156",
"Message": "Device tokens are not supported for V2 resource."
},
{
"ErrorCode": "50157",
"Message": "User redirection required for routing."
},
{
"ErrorCode": "50158",
"Message": "External security challenge not satisfied. User will be redirected to another page or authentication provider to satisfy additional authentication challenges.",
"Remediation": "The user is required to satisfy additional requirements before finishing authentication, and was redirected to another page (such as terms of use or a third party MFA provider). This code alone does not indicate a failure on your users part to sign in. The sign in logs may indicate that this challenge was succesfully passed or failed."
},
{
"ErrorCode": "50159",
"Message": "Claims sent by external provider are not enough."
},
{
"ErrorCode": "50161",
"Message": "Failed to validate authorization url of external claims provider."
},
{
"ErrorCode": "50162",
"Message": "Claims transformation has timed out. This indicates too many or too complex transformations may have been configured for this application. A retry of the request may succeed. Otherwise, please contact your admin to fix the configuration."
},
{
"ErrorCode": "50163",
"Message": "Regular expression replacement for claims transformation has resulted in a claim which exceeds the size limit. Please contact your admin to fix the configuration."
},
{
"ErrorCode": "50164",
"Message": "The supplied access token was not issued for the purpose for which it is being used. Expected a token with purpose '{name}'."
},
{
"ErrorCode": "50165",
"Message": "The token encrypting algorithm '{algorithm}' requested by the application is not supported for this type of token. This indicates the application is misconfigured."
},
{
"ErrorCode": "50166",
"Message": "Request to External OIDC endpoint failed."
},
{
"ErrorCode": "50167",
"Message": "Invalid pop_jwk key."
},
{
"ErrorCode": "50168",
"Message": "The client is capable of utilizing the Windows 10 Accounts extension to perform SSO but no SSO token was found in the request or the token was expired. Request has been interrupted to attempt to pull an SSO token."
},
{
"ErrorCode": "50169",
"Message": "The realm '{realm}' is not a configured realm of the current service namespace."
},
{
"ErrorCode": "50170",
"Message": "The external controls mapping is missing."
},
{
"ErrorCode": "50172",
"Message": "External claims provider {provider} is not approved."
},
{
"ErrorCode": "50173",
"Message": "The provided grant has expired due to it being revoked, a fresh auth token is needed. The user might have changed or reset their password. The grant was issued on '{authTime}' and the TokensValidFrom date (before which tokens are not valid) for this user is '{validDate}'.",
"Remediation": "Expected part of the token lifecycle - either an admin or a user revoked the tokens for this user, causing subsequent token refreshes to fail and require re-authentication. Have the user sign-in again."
},
{
"ErrorCode": "50176",
"Message": "Missing definition of external control: {controlId}."
},
{
"ErrorCode": "50177",
"Message": "User account '{user}' from identity provider '{idp}' does not exist in tenant '{tenant}' and cannot access the application '{appId}'({appName}) in that tenant. The account needs to be added as an external user in the tenant first. Sign out and sign in again with a different Azure Active Directory user account.",
"Remediation": "The account needs to be added as an external user in the tenant first. Sign out and sign in again with a different Azure Active Directory user account."
},
{
"ErrorCode": "50178",
"Message": "User account '{user}' from identity provider '{idp}' does not exist in tenant '{tenant}' and cannot access the application '{appId}'({appName}) in that tenant. The account needs to be added as an external user in the tenant first. Sign out and sign in again with a different Azure Active Directory user account.",
"Remediation": "The account needs to be added as an external user in the tenant first. Sign out and sign in again with a different Azure Active Directory user account."
},
{
"ErrorCode": "50179",
"Message": "Client_info is not supported for this user."
},
{
"ErrorCode": "50180",
"Message": "Integrated Windows Authentication is needed. Enable the tenant '{name}' for Seamless SSO."
},
{
"ErrorCode": "50181",
"Message": "Unable to validate the otp."
},
{
"ErrorCode": "50182",
"Message": "OTP is already expired."
},
{
"ErrorCode": "50183",
"Message": "Cannot lookup otp due to cache error."
},
{
"ErrorCode": "50184",
"Message": "No cache entry exist for the tenant/user."
},
{
"ErrorCode": "50185",
"Message": "Email OTP notification delivery failed."
},
{
"ErrorCode": "50186",
"Message": "Unpermitted realm."
},
{
"ErrorCode": "50187",
"Message": "Failed to perform device authentication."
},
{
"ErrorCode": "50189",
"Message": "The device code is not correctly formatted."
},
{
"ErrorCode": "50190",
"Message": "Region prefix to connection string mapping returned from settings is null."
},
{
"ErrorCode": "50192",
"Message": "Invalid request."
},
{
"ErrorCode": "50193",
"Message": "Internal use"
},
{
"ErrorCode": "50194",
"Message": "Application '{appId}'({appName}) is not configured as a multi-tenant application. Usage of the /common endpoint is not supported for such applications created after '{time}'. Use a tenant-specific endpoint or configure the application to be multi-tenant."
},
{
"ErrorCode": "50196",
"Message": "The server terminated an operation because it encountered a client request loop. Please contact your app vendor.",
"Remediation": "Application error - the app is requesting too many tokens, indicating that it is not correctly coded. Ensure that the app is correctly caching refresh and access tokens to preserve bandwidth and reduce latency."
},
{
"ErrorCode": "50197",
"Message": "Sorry, we could not find the user, please sign-in again."
},
{
"ErrorCode": "50199",
"Message": "For security reasons, user confirmation is required for this request. Please repeat the request allowing user interaction."
},
{
"ErrorCode": "50200",
"Message": "Unpermitted external trusted realm."
},
{
"ErrorCode": "50201",
"Message": "This message prompt interrupt will be shown to the user during login when additional information should be provided to user."
},
{
"ErrorCode": "50202",
"Message": "User is not registered in the organization and must explicitly consent to the sign-in."
},
{
"ErrorCode": "50203",
"Message": "User has not registered the authenticator app and must register or snooze this notification."
},
{
"ErrorCode": "50204",
"Message": "External user has not consented to the privacy statement."
},
{
"ErrorCode": "50205",
"Message": "External user has consented to the privacy statement."
},
{
"ErrorCode": "50206",
"Message": "The user or administrator has not consented connecting to the target-device: '{identifier}'. Send an interactive authorization request for this user and target-machine."
},
{
"ErrorCode": "51000",
"Message": "{feature} is/are disabled."
},
{
"ErrorCode": "51001",
"Message": "Domain Hint must be present with On-Premises Security Identifier/ On-Premises UPN."
},
{
"ErrorCode": "51002",
"Message": "Access denied due to it's in deny user access block list."
},
{
"ErrorCode": "51004",
"Message": "The user account {identifier} does not exist in the {tenant} directory. To sign into this application, the account must be added to the directory.",
"Remediation": "An application likely chose the wrong tenant to sign into, and the currently logged in user was prevented from doing so since they did not exist in your tenant. If this user should be able to log in, add them as a guest. See docs here: https://docs.microsoft.com/azure/active-directory/b2b/add-users-administrator"
},
{
"ErrorCode": "51005",
"Message": "Initiate gateway redirect.",
"Remediation": "This is not an error scenario, but is handled like one by Azure AD to handle certain authentication flows. This is not an indication that anything went wrong."
},
{
"ErrorCode": "51006",
"Message": "Integrated Windows Authentication is needed. The user signed in using session token that is missing wia claim. Prompt the user to sign in again."
},
{
"ErrorCode": "51007",
"Message": "The user account {identifier} does not exist in the {tenant} directory. The user will be added to the directory to sign into this application."
},
{
"ErrorCode": "51008",
"Message": "JIT user creation of {userType} is disabled."
},
{
"ErrorCode": "52001",
"Message": "LinkedIn AppFamily Service Principal is disabled."
},
{
"ErrorCode": "52002",
"Message": "Non-retryable error has occurred."
},
{
"ErrorCode": "52003",
"Message": "Non-retryable error has occurred."
},
{
"ErrorCode": "52004",
"Message": "The user or administrator has not consented to use the application with ID '{identifier}'{namePhrase}. Send an interactive authorization request for this user and resource."
},
{
"ErrorCode": "52050",
"Message": "Multiple users with same email have been found."
},
{
"ErrorCode": "52051",
"Message": "Timed-out while parsing extension property name."
},
{
"ErrorCode": "53000",
"Message": "Device is not in required device state: {state}. Conditional Access policy requires a compliant device, and the device is not compliant. The user must enroll their device with an approved MDM provider like Intune.",
"Remediation": "Your administrator might have configured a conditional access policy that allows access to your organization's resources only from compliant devices. To be compliant, your device must be either joined to your on-premises Active Directory or joined to your Azure Active Directory. More details available at https://docs.microsoft.com/azure/active-directory/active-directory-conditional-access-device-remediation"
},
{
"ErrorCode": "53001",
"Message": "Device is not in required device state: {state}. Conditional Access policy requires a domain joined device, and the device is not domain joined.",
"Remediation": "Have the user use a domain joined device."
},
{
"ErrorCode": "53002",
"Message": "Device is not in required device state: {state}. The app used is not an approved app for Conditional Access.",
"Remediation": "User needs to use one of the apps from the list of approved apps to use in order to get access."
},
{
"ErrorCode": "53003",
"Message": "Access has been blocked by Conditional Access policies. The access policy does not allow token issuance.",
"Remediation": "If this is unexpected, see the conditional access policy that applied to this request in the Azure Portal."
},
{
"ErrorCode": "53004",
"Message": "Cannot configure multi-factor authentication methods due to suspicious activity."
},
{
"ErrorCode": "53005",
"Message": "Application needs to enforce Intune protection policies."
},
{