latestOpenAPI 3.0.32026-08-20147323331.7 KB

a7231589e927

audit_logs

Search audit logs with filters

Returns a filtered, paginated list of audit log entries for the organization. Filterable fields and their allowed operators:

FieldAllowed operators
actionequals, in, not_in, string_contains, string_does_not_contain
action_happened_attime_is_after, time_is_before, time_range

Timestamp values use RFC3339 format.

Rate limit: 10 requests per minute

post/audit-logs/search

Request body

cursorstring

The cursor to use for pagination.

limitinteger

The number of audit logs to fetch. Defaults to 100. Must be greater than 0 and less than 1000.

Example request

{
  "filter": {
    "subfilters": [
      {
        "field": "state",
        "operator": "equals",
        "value": "new"
      }
    ]
  }
}

Response

request_idstring

The request ID for tracking.

Example response

{
  "data": [
    {
      "attributes": {
        "field": "status",
        "new_value": "closed",
        "old_value": "open"
      }
    }
  ]
}