Skip to main content

entra administrativeunit list

Retrieves a list of administrative units

Usage

m365 entra administrativeunit list [options]

Options

-p, --properties [properties]

Comma-separated list of properties to retrieve.

-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

Using the --properties option, you can specify a comma-separated list of administrative unit properties to retrieve from the Microsoft Graph. If you don't specify any properties, the command will output the default properties returned by Graph.

Permissions

ResourcePermissions
Microsoft GraphAdministrativeUnit.Read.All

Examples

Retrieve a list of administrative units.

m365 entra administrativeunit list

Retrieve a list of administrative units with specified properties.

m365 entra administrativeunit list --properties "id,displayName"

Response

[
{
"id": "0a22c83d-c4ac-43e2-bb5e-87af3015d49f",
"deletedDateTime": null,
"displayName": "Marketing Department",
"description": "Marketing Department Administration",
"membershipRule": null,
"membershipType": null,
"membershipRuleProcessingState": null,
"visibility": "HiddenMembership"
}
]

More information