informationProtectionLabel: listLabels
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Get a collection of information protection labels available to the user or to the organization.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | InformationProtectionPolicy.Read |
Delegated (personal Microsoft account) | Not supported. |
Application | InformationProtectionPolicy.Read.All |
HTTP request
To get labels available to the signed-in user or specified user:
GET /me/informationProtection/policy/labels
GET /users/{id | user-principal-name}/informationProtection/policy/labels
To get labels available to the organization:
GET /informationProtection/policy/labels
Optional query parameters
This method supports some of the OData query parameters to help customize the response. For general information, see OData query parameters.
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. |
User-Agent | Describes the name and version of the calling application. Details will surface in Azure Information Protection Analytics. Suggested format is ApplicationName/Version. Optional. |
Request body
Do not supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a collection of informationProtectionLabel objects in the response body.
Examples
Request
The following is an example of the request.
GET https://graph.microsoft.com/beta/me/informationProtection/policy/labels
Response
The following is an example of the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-type: application/json
User-agent: ContosoLOBApp/1.0
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#users('1e36d926-d716-4197-ba86-a6e18eb910b9')/informationProtection/policy/labels",
"value": [
{
"id": "3a80e051-487c-40d4-b491-73ad25d997e6",
"name": "General",
"description": "Consult Contoso data labeling policy for more details.",
"color": "",
"sensitivity": 1,
"tooltip": "Data classified as Contoso General.",
"isActive": true,
"parent": null
},
{
"id": "4662f9a3-dd50-4a20-b984-a7be82e0e79c",
"name": "Confidential",
"description": "Consult Contoso data labeling policy for more details.",
"color": "",
"sensitivity": 2,
"tooltip": "Data classificed as Contoso Confidential.",
"isActive": true,
"parent": null
},
{
"id": "4b18e8bb-b4a5-4695-85d0-8ae23ef27892",
"name": "Highly Confidential",
"description": "Consult Contoso data labeling policy for more details.",
"color": "",
"sensitivity": 3,
"tooltip": "Data classified as Contoso Highly Confidential.",
"isActive": true,
"parent": null
},
{
"id": "a20cbae4-0c05-448c-b342-cb6c618d0957",
"name": "Contoso Full Time Employees",
"description": "Consult Contoso data labeling policy for more details.",
"color": "",
"sensitivity": 4,
"tooltip": "Data classified as Contoso Highly Confidential for Contoso Full Time Employees",
"isActive": true,
"parent": {
"id": "4b18e8bb-b4a5-4695-85d0-8ae23ef27892",
"name": "Highly Confidential",
"description": "Consult Contoso data labeling policy for more details.",
"color": "",
"sensitivity": 3,
"tooltip": "Data classified as Contoso Highly Confidential.",
"isActive": true,
"parent": null
}
}
]
}
Feedback
Submit and view feedback for