Skip to main content
GET
List user audit logs
OAuth Scope

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Query Parameters

limit
integer<int32>

Maximum number of audit logs to return. Range 1-100. Defaults to 10.

page_cursor
string

Page cursor for pagination. Pass the next_page_cursor from a previous response to get the next page. Empty string for first page.

methods
enum<string>[]

Filter by HTTP methods. Empty list means no filter (any method).

Available options:
HTTP_METHOD_UNSPECIFIED,
GET,
POST,
PUT,
PATCH,
DELETE
created_at.lt
string<date-time>

Include timestamps strictly less than lt. RFC3339 format, like 2006-01-02T15:04:05Z.

created_at.lte
string<date-time>

Include timestamps less than or equal to lte. RFC3339 format, like 2006-01-02T15:04:05Z.

created_at.eq
string<date-time>

Include timestamps exactly equal to eq. RFC3339 format, like 2006-01-02T15:04:05Z.

created_at.gte
string<date-time>

Include timestamps greater than or equal to gte. RFC3339 format, like 2006-01-02T15:04:05Z.

created_at.gt
string<date-time>

Include timestamps strictly greater than gt. RFC3339 format, like 2006-01-02T15:04:05Z.

status_code_ranges
string[]

Filter by HTTP status code ranges. Format: "min-max" where both are inclusive (e.g., "200-299" for all 2xx codes, "404-404" for only 404). Both min and max must be between 200-599, and max >= min. Empty list means no filter (any status code).

path_contains
string[]

Filter by path substrings (case-insensitive, e.g., "webhooks" matches "/api/v2/webhooks"). Empty list means no filter (any path).

domain_contains
string[]

Filter by domain substrings (case-insensitive, e.g., "webhook" matches "Webhooks"). Empty list means no filter (any domain).

order
enum<string>
Available options:
DESC,
ASC

Response

200 - application/json

Successfully retrieved user audit logs

items
object[]
next_page_cursor
string

Cursor for fetching the next page of results. Empty string means no more results.