Namespace: microsoft.graph.security
Read the properties and relationships of a single identity security account object. This allows retrieving information about available identity accounts.
This API is available in the following national cloud deployments.
| Global service |
US Government L4 |
US Government L5 (DOD) |
China operated by 21Vianet |
| ✅ |
❌ |
❌ |
❌ |
Permissions
One of the following permissions is required to call this API. 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) |
SecurityIdentitiesAccount.Read.All |
Not available. |
| Delegated (personal Microsoft account) |
Not supported. |
Not supported. |
| Application |
SecurityIdentitiesAccount.Read.All |
Not available. |
Important
For delegated access using work or school accounts, the signed-in user must be assigned a supported Microsoft Entra role or a custom role that grants the permissions required for this operation. Security Administrator is the least privileged role supported for this operation.
HTTP request
GET /security/identities/identityAccounts/{identityAccountsId}
Optional query parameters
This method supports the $select OData query parameter to help customize the response. For general information, see OData query parameters.
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK response code and a microsoft.graph.security.identityAccounts object in the response body.
Examples
Example 1: Get details of an identity account
Request
The following example shows a request.
GET https://graph.microsoft.com/v1.0/security/identities/identityAccounts/0104216-0539-4838-88b1-55baafdc296b
// Code snippets are only available for the latest version. Current version is 5.x
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Security.Identities.IdentityAccounts["{identityAccounts-id}"].GetAsync();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
// Code snippets are only available for the latest major version. Current major version is $v1.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
//other-imports
)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
identityAccounts, err := graphClient.Security().Identities().IdentityAccounts().ByIdentityAccountsId("identityAccounts-id").Get(context.Background(), nil)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
com.microsoft.graph.models.security.IdentityAccounts result = graphClient.security().identities().identityAccounts().byIdentityAccountsId("{identityAccounts-id}").get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
const options = {
authProvider,
};
const client = Client.init(options);
let identityAccounts = await client.api('/security/identities/identityAccounts/0104216-0539-4838-88b1-55baafdc296b')
.get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
<?php
use Microsoft\Graph\GraphServiceClient;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$result = $graphServiceClient->security()->identities()->identityAccounts()->byIdentityAccountsId('identityAccounts-id')->get()->wait();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
result = await graph_client.security.identities.identity_accounts.by_identity_accounts_id('identityAccounts-id').get()
For details about how to add the SDK to your project and create an authProvider instance, see the 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
{
"value":
{
"id": "00104216-0539-4838-88b1-55baafdc296b",
"displayName": "accoundJon",
"domain": "domain1.test.local",
"onPremisesSecurityIdentifier": "S-1-5-21-989687458-3461180213-172365591-281652",
"cloudSecurityIdentifier": "S-1-12-4-2492432728-1225839317-3974870967-847981844",
"isEnabled": true,
"accounts": [
{
"provider": "ActiveDirectory",
"identifier": "256db173-930a-4991-9061-0d51a9a93ba5",
"actions": ["Enable"]
},
{
"provider": "EntraID",
"identifier": "69dfa3ea-1295-4e2c-b469-59564581143d",
"actions": []
},
{
"provider": "Okta",
"identifier": "878a6911-f3da-41eb-a895-1d46fa054d3e",
"actions": ["revokeAllSessions"]
}
]
}
}
Example 2: Get the account details of an identity account
Request
The following example shows a request.
GET https://graph.microsoft.com/v1.0/security/identities/identityAccounts/0104216-0539-4838-88b1-55baafdc296b?$select=accounts
// Code snippets are only available for the latest version. Current version is 5.x
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Security.Identities.IdentityAccounts["{identityAccounts-id}"].GetAsync((requestConfiguration) =>
{
requestConfiguration.QueryParameters.Select = new string []{ "accounts" };
});
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
// Code snippets are only available for the latest major version. Current major version is $v1.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
graphsecurity "github.com/microsoftgraph/msgraph-sdk-go/security"
//other-imports
)
requestParameters := &graphsecurity.IdentitiesIdentityAccountsItemRequestBuilderGetQueryParameters{
Select: [] string {"accounts"},
}
configuration := &graphsecurity.IdentitiesIdentityAccountsItemRequestBuilderGetRequestConfiguration{
QueryParameters: requestParameters,
}
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
identityAccounts, err := graphClient.Security().Identities().IdentityAccounts().ByIdentityAccountsId("identityAccounts-id").Get(context.Background(), configuration)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
com.microsoft.graph.models.security.IdentityAccounts result = graphClient.security().identities().identityAccounts().byIdentityAccountsId("{identityAccounts-id}").get(requestConfiguration -> {
requestConfiguration.queryParameters.select = new String []{"accounts"};
});
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
const options = {
authProvider,
};
const client = Client.init(options);
let identityAccounts = await client.api('/security/identities/identityAccounts/0104216-0539-4838-88b1-55baafdc296b')
.select('accounts')
.get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
<?php
use Microsoft\Graph\GraphServiceClient;
use Microsoft\Graph\Generated\Security\Identities\IdentityAccounts\Item\IdentityAccountsItemRequestBuilderGetRequestConfiguration;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestConfiguration = new IdentityAccountsItemRequestBuilderGetRequestConfiguration();
$queryParameters = IdentityAccountsItemRequestBuilderGetRequestConfiguration::createQueryParameters();
$queryParameters->select = ["accounts"];
$requestConfiguration->queryParameters = $queryParameters;
$result = $graphServiceClient->security()->identities()->identityAccounts()->byIdentityAccountsId('identityAccounts-id')->get($requestConfiguration)->wait();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
from msgraph.generated.security.identities.identity_accounts.item.identity_accounts_item_request_builder import IdentityAccountsItemRequestBuilder
from kiota_abstractions.base_request_configuration import RequestConfiguration
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
query_params = IdentityAccountsItemRequestBuilder.IdentityAccountsItemRequestBuilderGetQueryParameters(
select = ["accounts"],
)
request_configuration = RequestConfiguration(
query_parameters = query_params,
)
result = await graph_client.security.identities.identity_accounts.by_identity_accounts_id('identityAccounts-id').get(request_configuration = request_configuration)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
Response
The following example shows the response of the identityAccount using the select param.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"value":
{
"accounts": [
{
"provider": "ActiveDirectory",
"identifier": "256db173-930a-4991-9061-0d51a9a93ba5",
"actions": ["disable", "forcePasswordReset"]
},
{
"provider": "EntraID",
"identifier": "69dfa3ea-1295-4e2c-b469-59564581143d",
"actions": []
},
{
"provider": "Okta",
"identifier": "878a6911-f3da-41eb-a895-1d46fa054d3e",
"actions": ["revokeAllSessions"]
}
]
}
}
Note
Actions related to Entra ID are not covered in the current scope.