🎉 Our Microsoft 365 Reporting & Management Tool is now available in Azure Marketplace 🚀
This website uses cookies to improve your experience. We'll assume you're ok with this. Know more.
Microsoft Entra ID

How to Find Microsoft Entra Applications without API Permissions

Are you seeing too many app registrations in your Entra ID and unsure which ones still matter? While apps with excessive API permissions pose security risks. In contrast, apps without API permissions add clutter to your directory, which makes audits more difficult. Therefore, this guide will show you how to identify app registrations with no API permissions for efficient workload identity management.

Check Applications Without API Permissions Using Entra Admin Center

Microsoft 365 Permission Required
Directory Reader Least Privilege
Global Admin Most Privilege
  • Log in to the Microsoft Entra admin center.
  • Navigate to the All applications tab under Entra ID»App registrations.
  • Click on any desired application you’d like to review and go to the API permissions tab.
  • Under Configured permissions, check if any permissions are listed. If none are listed, the app has no API permissions assigned.
Check Applications Without API Permissions Using Entra Admin Center
Note: The Microsoft Entra portal does not provide a direct way to list all app registrations without API permissions.

List All Applications With No API Permissions Using PowerShell

Microsoft Graph Permission Required
Application.Read.All Least Privilege
Directory.Read.All Most Privilege
  • Connect to the Microsoft Graph PowerShell module using the cmdlet below.
  • Windows PowerShell Windows PowerShell
     Connect-MgGraph –Scopes "Application.Read.All"
  • Run the cmdlet below to retrieve all Microsoft Entra apps that have no API permissions assigned.
  • Windows PowerShell Windows PowerShell
     Get-MgApplication -All| Where-Object { !$_.RequiredResourceAccess }
  • The cmdlet retrieves all applications without an API permission assignment and shows their display name, object id, app id, etc.
List All Applications With No API Permissions Using PowerShell

Move Towards Efficient and Secure App Management Using Entra Workload Identity Insights!

AdminDroid’s free Microsoft Entra ID reporting tool gives you complete visibility into all registered apps, including those without API permissions. It provides a centralized view of all app registrations and helps simplify app lifecycle management across your organization.

Secure Entra Applications by Identifying Implicit Flow Usage

Detect Entra apps using OAuth 2.0 implicit flow to mitigate the risk of token leakage and and prevent attackers from impersonating legitimate users.

Take Control of Orphaned Entra ID App Registrations

Find ownerless app registrations to assign proper ownership or eliminate unused apps to improve management and accountability in Microsoft 365.

Analyze Entra App API Permissions to Identify Overprivileged Applications

Inspect API permissions configured for the application to determine which apps have unnecessary high-privileged APIs with less secure access methods.

Review Redirect URIs to Prevent Misuse of Entra App Registrations

Utilize the application redirect URI report to spot URIs pointing to unregistered subdomains and reduce the risk of redirect URI takeover attacks.

Check OAuth2 Permission Grant to Manage App-to-App Access in Microsoft 365

Review OAuth2 scopes of Entra apps to understand how internal apps share data and services, which helps you manage dependencies between applications efficiently.

Identify and Secure Entra Apps with External User Sign-ins

Leverage apps with external user sign-in reports to identify multi-tenant applications and defend against consent phishing, cross-tenant sync attacks, and other external threats.

Thus, AdminDroid’s Entra ID management tool transforms how you monitor and manage apps by delivering unmatched visibility into app properties and permissions. But it doesn’t stop there, it also enables complete monitoring and management of users, groups, and every essential element of your Entra ID environment.

Explore a full range of reporting options

Important Tips

Remove unused credentials from app registrations that don't have any API permissions to reduce attack surface area in Microsoft Entra ID.

Follow common application security guidelines to prevent targeted attacks on Entra app registrations created for testing purposes or left unused.

Remove unused apps from Entra ID to streamline app management and ensure a well-organized, secure non-human identity environment.

Common Errors and Resolution Steps

The following are possible errors and troubleshooting hints while managing Entra ID applications with no API permissions.

Error Get-MgApplication: One or more errors occurred.

This error occurs when you have multiple versions of the Microsoft Graph PowerShell module installed.

Fix To resolve this error, uninstall all versions of Microsoft Graph module installed on your system. Then, install a newer version of this Graph module using the following cmdlets.
Get-Module Microsoft.Graph* -ListAvailable | Where { $_.Name -ne "Microsoft.Graph.Authentication"} | Select-Object Name -Unique | Foreach-Object {  
$Module = $_
Get-Module $Module.Name -ListAvailable | Foreach-Object {  
Uninstall-Module $Module.Name -RequiredVersion $_.Version  
}}  
Get-Module "Microsoft.Graph.Authentication" -ListAvailable | Foreach-Object {  
Uninstall-Module "Microsoft.Graph.Authentication" -RequiredVersion $_.Version  
}  
Install-Module Microsoft.Graph

Error Some actions may be disabled due to your permissions. To request access, contact the application owner(s) or your administrator. View application owners or administrators.

This error occurs when you don’t have the required privileges to add API permissions to app registrations.

Fix To assign API permissions to app registrations, you must be at least assigned as the app owner or must be in any of the app admin roles.

Error New-MgOauth2PermissionGrant: Insufficient privileges to complete the operation.

This error occurs when you don’t have enough API permission scope to retrieve app registration details using PowerShell.

Fix To resolve this error, you must connect to Microsoft Graph PowerShell with Application.Read.All or a higher-privileged scope.

1. How to assign API permissions to an Entra application?

