Skip to content

Latest commit

 

History

History
187 lines (147 loc) · 6.56 KB

File metadata and controls

187 lines (147 loc) · 6.56 KB
title List appManagementPolicies
description Get a list of application management policies.
ms.localizationpriority medium
author aricrowe57
ms.subservice entra-sign-in
doc_type apiPageType
ms.date 08/09/2024

List appManagementPolicies

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Retrieve a list of appManagementPolicy objects.

[!INCLUDE national-cloud-support]

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

[!INCLUDE permissions-table]

[!INCLUDE rbac-app-auth-method-policy-api-get]

Optional query parameters

This method supports the $select, $filter, and $top OData query parameters to help customize the response. For general information, see OData query parameters.

HTTP request

GET /policies/appManagementPolicies

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.

Request body

Don't supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and a collection of appManagementPolicy object in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/policies/appManagementPolicies

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following example shows the response.

HTTP/1.1 200 OK
Content-type: application/json

{
   "@odata.context": "https://graph.microsoft.com/beta/$metadata#policies/appManagementPolicies",
   "value": [
      {
         "id": "db9d4b58-3488-4da4-9994-49773c454e33",
         "displayName": "Custom app management policy",
         "description": "Custom policy that enforces app management restrictions on specific applications and service principals.",
         "isEnabled": false,
         "restrictions": {
            "passwordCredentials": [
               {
                  "restrictionType": "passwordAddition",
                  "maxLifetime": null,
                  "restrictForAppsCreatedAfterDateTime": "2019-10-19T10:37:00Z"
               },
               {
                  "restrictionType": "passwordLifetime",
                  "maxLifetime": "P90D",
                  "restrictForAppsCreatedAfterDateTime": "2017-10-19T10:37:00Z"
               },
               {
                  "restrictionType": "symmetricKeyAddition",
                  "maxLifetime": null,
                  "restrictForAppsCreatedAfterDateTime": "2021-10-19T10:37:00Z"
               },
               {
                  "restrictionType": "symmetricKeyLifetime",
                  "maxLifetime": "P30D",
                  "restrictForAppsCreatedAfterDateTime": "2014-10-19T10:37:00Z"
               }
            ],
            "keyCredentials": [
               {
                  "restrictionType": "asymmetricKeyLifetime",
                  "maxLifetime": "P90D",
                  "restrictForAppsCreatedAfterDateTime": "2014-10-19T10:37:00Z"
               },
               {
                  "restrictionType": "trustedCertificateAuthority",
                  "restrictForAppsCreatedAfterDateTime": "2019-10-19T10:37:00Z",
                  "certificateBasedApplicationConfigurationIds": [
                     "eec5ba11-2fc0-4113-83a2-ed986ed13743",
                     "bb8e164b-f9ed-4b98-bc45-65eddc14f4c1"
                  ],
                  "maxLifetime": null
               }
            ],
            "applicationRestrictions": {
               "identifierUris": {
                  "nonDefaultUriAddition": {
                     "restrictForAppsCreatedAfterDateTime": "2024-01-01T10:37:00Z",
                     "excludeAppsReceivingV2Tokens": true,
                     "excludeSaml": true
                  }
               }
            }
         }
      }
   ]
}