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.

Action Criterion

The action Activity Log Criterion matches activity log groups that have a log entry with one of the given actions.

Arguments

  • value - list of action name strings, for example create, publish, or delete

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
{
    "ActivityLogGroupListInput": {
        "criteria": [
            {
                "type": "action",
                "value": ["create", "publish"]
            }
        ]
    }
}