AuditEventType
Enumeration of change operation types in change history, used in audit summary objects, change detail objects, and query filters.
Declaration
string AuditEventTypePossible Values
CREATEThe system creates a new entity.
oldValuesis empty on all associated field change objects.UPDATEThe system modifies one or more fields on an existing entity. Both
oldValuesandnewValuesare populated.DELETEThe system soft-deletes the entity. Because it implements deletion as a record update,
newValuesis populated. Expect fields such as the deleted flag, status, and transaction ID to appear with their updated values.oldValuesreflects the pre-deletion state of each changed field.
Discussion
Use AuditEventType values in the eventType filter of an AuditQuery request to narrow results to specific change operations:
{
"field": "eventType",
"operator": "IN",
"value": [
"CREATE",
"DELETE"
]
}