aad o365group user list¶
Lists users for the specified Microsoft 365 group or Microsoft Teams team
Usage¶
m365 aad o365group user list [options]
Alias¶
m365 teams user list
Options¶
-i, --groupId [groupId]
- The ID of the Microsoft 365 group for which to list users
--teamId [teamId]
- The ID of the Microsoft Teams team for which to list users
-r, --role [role]
- Filter the results to only users with the given role:
Owner,Member,Guest
-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
. Defaulttext
--verbose
- Runs command with verbose logging
--debug
- Runs command with debug logging
Examples¶
List all users and their role in the specified Microsoft 365 group
m365 aad o365group user list --groupId '00000000-0000-0000-0000-000000000000'
List all owners and their role in the specified Microsoft 365 group
m365 aad o365group user list --groupId '00000000-0000-0000-0000-000000000000' --role Owner
List all guests and their role in the specified Microsoft 365 group
m365 aad o365group user list --groupId '00000000-0000-0000-0000-000000000000' --role Guest
List all users and their role in the specified Microsoft teams team
m365 teams user list --teamId '00000000-0000-0000-0000-000000000000'
List all owners and their role in the specified Microsoft teams team
m365 teams user list --teamId '00000000-0000-0000-0000-000000000000' --role Owner