Skip to content
For AI agents: the complete documentation index is available at llms.txt; this page is also available as Markdown at index.md.

Object Criterion

The object_class Activity Log Criterion matches activity log groups that have a log entry about the given class name, and optionally one of the given IDs.

Arguments

  • class - class of the object concerned by the searched log entries
  • (optional) ids - list of object IDs

Example

You can use this Criterion over the REST API, in the criteria element of the payload of the POST /activity-log-group/list request:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
{
    "ActivityLogGroupListInput": {
        "criteria": [
            {
                "type": "object_class",
                "class": "Ibexa\\Contracts\\Core\\Repository\\Values\\Content\\Content",
                "ids": [72, 73]
            }
        ]
    }
}