| title | userAccount resource type |
|---|---|
| description | Represents common properties for a user account. |
| author | BenAlfasi |
| ms.localizationpriority | medium |
| ms.subservice | security |
| doc_type | resourcePageType |
| ms.date | 07/22/2024 |
Namespace: microsoft.graph.security
[!INCLUDE beta-disclaimer]
Represents common properties for a user account.
| Property | Type | Description |
|---|---|---|
| accountName | String | The displayed name of the user account. |
| activeDirectoryObjectGuid | Guid | The unique user identifier assigned by the on-premises Active Directory. |
| azureAdUserId | String | The user object identifier in Microsoft Entra ID. |
| displayName | String | The user display name in Microsoft Entra ID. |
| domainName | String | The name of the Active Directory domain of which the user is a member. |
| resourceAccessEvents | microsoft.graph.security.resourceAccessEvent collection | Information on resource access attempts made by the user account. |
| userPrincipalName | String | The user principal name of the account in Microsoft Entra ID. |
| userSid | String | The local security identifier of the user account. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.security.userAccount",
"accountName": "String",
"activeDirectoryObjectGuid": "Guid",
"azureAdUserId": "String",
"displayName": "String",
"domainName": "String",
"resourceAccessEvents": [
{
"@odata.type": "microsoft.graph.security.resourceAccessEvent"
}
],
"userPrincipalName": "String",
"userSid": "String"
}