IData
|
public interface IDataAuditApi
The IDataAuditApi type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | Enumerate | Enumerate Audit Logs. |
![]() ![]() | HardDelete | Hard delete audit logs by DataObjectId. |
![]() | Log | Manually log a log entry to Audit log system. |
![]() ![]() | Search | Search Audit Logs. |
var dataAuditApi = ctx.Use<IDataAuditApi>(); var correlationId = "RootDataClass/e7a7d4fc-9f0b-4496-be13-aa500067a8dd"; var data = new { Description = "To Description" }; var rootDOId = "RootDataClass/e7a7d4fc-9f0b-4496-be13-aa500067a8dd"; dataAuditApi.Log(rootDOId, "test manually audit log", correlationId, new {Description = "New Description"}); var relatedDOId = "RelatedDataClass/f97b09f9-896b-44d5-8885-aa50001be638"; dataAuditApi.Log(relatedDOId, "updated pool period", correlationId, new {SomeField = "Some thing is changed"});