purview sensitivitylabel list
Get a list of sensitivity labels
Usage
m365 purview sensitivitylabel list [options]
Options
--userId [userId]
User's Microsoft Entra ID. Optionally specify this if you want to get a list of sensitivity labels that the user has access to. Specify either
userId
oruserName
but not both.--userName [userName]
User's UPN (user principal name, e.g. johndoe@example.com). Optionally specify this if you want to get a list of sensitivity labels that the user has access to. Specify either
userId
oruserName
but not both.
-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 isoptions
.--query [query]
JMESPath query string. See http://jmespath.org/ for more information and examples.
-o, --output [output]
Output type.
json
,text
,csv
,md
,none
. Defaultjson
.--verbose
Runs command with verbose logging.
--debug
Runs command with debug logging.
Remarks
This command is based on a Microsoft Graph API that is currently in preview and is subject to change once the API reached general availability.
When operating in app-only mode, you have the option to use either the userName
or userId
parameters to retrieve the sensitivity label for a specific user. Without specifying either of these parameters, the command will retrieve the sensitivity label for the currently authenticated user when operating in delegated mode.
Examples
Get a list of sensitivity labels.
m365 purview sensitivitylabel list
Get a list of sensitivity labels that a specific user has access to by its Id.
m365 purview sensitivitylabel list --userId 59f80e08-24b1-41f8-8586-16765fd830d3
Get a list of sensitivity labels that a specific user has access to by its UPN.
m365 purview sensitivitylabel list --userName john.doe@contoso.com
Response
- JSON
- Text
- CSV
- Markdown
[
{
"id": "6f4fb2db-ecf4-4279-94ba-23d059bf157e",
"name": "Unrestricted",
"description": "",
"color": "",
"sensitivity": 0,
"tooltip": "Information either intended for general distribution, or which would not have any impact on the organization if it were to be distributed.",
"isActive": true,
"isAppliable": true,
"contentFormats": [
"file",
"email"
],
"hasProtection": false,
"parent": null
}
]
id name isActive
------------------------------------ --------------------- --------
6f4fb2db-ecf4-4279-94ba-23d059bf157e Unrestricted true
id,name,isActive
6f4fb2db-ecf4-4279-94ba-23d059bf157e,Unrestricted,1
# purview sensitivitylabel list
Date: 3/26/2023
## Unrestricted (6f4fb2db-ecf4-4279-94ba-23d059bf157e)
Property | Value
---------|-------
id | 6f4fb2db-ecf4-4279-94ba-23d059bf157e
name | Unrestricted
description |
color |
sensitivity | 0
tooltip | Information either intended for general distribution, or which would not have any impact on the organization if it were to be distributed.
isActive | true
isAppliable | true
hasProtection | false
parent | null