Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In this article
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 list of directoryObject objects that a homeRealmDiscoveryPolicy object has been applied to. The homeRealmDiscoveryPolicy can only be applied to servicePrincipal resources.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
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.
Permission type | Least privileged permissions | Higher privileged permissions |
---|---|---|
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. | Not supported. |
Application | Policy.Read.All and Application.Read.All | Policy.ReadWrite.ApplicationConfiguration and Application.Read.All, Directory.Read.All |
GET /policies/homeRealmDiscoveryPolicies/{id}/appliesTo
This method supports the $select
and $top
OData query parameters to help customize the response. For general information, see OData query parameters.
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK
response code and a collection of directoryObject objects in the response body. It returns a 404 Not Found
response code if the policy hasn't been applied to any directory objects.
The following example shows a request.
GET https://graph.microsoft.com/beta/policies/homeRealmDiscoveryPolicies/6c6f154f-cb39-4ff9-bf5b-62d5ad585cde/appliesTo
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.servicePrincipal",
"id": "19c308f2-e088-464d-8ccb-7137b7bab660",
"accountEnabled": true,
"alternativeNames": [],
"appDisplayName": "LinkedIn",
"appId": "c8e5820f-8e41-4b7c-8937-42777eb592a4",
"appOwnerOrganizationId": "84841066-274d-4ec0-a5c1-276be684bdd3",
"displayName": "LinkedIn",
"homepage": "https://account.activedirectory.windowsazure.com:444/applications/default.aspx?metadata=linkedin|ISV9.3|primary|z",
"servicePrincipalNames": [
"c8e5820f-8e41-4b7c-8937-42777eb592a4",
"http://LinkedIn/1a2d95c1-3cc7-46ad-82dd-2c768ae1b4ff"
],
"servicePrincipalType": "Application",
"signInAudience": "AzureADMyOrg",
"tags": [
"4d57f64e-9941-4df2-bb70-8d9a2a38ab91",
"WindowsAzureActiveDirectoryGalleryApplicationPrimaryV1",
"WindowsAzureActiveDirectoryIntegratedApp"
],
"appRoles": [
{
"allowedMemberTypes": [
"User"
],
"description": "msiam_access",
"displayName": "msiam_access",
"id": "01c2bb8e-0895-42c8-b950-3ec8abc7a012",
"isEnabled": true,
"origin": "Application",
"value": null
}
],
"keyCredentials": [],
"oauth2PermissionScopes": [
{
"adminConsentDescription": "Allow the application to access LinkedIn on behalf of the signed-in user.",
"adminConsentDisplayName": "Access LinkedIn",
"id": "6edde65d-3f90-4251-9df2-0329b678b368",
"isEnabled": true,
"type": "User",
"userConsentDescription": "Allow the application to access LinkedIn on your behalf.",
"userConsentDisplayName": "Access LinkedIn",
"value": "user_impersonation"
}
],
"passwordCredentials": []
}
]
}