List Policies
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported.
Get all policy objects in the directory.
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) | Policy.Read.All, Directory.Read.All, Directory.AccessAsUser.All |
Delegated (personal Microsoft account) | Not supported. |
Application | Policy.Read.All, Directory.Read.All |
HTTP request
GET /policies
Request headers
Name | Type | Description |
---|---|---|
Authorization | string | Bearer {token}. Required. |
Request body
Do not supply a request body for this method.
Response
If successful, this method returns 200 OK
response code and policy objects in the response body. If unsuccessful...
Example
The following example retrieves all policies.
Request
Here is an example of the request.
GET https://graph.microsoft.com/beta/policies
Response
Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
HTTP/1.1 200 OK
Content-type: application/json
{
"value":[
{
"id":"id-value",
"alternativeIdentifier":null,
"definition":["policy-definition"],
"displayName":"name-value",
"isOrganizationDefault":boolean-value,
"keyCredentials":[key-credentials],
"type":"type-value"
}
]
}
Feedback
Loading feedback...