Skip to main content
GET
/
audits
Get audits
curl --request GET \
  --url https://api.quivo.co/audits
[
  {
    "username": "<string>",
    "entityClass": "<string>",
    "entityId": 123,
    "auditType": "VALUE_CHANGE",
    "auditHistories": [
      {
        "modifiedBy": "<string>",
        "data": "<string>",
        "auditType": "VALUE_CHANGE",
        "created": "2023-11-07T05:31:56Z"
      }
    ],
    "created": "2023-11-07T05:31:56Z"
  }
]

Query Parameters

query
string

Search query string used to filter results. This field supports specific syntax for filtering across multiple fields.

sort
string

Optional sorting criteria for the results. Format is typically 'field:direction' (e.g., 'created:desc').

page
integer<int64>

The page number to retrieve when using offset-based pagination. Ignored if 'searchAfter' is provided.

searchAfter
string

Used for cursor-based pagination. Pass the 'sort' key value from the last item of the previous page to retrieve the next set of results efficiently. Overrides 'page'.

pageSize
integer<int64>

The maximum number of items to return per page. Used for both offset and cursor-based pagination.

Response

Returns an array of audit log entries with action details, timestamps, and user information.

username
string

The name of the user

entityClass
string

The entity class

entityId
integer<int64>

The unique identifier for the entity

auditType
enum<string>

The type or category of the audit

Available options:
VALUE_CHANGE,
ACTION,
CREATE
auditHistories
object[]

Array of audit historie

created
string<date-time>

Timestamp when the item was created