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:
| Field | Allowed operators |
|---|---|
| action | equals, in, not_in, string_contains, string_does_not_contain |
| action_happened_at | time_is_after, time_is_before, time_range |
Timestamp values use RFC3339 format.
Rate limit: 10 requests per minute
post/audit-logs/search
Request body
Example request
{
"filter": {
"subfilters": [
{
"field": "state",
"operator": "equals",
"value": "new"
}
]
}
}Response
Example response
{
"data": [
{
"attributes": {
"field": "status",
"new_value": "closed",
"old_value": "open"
}
}
]
}