forked from KelvinTegelaar/CIPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPermissionsList.json
7973 lines (7973 loc) · 418 KB
/
PermissionsList.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
[
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
"displayName": "Read all access reviews",
"id": "d07a8cc0-3d51-4b77-b3b0-32704d1f69fa",
"isEnabled": true,
"origin": "Application",
"value": "AccessReview.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
"displayName": "Manage all access reviews",
"id": "ef5f7d5c-338f-44b0-86c3-351f46c8bb5f",
"isEnabled": true,
"origin": "Application",
"value": "AccessReview.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization for group and app memberships, without a signed-in user.",
"displayName": "Manage access reviews for group and app memberships",
"id": "18228521-a591-40f1-b215-5fad4488c117",
"isEnabled": true,
"origin": "Application",
"value": "AccessReview.ReadWrite.Membership"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows an app to read all acronyms without a signed-in user.",
"displayName": "Read all acronyms",
"id": "8c0aed2c-0c61-433d-b63c-6370ddc73248",
"isEnabled": true,
"origin": "Application",
"value": "Acronym.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
"displayName": "Read all administrative units",
"id": "134fd756-38ce-4afd-ba33-e9623dbe66c2",
"isEnabled": true,
"origin": "Application",
"value": "AdministrativeUnit.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
"displayName": "Read and write all administrative units",
"id": "5eb59dd3-1da2-4329-8733-9dabdc435916",
"isEnabled": true,
"origin": "Application",
"value": "AdministrativeUnit.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read terms of use agreements, without a signed in user.",
"displayName": "Read all terms of use agreements",
"id": "2f3e6f8c-093b-4c57-a58b-ba5ce494a169",
"isEnabled": true,
"origin": "Application",
"value": "Agreement.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and write terms of use agreements, without a signed in user.",
"displayName": "Read and write all terms of use agreements",
"id": "c9090d00-6101-42f0-a729-c41074260d47",
"isEnabled": true,
"origin": "Application",
"value": "Agreement.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read terms of use acceptance statuses, without a signed in user.",
"displayName": "Read all terms of use acceptance statuses",
"id": "d8e4ec18-f6c0-4620-8122-c8b1f2bf400e",
"isEnabled": true,
"origin": "Application",
"value": "AgreementAcceptance.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read the API connectors used in user authentication flows, without a signed-in user.",
"displayName": "Read API connectors for authentication flows",
"id": "b86848a7-d5b1-41eb-a9b4-54a4e6306e97",
"isEnabled": true,
"origin": "Application",
"value": "APIConnectors.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read, create and manage the API connectors used in user authentication flows, without a signed-in user.",
"displayName": "Read and write API connectors for authentication flows",
"id": "1dfe531a-24a6-4f1b-80f4-7a0dc5a0a171",
"isEnabled": true,
"origin": "Application",
"value": "APIConnectors.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read apps in the app catalogs without a signed-in user.",
"displayName": "Read all app catalogs",
"id": "e12dae10-5a57-4817-b79d-dfbec5348930",
"isEnabled": true,
"origin": "Application",
"value": "AppCatalog.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
"displayName": "Read and write to all app catalogs",
"id": "dc149144-f292-421e-b185-5953f2e98d7f",
"isEnabled": true,
"origin": "Application",
"value": "AppCatalog.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and write the remote desktop security configuration for all apps in your organization, without a signed-in user.",
"displayName": "Read and write the remote desktop security configuration for all apps",
"id": "3be0012a-cc4e-426b-895b-f9c836bf6381",
"isEnabled": true,
"origin": "Application",
"value": "Application-RemoteDesktopConfig.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read all applications and service principals without a signed-in user.",
"displayName": "Read all applications",
"id": "9a5d68dd-52b0-4cc2-bd40-abcf44ac3a30",
"isEnabled": true,
"origin": "Application",
"value": "Application.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
"displayName": "Read and write all applications",
"id": "1bfefb4e-e0b5-418b-a88f-73c46d2cc8e9",
"isEnabled": true,
"origin": "Application",
"value": "Application.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
"displayName": "Manage apps that this app creates or owns",
"id": "18a4783c-866b-4cc7-a460-3d5e5662c884",
"isEnabled": true,
"origin": "Application",
"value": "Application.ReadWrite.OwnedBy"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to manage permission grants for application permissions to any API (including Microsoft Graph) and application assignments for any app, without a signed-in user.",
"displayName": "Manage app permission grants and app role assignments",
"id": "06b708a9-e830-4db3-a914-8e69da51d44f",
"isEnabled": true,
"origin": "Application",
"value": "AppRoleAssignment.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
"displayName": "Read attack simulation data of an organization",
"id": "93283d0a-6322-4fa8-966b-8c121624760d",
"isEnabled": true,
"origin": "Application",
"value": "AttackSimulation.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read, create, and update attack simulation and training data for an organization without a signed-in user.",
"displayName": "Read, create, and update all attack simulation data of an organization",
"id": "e125258e-8c8a-42a8-8f55-ab502afa52f3",
"isEnabled": true,
"origin": "Application",
"value": "AttackSimulation.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and query your audit log activities, without a signed-in user.",
"displayName": "Read all audit log data",
"id": "b0afded3-3588-46d8-8b3d-9842eff778da",
"isEnabled": true,
"origin": "Application",
"value": "AuditLog.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read the authentication context information in your organization without a signed-in user.",
"displayName": "Read all authentication context information",
"id": "381f742f-e1f8-4309-b4ab-e3d91ae4c5c1",
"isEnabled": true,
"origin": "Application",
"value": "AuthenticationContext.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and update the authentication context information in your organization without a signed-in user.",
"displayName": "Read and write all authentication context information",
"id": "a88eef72-fed0-4bf7-a2a9-f19df33f8b83",
"isEnabled": true,
"origin": "Application",
"value": "AuthenticationContext.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and write the billing configuration on all applications without a signed-in user. ",
"displayName": "Read and write application billing configuration",
"id": "9e8be751-7eee-4c09-bcfd-d64f6b087fd8",
"isEnabled": true,
"origin": "Application",
"value": "BillingConfiguration.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
"displayName": "Read all Bookings related resources.",
"id": "6e98f277-b046-4193-a4f2-6bf6a78cd491",
"isEnabled": true,
"origin": "Application",
"value": "Bookings.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
"displayName": "Read and write all Bookings related resources.",
"id": "9769393e-5a9f-4302-9e3d-7e018ecb64a7",
"isEnabled": true,
"origin": "Application",
"value": "BookingsAppointment.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows an app to read all bookmarks without a signed-in user.",
"displayName": "Read all bookmarks",
"id": "be95e614-8ef3-49eb-8464-1c9503433b86",
"isEnabled": true,
"origin": "Application",
"value": "Bookmark.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
"displayName": "Read all browser site lists for your organization",
"id": "c5ee1f21-fc7f-4937-9af0-c91648ff9597",
"isEnabled": true,
"origin": "Application",
"value": "BrowserSiteLists.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
"displayName": "Read and write all browser site lists for your organization",
"id": "8349ca94-3061-44d5-9bfb-33774ea5e4f9",
"isEnabled": true,
"origin": "Application",
"value": "BrowserSiteLists.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read the configurations of business scenarios it owns, without a signed-in user.",
"displayName": "Read all business scenario configurations this app creates or owns",
"id": "acc0fc4d-2cd6-4194-8700-1768d8423d86",
"isEnabled": true,
"origin": "Application",
"value": "BusinessScenarioConfig.Read.OwnedBy"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, without a signed-in user.",
"displayName": "Read and write all business scenario configurations this app creates or owns",
"id": "bbea195a-4c47-4a4f-bff2-cba399e11698",
"isEnabled": true,
"origin": "Application",
"value": "BusinessScenarioConfig.ReadWrite.OwnedBy"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read the data associated with the business scenarios it owns, without a signed-in user.",
"displayName": "Read data for all business scenarios this app creates or owns",
"id": "6c0257fd-cffe-415b-8239-2d0d70fdaa9c",
"isEnabled": true,
"origin": "Application",
"value": "BusinessScenarioData.Read.OwnedBy"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to fully manage the data associated with the business scenarios it owns, without a signed-in user.",
"displayName": "Read and write data for all business scenarios this app creates or owns",
"id": "f2d21f22-5d80-499e-91cc-0a8a4ce16f54",
"isEnabled": true,
"origin": "Application",
"value": "BusinessScenarioData.ReadWrite.OwnedBy"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read events of all calendars without a signed-in user.",
"displayName": "Read calendars in all mailboxes",
"id": "798ee544-9d2d-430c-a058-570e29e34338",
"isEnabled": true,
"origin": "Application",
"value": "Calendars.Read"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read events of all calendars, except for properties such as body, attachments, and extensions, without a signed-in user.",
"displayName": "Read basic details of calendars in all mailboxes ",
"id": "8ba4a692-bc31-4128-9094-475872af8a53",
"isEnabled": true,
"origin": "Application",
"value": "Calendars.ReadBasic.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to create, read, update, and delete events of all calendars without a signed-in user.",
"displayName": "Read and write calendars in all mailboxes",
"id": "ef54d2bf-783f-4e0f-bca1-3210c0444d99",
"isEnabled": true,
"origin": "Application",
"value": "Calendars.ReadWrite"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read call event information for all users in your organizatio, without a signed-in user.",
"displayName": "Read all call events",
"id": "1abb026f-7572-49f6-9ddd-ad61cbba181e",
"isEnabled": true,
"origin": "Application",
"value": "CallEvents.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read all PSTN and direct routing call log data without a signed-in user.",
"displayName": "Read PSTN and direct routing call log data",
"id": "a2611786-80b3-417e-adaa-707d4261a5f0",
"isEnabled": true,
"origin": "Application",
"value": "CallRecord-PstnCalls.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read call records for all calls and online meetings without a signed-in user.",
"displayName": "Read all call records",
"id": "45bbb07e-7321-4fd7-a8f6-3ff27e6a81c8",
"isEnabled": true,
"origin": "Application",
"value": "CallRecords.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to get direct access to media streams in a call, without a signed-in user.",
"displayName": "Access media streams in a call as an app",
"id": "a7a681dc-756e-4909-b988-f160edc6655f",
"isEnabled": true,
"origin": "Application",
"value": "Calls.AccessMedia.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to place outbound calls to a single user and transfer calls to users in your organization’s directory, without a signed-in user.",
"displayName": "Initiate outgoing 1 to 1 calls from the app",
"id": "284383ee-7f6e-4e40-a2a8-e85dcb029101",
"isEnabled": true,
"origin": "Application",
"value": "Calls.Initiate.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
"displayName": "Initiate outgoing group calls from the app",
"id": "4c277553-8a09-487b-8023-29ee378d8324",
"isEnabled": true,
"origin": "Application",
"value": "Calls.InitiateGroupCall.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined with the privileges of a directory user to meetings in your organization.",
"displayName": "Join group calls and meetings as an app",
"id": "f6b49018-60ab-4f81-83bd-22caeabfed2d",
"isEnabled": true,
"origin": "Application",
"value": "Calls.JoinGroupCall.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to anonymously join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined as a guest to meetings in your organization.",
"displayName": "Join group calls and meetings as a guest",
"id": "fd7ccf6b-3d28-418b-9701-cd10f5cd2fd4",
"isEnabled": true,
"origin": "Application",
"value": "Calls.JoinGroupCallAsGuest.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Create channels in any team, without a signed-in user.",
"displayName": "Create channels",
"id": "f3a65bd4-b703-46df-8f7e-0174fea562aa",
"isEnabled": true,
"origin": "Application",
"value": "Channel.Create"
},
{
"allowedMemberTypes": ["Application"],
"description": "Delete channels in any team, without a signed-in user.",
"displayName": "Delete channels",
"id": "6a118a39-1227-45d4-af0c-ea7b40d210bc",
"isEnabled": true,
"origin": "Application",
"value": "Channel.Delete.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Read all channel names and channel descriptions, without a signed-in user.",
"displayName": "Read the names and descriptions of all channels",
"id": "59a6b24b-4225-4393-8165-ebaec5f55d7a",
"isEnabled": true,
"origin": "Application",
"value": "Channel.ReadBasic.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Read the members of all channels, without a signed-in user.",
"displayName": "Read the members of all channels",
"id": "3b55498e-47ec-484f-8136-9013221c06a9",
"isEnabled": true,
"origin": "Application",
"value": "ChannelMember.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Add and remove members from all channels, without a signed-in user. Also allows changing a member's role, for example from owner to non-owner.",
"displayName": "Add and remove members from all channels",
"id": "35930dcf-aceb-4bd1-b99a-8ffed403c974",
"isEnabled": true,
"origin": "Application",
"value": "ChannelMember.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read all channel messages in Microsoft Teams",
"displayName": "Read all channel messages",
"id": "7b2449af-6ccd-4f4d-9f78-e550c193f0d1",
"isEnabled": true,
"origin": "Application",
"value": "ChannelMessage.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to update Microsoft Teams channel messages by patching a set of Data Loss Prevention (DLP) policy violation properties to handle the output of DLP processing.",
"displayName": "Flag channel messages for violating policy",
"id": "4d02b0cc-d90b-441f-8d82-4fb55c34d6bb",
"isEnabled": true,
"origin": "Application",
"value": "ChannelMessage.UpdatePolicyViolation.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
"displayName": "Read the names, descriptions, and settings of all channels",
"id": "c97b873f-f59f-49aa-8a0e-52b32d762124",
"isEnabled": true,
"origin": "Application",
"value": "ChannelSettings.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Read and write the names, descriptions, and settings of all channels, without a signed-in user.",
"displayName": "Read and write the names, descriptions, and settings of all channels",
"id": "243cded2-bd16-4fd6-a953-ff8177894c3d",
"isEnabled": true,
"origin": "Application",
"value": "ChannelSettings.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to create chats without a signed-in user. ",
"displayName": "Create chats",
"id": "d9c48af6-9ad9-47ad-82c3-63757137b9af",
"isEnabled": true,
"origin": "Application",
"value": "Chat.Create"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to delete and recover deleted chats, without a signed-in user.",
"displayName": "Delete and recover deleted chats",
"id": "9c7abde0-eacd-4319-bf9e-35994b1a1717",
"isEnabled": true,
"origin": "Application",
"value": "Chat.ManageDeletion.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
"displayName": "Read all chat messages",
"id": "6b7d71aa-70aa-4810-a8d9-5d9fb2830017",
"isEnabled": true,
"origin": "Application",
"value": "Chat.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read all one-to-one or group chat messages in Microsoft Teams for chats where the associated Teams application is installed, without a signed-in user.",
"displayName": "Read all chat messages for chats where the associated Teams application is installed.",
"id": "1c1b4c8e-3cc7-4c58-8470-9b92c9d5848b",
"isEnabled": true,
"origin": "Application",
"value": "Chat.Read.WhereInstalled"
},
{
"allowedMemberTypes": ["Application"],
"description": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.",
"displayName": "Read names and members of all chat threads",
"id": "b2e060da-3baf-4687-9611-f4ebc0f0cbde",
"isEnabled": true,
"origin": "Application",
"value": "Chat.ReadBasic.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read names and members of all one-to-one and group chats in Microsoft Teams where the associated Teams application is installed, without a signed-in user.",
"displayName": "Read names and members of all chat threads where the associated Teams application is installed.",
"id": "818ba5bd-5b3e-4fe0-bbe6-aa4686669073",
"isEnabled": true,
"origin": "Application",
"value": "Chat.ReadBasic.WhereInstalled"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
"displayName": "Read and write all chat messages",
"id": "294ce7c9-31ba-490a-ad7d-97a7d075e4ed",
"isEnabled": true,
"origin": "Application",
"value": "Chat.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and write all chat messages in Microsoft Teams for chats where the associated Teams application is installed, without a signed-in user.",
"displayName": "Read and write all chat messages for chats where the associated Teams application is installed.",
"id": "ad73ce80-f3cd-40ce-b325-df12c33df713",
"isEnabled": true,
"origin": "Application",
"value": "Chat.ReadWrite.WhereInstalled"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to update Microsoft Teams 1-to-1 or group chat messages by patching a set of Data Loss Prevention (DLP) policy violation properties to handle the output of DLP processing.",
"displayName": "Flag chat messages for violating policy",
"id": "7e847308-e030-4183-9899-5235d7270f58",
"isEnabled": true,
"origin": "Application",
"value": "Chat.UpdatePolicyViolation.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Read the members of all chats, without a signed-in user.",
"displayName": "Read the members of all chats",
"id": "a3410be2-8e48-4f32-8454-c29a7465209d",
"isEnabled": true,
"origin": "Application",
"value": "ChatMember.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read the members of all chats where the associated Teams application is installed, without a signed-in user.",
"displayName": "Read the members of all chats where the associated Teams application is installed.",
"id": "93e7c9e4-54c5-4a41-b796-f2a5adaacda7",
"isEnabled": true,
"origin": "Application",
"value": "ChatMember.Read.WhereInstalled"
},
{
"allowedMemberTypes": ["Application"],
"description": "Add and remove members from all chats, without a signed-in user.",
"displayName": "Add and remove members from all chats",
"id": "57257249-34ce-4810-a8a2-a03adf0c5693",
"isEnabled": true,
"origin": "Application",
"value": "ChatMember.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to add and remove members from all chats where the associated Teams application is installed, without a signed-in user.",
"displayName": "Add and remove members from all chats where the associated Teams application is installed.",
"id": "e32c2cd9-0124-4e44-88fc-772cd98afbdb",
"isEnabled": true,
"origin": "Application",
"value": "ChatMember.ReadWrite.WhereInstalled"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read all one-to-one and group chats messages in Microsoft Teams, without a signed-in user.",
"displayName": "Read all chat messages",
"id": "b9bb2381-47a4-46cd-aafb-00cb12f68504",
"isEnabled": true,
"origin": "Application",
"value": "ChatMessage.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read all details of discovered cloud apps in the organization, without a signed-in user.",
"displayName": "Read all discovered cloud applications data",
"id": "64a59178-dad3-4673-89db-84fdcd622fec",
"isEnabled": true,
"origin": "Application",
"value": "CloudApp-Discovery.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
"displayName": "Read Cloud PCs",
"id": "a9e09520-8ed4-4cde-838e-4fdea192c227",
"isEnabled": true,
"origin": "Application",
"value": "CloudPC.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
"displayName": "Read and write Cloud PCs",
"id": "3b4349e1-8cf5-45a3-95b7-69d1751d3e6a",
"isEnabled": true,
"origin": "Application",
"value": "CloudPC.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read consent requests and approvals without a signed-in user.",
"displayName": "Read all consent requests",
"id": "1260ad83-98fb-4785-abbb-d6cc1806fd41",
"isEnabled": true,
"origin": "Application",
"value": "ConsentRequest.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read app consent requests and approvals, and deny or approve those requests without a signed-in user.",
"displayName": "Read and write all consent requests",
"id": "9f1b81a7-0223-4428-bfa4-0bcb5535f27d",
"isEnabled": true,
"origin": "Application",
"value": "ConsentRequest.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read all contacts in all mailboxes without a signed-in user.",
"displayName": "Read contacts in all mailboxes",
"id": "089fe4d0-434a-44c5-8827-41ba8a0b17f5",
"isEnabled": true,
"origin": "Application",
"value": "Contacts.Read"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to create, read, update, and delete all contacts in all mailboxes without a signed-in user.",
"displayName": "Read and write contacts in all mailboxes",
"id": "6918b873-d17a-4dc1-b314-35f528134491",
"isEnabled": true,
"origin": "Application",
"value": "Contacts.ReadWrite"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the application to obtain basic tenant information about another target tenant within the Azure AD ecosystem without a signed-in user.",
"displayName": "Read cross-tenant basic information",
"id": "cac88765-0581-4025-9725-5ebc13f729ee",
"isEnabled": true,
"origin": "Application",
"value": "CrossTenantInformation.ReadBasic.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the application to list and query any shared user profile information associated with the current tenant without a signed-in user. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant without a signed-in user.",
"displayName": "Read all shared cross-tenant user profiles and export their data",
"id": "8b919d44-6192-4f3d-8a3b-f86f8069ae3c",
"isEnabled": true,
"origin": "Application",
"value": "CrossTenantUserProfileSharing.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the application to list and query any shared user profile information associated with the current tenant without a signed-in user. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant without a signed-in user.",
"displayName": "Read all shared cross-tenant user profiles and export or delete their data",
"id": "306785c5-c09b-4ba0-a4ee-023f3da165cb",
"isEnabled": true,
"origin": "Application",
"value": "CrossTenantUserProfileSharing.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read your organization's custom authentication extensions without a signed-in user.",
"displayName": "Read all custom authentication extensions",
"id": "88bb2658-5d9e-454f-aacd-a3933e079526",
"isEnabled": true,
"origin": "Application",
"value": "CustomAuthenticationExtension.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read or write your organization's custom authentication extensions without a signed-in user.",
"displayName": "Read and write all custom authentication extensions",
"id": "c2667967-7050-4e7e-b059-4cbbb3811d03",
"isEnabled": true,
"origin": "Application",
"value": "CustomAuthenticationExtension.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows custom authentication extensions associated with the app to receive HTTP requests triggered by an authentication event. The request can include information about a user, client and resource service principals, and other information about the authentication.",
"displayName": "Receive custom authentication extension HTTP requests",
"id": "214e810f-fda8-4fd7-a475-29461495eb00",
"isEnabled": true,
"origin": "Application",
"value": "CustomAuthenticationExtension.Receive.Payload"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read custom security attribute assignments for all principals in the tenant without a signed in user.",
"displayName": "Read custom security attribute assignments",
"id": "3b37c5a4-1226-493d-bec3-5d6c6b866f3f",
"isEnabled": true,
"origin": "Application",
"value": "CustomSecAttributeAssignment.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and write custom security attribute assignments for all principals in the tenant without a signed in user.",
"displayName": "Read and write custom security attribute assignments",
"id": "de89b5e4-5b8f-48eb-8925-29c2b33bd8bd",
"isEnabled": true,
"origin": "Application",
"value": "CustomSecAttributeAssignment.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read all audit logs for events that contain information about custom security attributes, without a signed-in user.",
"displayName": "Read all custom security attribute audit logs",
"id": "2a4f026d-e829-4e84-bdbf-d981a2703059",
"isEnabled": true,
"origin": "Application",
"value": "CustomSecAttributeAuditLogs.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read custom security attribute definitions for the tenant without a signed in user.",
"displayName": "Read custom security attribute definitions",
"id": "b185aa14-d8d2-42c1-a685-0f5596613624",
"isEnabled": true,
"origin": "Application",
"value": "CustomSecAttributeDefinition.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and write custom security attribute definitions for the tenant without a signed in user.",
"displayName": "Read and write custom security attribute definitions",
"id": "12338004-21f4-4896-bf5e-b75dfaf1016d",
"isEnabled": true,
"origin": "Application",
"value": "CustomSecAttributeDefinition.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
"displayName": "Read Delegated Admin relationships with customers",
"id": "f6e9e124-4586-492f-adc0-c6f96e4823fd",
"isEnabled": true,
"origin": "Application",
"value": "DelegatedAdminRelationship.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
"displayName": "Manage Delegated Admin relationships with customers",
"id": "cc13eba4-8cd8-44c6-b4d4-f93237adce58",
"isEnabled": true,
"origin": "Application",
"value": "DelegatedAdminRelationship.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read all delegated permission grants, without a signed-in user.",
"displayName": "Read all delegated permission grants",
"id": "81b4724a-58aa-41c1-8a55-84ef97466587",
"isEnabled": true,
"origin": "Application",
"value": "DelegatedPermissionGrant.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), without a signed-in user.",
"displayName": "Manage all delegated permission grants",
"id": "8e8e4742-1d95-4f68-9d56-6ee75648c72a",
"isEnabled": true,
"origin": "Application",
"value": "DelegatedPermissionGrant.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
"displayName": "Read all devices",
"id": "7438b122-aefc-4978-80ed-43db9fcc7715",
"isEnabled": true,
"origin": "Application",
"value": "Device.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
"displayName": "Read and write devices",
"id": "1138cb37-bd11-4084-a2b7-9f71582aeddb",
"isEnabled": true,
"origin": "Application",
"value": "Device.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read device local credential properties including passwords, without a signed-in user.",
"displayName": "Read device local credential passwords",
"id": "884b599e-4d48-43a5-ba94-15c414d00588",
"isEnabled": true,
"origin": "Application",
"value": "DeviceLocalCredential.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read device local credential properties excluding passwords, without a signed-in user.",
"displayName": "Read device local credential properties",
"id": "db51be59-e728-414b-b800-e0f010df1a79",
"isEnabled": true,
"origin": "Application",
"value": "DeviceLocalCredential.ReadBasic.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
"displayName": "Read Microsoft Intune apps",
"id": "7a6ee1e7-141e-4cec-ae74-d9db155731ff",
"isEnabled": true,
"origin": "Application",
"value": "DeviceManagementApps.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
"displayName": "Read and write Microsoft Intune apps",
"id": "78145de6-330d-4800-a6ce-494ff2d33d07",
"isEnabled": true,
"origin": "Application",
"value": "DeviceManagementApps.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
"displayName": "Read Microsoft Intune device configuration and policies",
"id": "dc377aa6-52d8-4e23-b271-2a7ae04cedf3",
"isEnabled": true,
"origin": "Application",
"value": "DeviceManagementConfiguration.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
"displayName": "Read and write Microsoft Intune device configuration and policies",
"id": "9241abd9-d0e6-425a-bd4f-47ba86e767a4",
"isEnabled": true,
"origin": "Application",
"value": "DeviceManagementConfiguration.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune, without a signed-in user.",
"displayName": "Perform user-impacting remote actions on Microsoft Intune devices",
"id": "5b07b0dd-2377-4e44-a38d-703f09a0dc3c",
"isEnabled": true,
"origin": "Application",
"value": "DeviceManagementManagedDevices.PrivilegedOperations.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
"displayName": "Read Microsoft Intune devices",
"id": "2f51be20-0bb4-4fed-bf7b-db946066c75e",
"isEnabled": true,
"origin": "Application",
"value": "DeviceManagementManagedDevices.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
"displayName": "Read and write Microsoft Intune devices",
"id": "243333ab-4d21-40cb-a475-36241daa0842",
"isEnabled": true,
"origin": "Application",
"value": "DeviceManagementManagedDevices.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
"displayName": "Read Microsoft Intune RBAC settings",
"id": "58ca0d9a-1575-47e1-a3cb-007ef2e4583b",
"isEnabled": true,
"origin": "Application",
"value": "DeviceManagementRBAC.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
"displayName": "Read and write Microsoft Intune RBAC settings",
"id": "e330c4f0-4170-414e-a55a-2f022ec2b57b",
"isEnabled": true,
"origin": "Application",
"value": "DeviceManagementRBAC.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
"displayName": "Read Microsoft Intune configuration",
"id": "06a5fe6d-c49d-46a7-b082-56b1b14103c7",
"isEnabled": true,
"origin": "Application",
"value": "DeviceManagementServiceConfig.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
"displayName": "Read and write Microsoft Intune configuration",
"id": "5ac13192-7ace-4fcf-b828-1a26f28068ee",
"isEnabled": true,
"origin": "Application",
"value": "DeviceManagementServiceConfig.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
"displayName": "Read directory data",
"id": "7ab1d382-f21e-4acd-a863-ba3e13f7da61",
"isEnabled": true,
"origin": "Application",
"value": "Directory.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
"displayName": "Read and write directory data",
"id": "19dbc75e-c2e2-444c-a770-ec69d8559fc7",
"isEnabled": true,
"origin": "Application",
"value": "Directory.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to manage restricted resources based on the other permissions granted to the app, without a signed-in user.",
"displayName": "Manage restricted resources in the directory",
"id": "f20584af-9290-4153-9280-ff8bb2c0ea7f",
"isEnabled": true,
"origin": "Application",
"value": "Directory.Write.Restricted"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read all Azure AD recommendations, without a signed-in user. ",
"displayName": "Read all Azure AD recommendations",
"id": "ae73097b-cb2a-4447-b064-5d80f6093921",
"isEnabled": true,
"origin": "Application",
"value": "DirectoryRecommendations.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and update all Azure AD recommendations, without a signed-in user. ",
"displayName": "Read and update all Azure AD recommendations",
"id": "0e9eea12-4f01-45f6-9b8d-3ea4c8144158",
"isEnabled": true,
"origin": "Application",
"value": "DirectoryRecommendations.ReadWrite.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read all domain properties without a signed-in user.",
"displayName": "Read domains",
"id": "dbb9058a-0e50-45d7-ae91-66909b5d4664",
"isEnabled": true,
"origin": "Application",
"value": "Domain.Read.All"
},
{
"allowedMemberTypes": ["Application"],
"description": "Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.",
"displayName": "Read and write domains",
"id": "7e05723c-0bb0-42da-be95-ae9f08a6e53c",
"isEnabled": true,
"origin": "Application",
"value": "Domain.ReadWrite.All"
},