API permissions in Microsoft Entra enable apps to interact with your Microsoft 365 services and data such as user profile access, email functionality, and more. Without the right permissions, app registered in Entra ID can’t function as intended. Assigning correct API permission enables your apps to perform the tasks they were built for.

Add API permissions to an app registration from the Entra admin center

Here’s a breakdown of the steps to add API permissions to your Entra application:

  • In the Microsoft Entra admin center, navigate to Entra ID»App registrations»All applications tab.
  • Select your application and click Add a permission under Manage»API permissions.
  • Go to the respective tab (Microsoft APIs, APIs my organization uses, or My APIs) to select the permissions you want to grant for your application.
  • For example, to read users details using Microsoft Graph, go to the Microsoft APIs tab and click Microsoft Graph.
  • Next, choose Delegated permissions if the app acts on behalf of a signed-in user, or Application permissions if it runs without user interaction.
  • Then, search for ‘User.Read.All’, select it, and click Add permissions.
  • When the requested permission is sensitive or requires high privileges, it requires admin consent.
  • For such permissions, you need to use the Grant admin consent for <domain> option to grant access to resources on behalf of your entire organization.
assign-api-permission-for-entra-app
select-api-permission-for-entra-app

2. What is the difference between delegated access and app-only access in Microsoft Entra?

When assigning Microsoft Entra apps with API permissions, it’s crucial to select the appropriate permission type. The wrong choice can expose sensitive data or restrict your app’s capabilities. There are two types of permissions in Microsoft Entra app registrations: Delegated and Application permissions.

Delegated permissions vs. Application permissions in Entra ID apps

Understanding the permission types that can be added to apps in Microsoft Entra can help you choose the right one based on your app’s access requirements.

delegated-vs-application-permissions

3. What is the difference between using API permissions and app role assignment in Entra apps?

When managing access between Microsoft Entra applications, both API permissions and app role assignments play a key role in defining how one app interacts with another. While they may appear similar, they serve different purposes and behave differently.

The following table highlights the key differences between API permissions and app role assignment to help you choose the right configuration for your scenario.

API permissions vs. App role assignments in Entra ID applications

api-permissions-vs-app-role-assignments

Knowing when and why to use each option helps you maintain both security and efficiency in your app integration.

Kickstart Your Journey With
AdminDroid

Your Microsoft 365 Companion with Enormous Reporting Capabilities

Download Now
User Help Manuals Compliance Docs
x
Delivering Reports on Time
Want a desired Microsoft 365 reports every Monday morning? Ensure automated report distribution and timely delivery with AdminDroid's Scheduling to your email anytime you need.
Delivering Reports on Time
Schedule tailored reports to execute automatically at the time you set and deliver straight to the emails you choose. In addition, you can customize report columns and add inteligent filtering to the activities just from the previous day to suit your Microsoft 365 report requirements.
Set It, Schedule It, See Results- Your Reports, Your Way, On Your Time!
Time Saving
Automation
Customization
Intelligent Filtering
Give Just the Right Access to the Right People
Grant fine-tuned access to any Microsoft 365 user with AdminDroid’s Granular Delegation and meet your organization’s security and compliance requirements.
Give Just the Right Access to the Right People
Create custom roles loaded with just the right permissions and give access to admins or normal users within AdminDroid. The result? A streamlined Microsoft 365 management experience that aligns your organization's security protocols and saves your invaluable time and effort.
Align, Define, Simplify: AdminDroid's Granular Delegation
Smart Organizational Control
Effortless M365 Management
Simplified Access
Advanced Alerts at a Glance
Receive quick notifications for malicious Microsoft 365 activities. Engage with the AdminDroid’s real-time alert policies crafted to streamline your security investigations.
Advanced Alerts at a Glance
Stay informed of critical activities like suspicious emails and high-risk logins, bulk file sharing, etc. Through creating and validating ideal alert policies, AdminDroid provides a comprehensive approach to real-time monitoring and management of potential threats within your organization.
AdminDroid Keeps You Always Vigilant, Never Vulnerable!
Proactive Protection
Real-time Monitoring
Security Intelligence
Threat Detection
Merge the Required Data to One Place
Combine multiple required columns into one comprehensive report and prioritize the information that matters most to you with AdminDroid’s Advanced Column Customization.
Merge the Required Data to One Place
This column merging capability offers a flexible way to add different columns from various reports and collate all the essential data in one place. Want to revisit the customized report? Save it as a 'View’, and your unique report is ready whenever you need it.
Merge with Ease and Save as Views!
Custom Reporting
Unique View
Desired Columns
Easy Data Interpretation
Insightful Charts and Exclusive Dashboards
Get a quick and easy overview of your tenant's activity, identify potential problems, and take action to protect your data with AdminDroid’s Charts and Dashboards.
Insightful Charts and Exclusive Dashboards
With AdminDroid charts and dashboards, visualize your Microsoft 365 tenant in ways you've never thought possible. It's not just about viewing; it's about understanding, controlling, and transforming your Microsoft 365 environment.
Explore Your Microsoft 365 Tenant in a Whole New Way!
Executive overviews
Interactive insights
Decision-making
Data Visualization
Efficient Report Exporting for Microsoft 365
Downloading your reports in the right file format shouldn’t be a hassle with AdminDroid’s Report Export. Experience seamless report exporting in various formats that cater to your needs.
Efficient Report Exporting for Microsoft 365
Navigate through diverse options and export Microsoft 365 reports flawlessly in your desired file format. Tailor your reports precisely as you need them and save them directly to your computer.
Take Control, Customize and Deliver- Your Office 365 Data, Exported in Your Way!
Easy Export
Seamless Downloading
Data Control
Manage Microsoft 365

Get AdminDroid Office 365 Reporter Now!