Audit record object with mandantory fragments. IAuditRecord implements the IEvent interface.
Response wrapped in IResult
Gets the details of selected audit record.
Entity or Id of the entity.
Response wrapped in IResult
Gets the list of audit records filtered by parameters.
Object containing filters for querying audit records.
Response wrapped in IResultList
Generated using TypeDoc
Creates a new audit record for a given source.
const mandantoryObject: IAuditRecord = { type: AuditRecordType.ALARM, time: '2018-05-02T10:08:00Z', severity: Severity.MAJOR, source: {id: 1} }; (async () => { const {data, res} = await auditService.create(mandantoryObject); })();