---
title: "Get audits"
method: GET
path: "/audit"
tags: ["Auditing"]
---

# Get audits

`GET /audit`

Gets an audit trail of user actions and configuration changes (to accounts, fees, and rates) on a RippleNet instance.

## Query parameters

- `page` integer
- `size` integer
- `before` string
- `after` string
- `range_field` string
- `actor` string
- `action` string
- `level` 'INFO' | 'WARN' | 'ERROR'
- `domain` 'USER_MANAGEMENT' | 'CONFIG_MANAGEMENT' | 'OTHER'

## Response `200`

Successful response

- AuditEventResponse — Paged response for AuditEvent
  - `first` boolean — true if this is the first page.
  - `last` boolean — true if this is the last page.
  - `number` integer — page number
  - `numberOfElements` integer — Number Of elements in this request
  - `size` integer — page size
  - `totalElements` integer — Total number of elements for the given request
  - `totalPages` integer — Total number of pages for the given request
  - `sort` Sort[] — Sort details of this page
    - `direction` string — Direction of the sort
    - `property` string
    - `ignoreCase` boolean
    - `nullHandling` string
    - `ascending` boolean
    - `descending` boolean
  - `content` AuditEvent[]
    - `actor` string — Person or middleware who took the action.
    - `action` string — Action that triggered the event.
    - `eventId` string, uuid — UUID representing the event.
    - `message` string — Message describing the audit event.
    - `metadata` string — Information about the event, such as IP Address and URI.
    - `domain` 'USER_MANAGEMENT' | 'CONFIG_MANAGEMENT' | 'OTHER' — Represents the audit event domain.
    - `level` 'INFO' | 'WARN' | 'ERROR' — Represents the audit event level.
    - `timeStamp` string — Timestamp of the audit event.

## Other responses

- `400` — Bad request.

---

[API](https://skmtc.net/ripple/apis/ripplenet-server-api.md) · [All operations](https://skmtc.net/ripple/apis/ripplenet-server-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ripple/ripplenet-server-api/versions/7843f07ca150/schema)
