Model of an entry in the action log
| name | data type | constraints | description |
|---|---|---|---|
| id | number | required int | 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 | required int | ID of the object, the action was performed on |
| timestamp | number | required int | Timestamp of the action |
| info | string | Additional info |
Example
{
"id" : 12345,
"user" : "Musterfrau Maxine",
"action" : {
"name" : "publish",
"label" : "Publish page"
},
"type" : {
"name" : "page",
"label" : "Page"
},
"objId" : 728,
"timestamp" : 1742290735,
"info" : "..."
}