AppCatalog.ReadWrite.All
Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.
Permission Details
Read and write to all app catalogs
Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.
dc149144-f292-421e-b185-5953f2e98d7f
Read and write to all app catalogs
Allows the app to create, read, update, and delete apps in the app catalogs.
1ca167d5-1655-44a1-8adf-1414072e1ef9
Properties
Properties is shown from stable Microsoft Graph v1.0 metadata.
| Property | Type | Description |
|---|---|---|
displayName |
stringNullable |
The name of the catalog app provided by the app developer in the Microsoft Teams zip app package. |
distributionMethod |
teamsAppDistributionMethod |
The method of distribution for the app. Read-only. |
externalId |
stringNullable |
The ID of the catalog provided by the app developer in the Microsoft Teams zip app package. |
id |
string |
The app ID generated for the catalog is different from the developer-provided ID found within the Microsoft Teams zip app package. The externalId value is empty for apps with a distributionMethod type of store. When apps are published to the global store, the id of the app matches the id in the app manifest. |
appDefinitions |
teamsAppDefinition collection |
The details for each version of the app. |
JSON Representation
JSON representation is shown from stable Microsoft Graph v1.0 metadata.
{
"externalId": "string",
"displayName": "string",
"distributionMethod": "string",
"id": "string"
}
Relationships
Relationships is shown from stable Microsoft Graph v1.0 metadata.
| Relationship | Type | Description |
|---|---|---|
appDefinitions |
teamsAppDefinition collection |
The details for each version of the app. |
Graph Methods
Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
Microsoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
Code Examples
// Code snippets are only available for the latest version. Current version is 5.x
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
await graphClient.AppCatalogs.TeamsApps["{teamsApp-id}"].DeleteAsync();
const options = {
authProvider,
};
const client = Client.init(options);
await client.api('/appCatalogs/teamsApps/06805b9e-77e3-4b93-ac81-525eb87513b8')
.delete();
Import-Module Microsoft.Graph.Teams
Remove-MgAppCatalogTeamApp -TeamsAppId $teamsAppId
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
await graph_client.app_catalogs.teams_apps.by_teams_app_id('teamsApp-id').delete()
App Registration
Navigate to Azure Portal
Go to App registrations in Microsoft Entra admin center
Add API Permission
Select your app → API permissions → Add a permission → Microsoft Graph
Select Permission Type
Choose Application permissions or delegated permissions and search for AppCatalog.ReadWrite.All
Grant Admin Consent
Application permissions always require admin consent.