AppCatalog.Submit
Allows the app to submit application packages to the catalog and cancel submissions that are pending review on behalf of the signed-in user.
Permission Details
Submit application packages to the catalog and cancel pending submissions
Allows the app to submit application packages to the catalog and cancel submissions that are pending review on behalf of the signed-in user.
3db89e36-7fa6-4012-b281-85f3d9d9fd2e
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 Delegated permissions and search for AppCatalog.Submit
Grant Admin Consent
Users can consent to this permission during sign-in.