Skip to main content

entra m365group user list

Lists users for the specified Microsoft 365 group

Usage

m365 entra m365group user list [options]

Options

-i, --groupId [groupId]

The ID of the Microsoft 365 group. Specify groupId or groupDisplayName but not both.

-n, --groupDisplayName [groupDisplayName]

The display name of the Microsoft 365 group. Specify groupId or groupDisplayName but not both.

-r, --role [role]

Filter the results to only users with the given role. Allowed values: Owner, Member.

-p, --properties [properties]

Comma-separated list of properties to retrieve.

-f, --filter [filter]

OData filter to use to query the list of users with.

-h, --help [help]

Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are options, examples, remarks, permissions, response, full. Default is options.

--query [query]

JMESPath query string. See http://jmespath.org/ for more information and examples.

-o, --output [output]

Output type. json, text, csv, md, none. Default json.

--verbose

Runs command with verbose logging.

--debug

Runs command with debug logging.

Remarks

When the properties option includes values with a /, for example: manager/displayName, an additional $expand query parameter will be included on manager.

Permissions

ResourcePermissions
Microsoft GraphGroupMember.Read.All, User.ReadBasic.All

Examples

List all users and their role from Microsoft 365 group specified by ID.

m365 entra m365group user list --groupId '00000000-0000-0000-0000-000000000000'

List all owners from Microsoft 365 group specified by display name.

m365 entra m365group user list --groupDisplayName Developers --role Owner

List specific properties for all group users from a group specified by ID.

m365 entra m365group user list --groupId 03cba9da-3974-46c1-afaf-79caa2e45bbe --properties "id,jobTitle,companyName,accountEnabled"

List all group members that are guest users.

m365 entra m365group user list --groupDisplayName Developers --filter "userType eq 'Guest'"

Response

[
{
"id": "da52218e-4822-4ac6-b41d-255e2059655e",
"displayName": "Adele Vance",
"userPrincipalName": "AdeleV@contoso.OnMicrosoft.com",
"givenName": "Adele",
"surname": "Vance",
"roles": [
"Owner",
"Member"
]
}
]