Edit

Share via


identityAccounts resource type

Namespace: microsoft.graph.security

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.

Refers to any user or service account that is monitored for suspicious or malicious activity by Microsoft Defender for Identity within your identity infrastructure.

This resource is an abstract type from which the microsoft.graph.security.user is derived.

Inherits from microsoft.graph.entity.

Methods

Method Return type Description
List microsoft.graph.security.identityAccounts collection Get a list of the identity account objects and their properties.
Get microsoft.graph.security.identityAccounts Read the properties and relationships of a identity account object.
invokeAction microsoft.graph.security.invokeActionResult Invoke an action for the account.

Properties

Property Type Description
accounts microsoft.graph.security.account collection Collection of accounts of the identity in different identity providers.
cloudSecurityIdentifier String The cloud security identifier of the identityAccount.
displayName String The Active Directory display name of the identityAccount.
domain String The Active Directory domain name of the identityAccount.
id String Unique identifier to represent the identity account. Inherited from microsoft.graph.entity. Inherits from entity
isEnabled Boolean Boolean indicating if the identityAccounts is enabled.
onPremisesSecurityIdentifier String The on-premises security identifier of the identityAccount.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.security.identityAccounts",
  "id": "String (identifier)",
  "displayName": "String",
  "domain": "String",
  "onPremisesSecurityIdentifier": "String",
  "cloudSecurityIdentifier": "String",
  "isEnabled": "Boolean",
  "accounts": [
    {
      "@odata.type": "microsoft.graph.security.account"
    }
  ]
}