Reputation: 45
I have a requirement to block a specific app/add-in from Microsoft. So that users will not be able to install the app/add-in in their office products(Office, Teams, Outlook, etc.). I have gone through documentation, but I saw only an option to disable add-ins, this will block all the add-ins for all the users which I don’t want.
I also gone through Microsoft Graph APIs and I found an API to remove appRoleAssignment from users, but user can install again. I want to block the app permanently. https://learn.microsoft.com/en-us/graph/api/resources/approleassignment?view=graph-rest-1.0
If there is an option to block an app/add-in permanently please let me know.
Upvotes: 0
Views: 700
Reputation: 45
Using Conditional Access Policy we can block app(s) for the user(s) to authorize to use the app(s). Here is the documentation ref: https://learn.microsoft.com/en-us/graph/api/resources/conditionalaccesspolicy?view=graph-rest-1.0
Upvotes: 0