teams app list¶
Lists apps from the Microsoft Teams app catalog or apps installed in the specified team
Usage¶
m365 teams app list [options]
Options¶
-a, --all
- Specify, to get apps from your organization only
-i, --teamId [teamId]
- The ID of the team for which to list installed apps. Specify either
teamId
orteamName
but not both -t, --teamName [teamName]
- The display name of the team for which to list installed apps. Specify either
teamId
orteamName
but not both -h, --help
- output usage information
--query [query]
- JMESPath query string. See http://jmespath.org/ for more information and examples
-o, --output [output]
- Output type.
json,text,csv
. Defaultjson
--verbose
- Runs command with verbose logging
--debug
- Runs command with debug logging
Remarks¶
To list apps installed in the specified Microsoft Teams team, specify that team's ID using the teamId
option. If the teamId
option is not specified, the command will list apps available in the Teams app catalog.
Examples¶
List all Microsoft Teams apps from your organization's app catalog only
m365 teams app list
List all apps from the Microsoft Teams app catalog and the Microsoft Teams store
m365 teams app list --all
List your organization's apps installed in the specified Microsoft Teams team with id 6f6fd3f7-9ba5-4488-bbe6-a789004d0d55
m365 teams app list --teamId 6f6fd3f7-9ba5-4488-bbe6-a789004d0d55
List your organization's apps installed in the specified Microsoft Teams team with name Team Name
m365 teams app list --teamName "Team Name"