Model of an entry in the action log
name | data type | description |
---|---|---|
id | number | Entry ID |
user | string | Lastname and Firstname of the acting User |
action | ActionModel | Performed action |
type | ActionLogType | Type of the object, the action was performed on |
objId | number | ID of the object, the action was performed on |
timestamp | number | Timestamp of the action |
info | string | Additional info |
Example
{ "id" : 12345, "user" : "...", "action" : { "name" : "...", "label" : "..." }, "type" : { "name" : "...", "label" : "..." }, "objId" : 12345, "timestamp" : 12345, "info" : "..." }