List auditEvents
Namespace: microsoft.graph
List all the cloudPcAuditEvent objects for the tenant.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ❌ | ❌ | ❌ |
Permissions
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) | CloudPC.Read.All | CloudPC.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | CloudPC.Read.All | CloudPC.ReadWrite.All |
HTTP request
GET /deviceManagement/virtualEndpoint/auditEvents
Optional query parameters
This method supports $skiptoken
, $top
and $filter
OData query parameters to help customize the response. For general information, see OData query parameters.
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a collection of cloudPcAuditEvent objects in the response body.
Examples
Request
The following example shows a request.
GET https://graph.microsoft.com/v1.0/deviceManagement/virtualEndpoint/auditEvents
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": [
{
"@odata.type": "#microsoft.graph.cloudPcAuditEvent",
"id": "250473f5-029f-4037-813d-ba4768201d61",
"displayName": "Display Name value",
"componentName": "Component Name value",
"activity": "Activity value",
"activityDateTime": "2021-02-14T13:10:51.814636+08:00",
"activityType": " Activity Type value",
"activityOperationType": "Activity Operation Type value",
"activityResult": "Activity Result value",
"correlationId": "a5c71cc6-2271-4d5c-9bfe-d94781e83fe6",
"category": "Category value",
"actor": {
"@odata.type": "microsoft.graph.cloudPcAuditActor",
"type": "Type value",
"userPermissions": [
"User Permissions value"
],
"applicationId": "Application Id value",
"applicationDisplayName": "Application Display Name value",
"userPrincipalName": "User Principal Name value",
"servicePrincipalName": "Service Principal Name value",
"ipAddress": "Ip Address value",
"userId": "User Id value",
"userRoleScopeTags": [
{
"@odata.type": "microsoft.graph.cloudPcUserRoleScopeTagInfo",
"displayName": "Display Name value",
"roleScopeTagId": "Role Scope Tag Id value"
}
],
"remoteTenantId": "Remote Tenant Id value",
"remoteUserId": "Remote User Id value"
},
"resources": [
{
"@odata.type": "microsoft.graph.cloudPcAuditResource",
"displayName": "Display Name value",
"modifiedProperties": [
{
"@odata.type": "microsoft.graph.cloudPcAuditProperty",
"displayName": "Display Name value",
"oldValue": "Old Value value",
"newValue": "New Value value"
}
],
"resourceId": "Resource Id value"
}
],
}
]
}