Update auditEvent
Namespace: microsoft.graph
Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
Update the properties of a auditEvent object.
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. To learn more, including how to choose permissions, see Permissions.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | DeviceManagementApps.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. |
Application | DeviceManagementApps.ReadWrite.All |
HTTP Request
PATCH /deviceManagement/auditEvents/{auditEventId}
Request headers
Header | Value |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Accept | application/json |
Request body
In the request body, supply a JSON representation for the auditEvent object.
The following table shows the properties that are required when you create the auditEvent.
Property | Type | Description |
---|---|---|
id | String | Key of the entity. |
displayName | String | Event display name. |
componentName | String | Component name. |
actor | auditActor | AAD user and application that are associated with the audit event. |
activity | String | Friendly name of the activity. |
activityDateTime | DateTimeOffset | The date time in UTC when the activity was performed. |
activityType | String | The type of activity that was being performed. |
activityOperationType | String | The HTTP operation type of the activity. |
activityResult | String | The result of the activity. |
correlationId | Guid | The client request Id that is used to correlate activity within the system. |
resources | auditResource collection | Resources being modified. |
category | String | Audit category. |
Response
If successful, this method returns a 200 OK
response code and an updated auditEvent object in the response body.
Example
Request
Here is an example of the request.
PATCH https://graph.microsoft.com/beta/deviceManagement/auditEvents/{auditEventId}
Content-type: application/json
Content-length: 1803
{
"@odata.type": "#microsoft.graph.auditEvent",
"displayName": "Display Name value",
"componentName": "Component Name value",
"actor": {
"@odata.type": "microsoft.graph.auditActor",
"type": "Type value",
"auditActorType": "Audit Actor 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.roleScopeTagInfo",
"displayName": "Display Name value",
"roleScopeTagId": "Role Scope Tag Id value"
}
],
"remoteTenantId": "Remote Tenant Id value",
"remoteUserId": "Remote User Id value"
},
"activity": "Activity value",
"activityDateTime": "2016-12-31T23:59:51.6363086-08:00",
"activityType": "Activity Type value",
"activityOperationType": "Activity Operation Type value",
"activityResult": "Activity Result value",
"correlationId": "52effe71-fe71-52ef-71fe-ef5271feef52",
"resources": [
{
"@odata.type": "microsoft.graph.auditResource",
"displayName": "Display Name value",
"modifiedProperties": [
{
"@odata.type": "microsoft.graph.auditProperty",
"displayName": "Display Name value",
"oldValue": "Old Value value",
"newValue": "New Value value"
}
],
"type": "Type value",
"auditResourceType": "Audit Resource Type value",
"resourceId": "Resource Id value"
}
],
"category": "Category value"
}
Response
Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1852
{
"@odata.type": "#microsoft.graph.auditEvent",
"id": "59653ce8-3ce8-5965-e83c-6559e83c6559",
"displayName": "Display Name value",
"componentName": "Component Name value",
"actor": {
"@odata.type": "microsoft.graph.auditActor",
"type": "Type value",
"auditActorType": "Audit Actor 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.roleScopeTagInfo",
"displayName": "Display Name value",
"roleScopeTagId": "Role Scope Tag Id value"
}
],
"remoteTenantId": "Remote Tenant Id value",
"remoteUserId": "Remote User Id value"
},
"activity": "Activity value",
"activityDateTime": "2016-12-31T23:59:51.6363086-08:00",
"activityType": "Activity Type value",
"activityOperationType": "Activity Operation Type value",
"activityResult": "Activity Result value",
"correlationId": "52effe71-fe71-52ef-71fe-ef5271feef52",
"resources": [
{
"@odata.type": "microsoft.graph.auditResource",
"displayName": "Display Name value",
"modifiedProperties": [
{
"@odata.type": "microsoft.graph.auditProperty",
"displayName": "Display Name value",
"oldValue": "Old Value value",
"newValue": "New Value value"
}
],
"type": "Type value",
"auditResourceType": "Audit Resource Type value",
"resourceId": "Resource Id value"
}
],
"category": "Category value"
}