entra app remove
Removes an Entra app registration
Usage
m365 entra app remove [options]
Alias
m365 entra appregistration remove [options]
Options
--appId [appId]Application (client) ID of the Entra application registration to remove. Specify either
appId,objectIdornamebut not multiple.--objectId [objectId]Object ID of the Entra application registration to remove. Specify either
appId,objectIdornamebut not multiple.--name [name]Name of the Entra application registration to remove. Specify either
appId,objectIdornamebut not multiple.-f, --forceDon't prompt for confirmation to remove the app.
-h, --help [help]Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are
options,examples,remarks,permissions,response,full. Default isoptions.--query [query]JMESPath query string. See http://jmespath.org/ for more information and examples.
-o, --output [output]Output type.
json,text,csv,md,none. Defaultjson.--verboseRuns command with verbose logging.
--debugRuns command with debug logging.
Remarks
For best performance use the objectId option to reference the Entra application registration to remove. If you use appId or name, this command will first need to find the corresponding object ID for that application.
If the command finds multiple Entra application registrations with the specified app name, it will prompt you to disambiguate which app it should use, listing the discovered object IDs.
Permissions
- Delegated
- Application
| Resource | Permissions |
|---|---|
| Microsoft Graph | Application.ReadWrite.All |
| Resource | Permissions |
|---|---|
| Microsoft Graph | Application.ReadWrite.OwnedBy |
Examples
Remove the Entra application registration by its app (client) ID.
m365 entra app remove --appId d75be2e1-0204-4f95-857d-51a37cf40be8
Remove the Entra application registration by its object ID.
m365 entra app remove --objectId d75be2e1-0204-4f95-857d-51a37cf40be8
Remove the Entra application registration by its name. Will NOT prompt for confirmation before deleting.
m365 entra app remove --name "My app" --force
Response
The command won't return a response on success.