> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vos.verolabs.co/llms.txt
> Use this file to discover all available pages before exploring further.

# List the admin audit log

> List the admin audit log



## OpenAPI

````yaml openapi.oms.vi.json GET /api/v1/util/audit
openapi: 3.0.3
info:
  title: VOS OMS Public API
  version: 1.0.0
  description: >-
    Public REST API surface for Vero OMS. Authentication requests use
    platform.verolabs.co. REST API requests use api-oms.verolabs.co.
servers:
  - url: https://platform.verolabs.co
    description: Authentication host
  - url: https://api-oms.verolabs.co
    description: REST API host
security: []
tags:
  - name: Authentication
    description: Xác thực tài khoản và khôi phục mật khẩu.
  - name: Trading
    description: Order entry, quote, IOI, and trading activity APIs.
  - name: Portfolio & Risk
    description: Accounts, holdings, mappings, and risk-rule read APIs.
  - name: Administration
    description: Permissions, groups, workflow, reference data, and audit APIs.
  - name: System & Diagnostics
    description: Health and latency endpoints.
paths:
  /api/v1/util/audit:
    get:
      tags:
        - Administration
      summary: List the admin audit log
      description: |-
        Requires `Authorization: Bearer <jwt>` from `POST /api/auth/login`.

        Required JWT role: `maker` or `checker` or `admin`.
      operationId: get_api_v1_util_audit
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuditResponse'
      security:
        - bearerAuth: []
      servers:
        - url: https://api-oms.verolabs.co
components:
  schemas:
    AuditResponse:
      type: object
      properties:
        entries:
          type: array
          items:
            $ref: '#/components/schemas/AuditEntry'
          description: Audit entries returned by the response.
      description: AuditResponse schema.
    AuditEntry:
      type: object
      properties:
        id:
          type: integer
          format: int64
          description: Unique identifier for the record.
        actor:
          type: string
          description: User that performed the audited action.
        action:
          type: string
          description: Audited action name.
        entity_type:
          type: string
          description: Audited entity type.
        entity_id:
          type: string
          description: Audited entity identifier.
        request_id:
          type: integer
          format: int64
          description: Request identifier.
        detail:
          type: object
          additionalProperties: true
          description: Detailed information for the record.
        created_at:
          type: string
          format: date-time
          description: Timestamp when the record was created.
      description: AuditEntry schema.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````