v97

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-31135175384.2 KB
Audit Logs

List audit logs

API for searching audit logs. Limited to at most 30 day search, returns up to 100 records per page. Not recommended for bulk export.

get/audit-logs

Query parameters

startstring date-time required
Example:2026-01-01T00:00:00Z

Lower bound (inclusive) for the audit record timestamp.

endstring date-time required
Example:2026-01-02T00:00:00Z

Upper bound (exclusive) for the audit record timestamp.

auth_strategystring

Filter by authentication strategy.

servicestring

Filter by service name.

methodstring

Filter by HTTP method.

exclude_methodstring[]

Filter out results by HTTP method.

searchstring

Free-text search over path, user ID, email, client IP, and status.

search_user_idstring[]

Additional user IDs to OR into free-text search.

limitinteger

Maximum number of results to return.

page_tokenstring

Opaque page token from X-Next-Page-Token for the next page of older records.

Response

A list of audit log records.

timestampstring date-time required

UTC time when the request was received.

auth_strategystring required

Authentication strategy used for the request.

user_idstring required

ID of the authenticated user, if any.

emailstring required

Email of the authenticated user at request time, if any.

statusinteger required

HTTP response status code.

methodstring required

HTTP method.

pathstring required

Request path.

routestring required

Matched API route pattern, if available.

domainstring required

Request host.

duration_msinteger required

Request duration in milliseconds.

client_ipstring required

Client IP address.

user_agentstring required

User agent header.