Skip to content

Latest commit

 

History

History
149 lines (108 loc) · 5.37 KB

tokenlifetimepolicy-list-appliesto.md

File metadata and controls

149 lines (108 loc) · 5.37 KB
title description ms.localizationpriority author ms.subservice doc_type
List appliesTo
Get a list of directoryObject objects that a tokenLifetimePolicy object has been applied to.
medium
lujiangfeng666
entra-sign-in
apiPageType

List appliesTo

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Get a list of directoryObject objects that a tokenLifetimePolicy object has been applied to. The tokenLifetimePolicy can only be applied to application and servicePrincipal resources.

[!INCLUDE national-cloud-support]

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 and Application.Read.All, Policy.ReadWrite.ApplicationConfiguration and Application.Read.All, Directory.Read.All
Delegated (personal Microsoft account) Not supported.
Application Policy.Read.All and Application.Read.All, Policy.ReadWrite.ApplicationConfiguration and Application.Read.All, Directory.Read.All

HTTP request

GET /policies/tokenLifetimePolicies/{id}/appliesTo

Optional query parameters

This method supports the $expand, $select and $top OData query parameters to help customize the response. For general information, see OData query parameters. When using $expand make sure your app requests permissions to read the expanded objects.

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 directoryObject objects in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/policies/tokenLifetimePolicies/4d2f137b-e8a9-46da-a5c3-cc85b2b840a4/appliesTo

[!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]

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


Response

The following example shows the response.

Note: The response object shown here might be shortened for readability.

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

{
    "@odata.context": "https://graph.microsoft.com/beta/$metadata#directoryObjects",
    "value": [
        {
            "@odata.type": "#microsoft.graph.application",
            "id": "3ccc9971-9ae7-45d6-8de8-263fd25fe116",
            "appId": "6e4a2285-a438-4bcc-9d76-6c45fb91d4b0",
            "applicationTemplateId": "8adf8e6e-67b2-4cf2-a259-e3dc5476c621",
            "displayName": "Contoso IWA App",
            "publisherDomain": "Contoso.com",
            "signInAudience": "AzureADMyOrg"
        }
    ]
}