spo app retract¶
Retracts the specified app from the specified app catalog
Usage¶
m365 spo app retract [options]
Options¶
-i, --id <id>
- ID of the app to retract. Needs to be available in the app catalog.
-u, --appCatalogUrl [appCatalogUrl]
- URL of the tenant or site collection app catalog. It must be specified when the scope is
sitecollection
-s, --appCatalogScope [appCatalogScope]
- Scope of the app catalog:
tenant,sitecollection
. Defaulttenant
--confirm
- Don't prompt for confirming retracting 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
,response
,full
. Default isfull
. --query [query]
- JMESPath query string. See http://jmespath.org/ for more information and examples
-o, --output [output]
- Output type.
json,text,csv,md
. Defaultjson
--verbose
- Runs command with verbose logging
--debug
- Runs command with debug logging
Remarks¶
When getting information about an app from the tenant app catalog, it's not necessary to specify the tenant app catalog URL. When the URL is not specified, the CLI will try to resolve the URL itself. Specifying the app catalog URL is required when you want to get information about an app from a site collection app catalog.
When specifying site collection app catalog, you can specify the URL either with our without the AppCatalog part, for example https://contoso.sharepoint.com/sites/team-a/AppCatalog
or https://contoso.sharepoint.com/sites/team-a
. CLI will accept both formats.
If the app with the specified ID doesn't exist in the app catalog, the command will fail with an error.
Examples¶
Retract the specified app from the tenant app catalog. Try to resolve the URL of the tenant app catalog automatically. Additionally, will prompt for confirmation before actually retracting the app.
m365 spo app retract --id 058140e3-0e37-44fc-a1d3-79c487d371a3
Retract the specified app from the tenant app catalog located at https://contoso.sharepoint.com/sites/apps. Additionally, will prompt for confirmation before actually retracting the app.
m365 spo app retract --id 058140e3-0e37-44fc-a1d3-79c487d371a3 --appCatalogUrl https://contoso.sharepoint.com/sites/apps
Retract the specified app from the tenant app catalog. Try to resolve the URL of the tenant app catalog automatically. Will not prompt for confirmation before retracting the app.
m365 spo app retract --id 058140e3-0e37-44fc-a1d3-79c487d371a3 --confirm
Retract the specified app from a site collection app catalog of site https://contoso.sharepoint.com/sites/site1.
m365 spo app retract --id d95f8c94-67a1-4615-9af8-361ad33be93c --appCatalogScope sitecollection --appCatalogUrl https://contoso.sharepoint.com/sites/site1
More information¶
- Application Lifecycle Management (ALM) APIs: https://docs.microsoft.com/en-us/sharepoint/dev/apis/alm-api-for-spfx-add-ins