Response containing a list of action log entries
| name | data type | constraints | description |
|---|---|---|---|
| items | array of ActionLogEntry | Items in the list | |
| messages | array of Message | Messages contained in the response (which should be shown to the user) | |
| hasMoreItems | boolean | required boolean | True if more items are available to get (if paging was used) |
| responseInfo | ResponseInfo | ||
| numItems | number | required int | Get total number of items available |
| perms | map of array of Permission | User permissions on the returned items, if applicable and requested |
Example
{
"items" : [ {
"id" : 12345,
"user" : "Musterfrau Maxine",
"action" : {
"name" : "publish",
"label" : "Publish page"
},
"type" : {
"name" : "page",
"label" : "Page"
},
"objId" : 728,
"timestamp" : 1742290735,
"info" : "..."
}, {
"id" : 12345,
"user" : "Mustermann Max",
"action" : {
"name" : "delete",
"label" : "Delete"
},
"type" : {
"name" : "folder",
"label" : "Folder"
},
"objId" : 38,
"timestamp" : 1742292072,
"info" : "..."
} ],
"messages" : [ { }, { } ],
"hasMoreItems" : true,
"responseInfo" : {
"responseCode" : "OK",
"responseMessage" : "...",
"property" : "..."
},
"numItems" : 12345,
"perms" : {
"property1" : [ "updateconstructs", "wastebin" ],
"property2" : [ "delete", "updatefolder" ]
}
}