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.

Activity Log Search Sort Clauses reference

Activity Log Search Sort Clauses set the order of the activity log groups returned by activity log search.

You use them over the REST API, in the sortClauses element of the payload of the POST /activity-log-group/list request.

  • logged_at - sorts activity log groups by their date and time. Takes an optional direction argument, either ASC or DESC (default).

Example

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
{
    "ActivityLogGroupListInput": {
        "sortClauses": [
            {
                "type": "logged_at",
                "direction": "DESC"
            }
        ]
    }
}