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.
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.
Represents details of a user identity account.
Inherits from microsoft.graph.security.identityAccounts.
Properties
| Property | Type | Description |
|---|---|---|
| accounts | microsoft.graph.security.account collection | Collection of accounts of the identity in different identity providers. Inherited from microsoft.graph.security.identityAccounts. |
| cloudSecurityIdentifier | String | The cloud security identifier of the identity account. Inherited from microsoft.graph.security.identityAccounts. |
| displayName | String | The display name of the identity account. Inherited from microsoft.graph.security.identityAccounts. |
| domain | String | The domain name of the identity account. Inherited from microsoft.graph.security.identityAccounts. |
| emailAddress | String | Email address of the user. |
| id | String | Unique identifier to represent the identity account. Inherited from microsoft.graph.entity. Inherits from entity |
| isEnabled | Boolean | Boolean indicating if the identity account is enabled. Inherited from microsoft.graph.security.identityAccounts. |
| onPremisesSecurityIdentifier | String | The on-premises security identifier of the identity account. Inherited from microsoft.graph.security.identityAccounts. |
| userPrincipalName | String | The user principal name. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.security.user",
"id": "String (identifier)",
"displayName": "String",
"domain": "String",
"onPremisesSecurityIdentifier": "String",
"cloudSecurityIdentifier": "String",
"isEnabled": "Boolean",
"accounts": [
{
"@odata.type": "microsoft.graph.security.account"
}
],
"emailAddress": "String",
"userPrincipalName": "String"
}