Skip to main content

entra group user list

Lists users of a specific Entra group

Usage

m365 entra group user list [options]

Alias

m365 aad group user list [options]

Options

-i, --groupId [groupId]

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

-n, --groupDisplayName [groupDisplayName]

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

-r, --role [role]

Filter the results to only users with the given role: 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, 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.

Examples

List all group users from a group specified by ID.

m365 entra group user list --groupId 03cba9da-3974-46c1-afaf-79caa2e45bbe

List all owners from a group specified by display name.

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

List all group users from a group specified by name. For each one return the display name, e-mail address, and manager display name.

m365 entra group user list --groupDisplayName Developers --properties "displayName,mail,manager/displayName"

List all group users from a group specified by name. For each one return the display name, e-mail address, and manager information.

m365 entra group user list --groupDisplayName Developers --properties "displayName,mail,manager/*"

List all group members that are guest users.

m365 entra group 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"
]
}
]

More information

CTRL + M