Audit

Search audit log entries

Searches audit log entries with optional filtering by entity type, entity id, action, and time range.

get/api/audit

Query parameters

entityTypestring

Filter by entity type (e.g. south_connector).

entityIdstring

Filter by the identifier of the audited entity.

actionstring

Filter by the kind of change performed. Valid values: CREATE, UPDATE, DELETE.

startstring

ISO 8601 start of the time range.

endstring

ISO 8601 end of the time range.

pagenumber double

Response

Paginated list of audit log entries

totalElementsnumber double required

The total number of elements across all pages.

sizenumber double required

The size of the page, i.e., the maximum number of elements per page.

numbernumber double required

The number of the current page, starting at 0.

totalPagesnumber double required

The total number of pages (which can be 0 if there are no elements).

Example response

{
  "content": [
    {
      "createdAt": "2026-01-01T00:00:00.000Z"
    }
  ],
  "totalElements": 2,
  "size": 10,
  "totalPages": 1
}

Changes