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

# Get current space audit trail list

> Retrieves the list of audit trail entries recorded for the current space, returning the matching items together with pagination metadata. Accepts an optional filter query parameter to narrow the results by search criteria.



## OpenAPI

````yaml /schema.json get /audit_trail/current_space/list
openapi: 3.1.0
info:
  version: 01KV4EC0SHV95TK2YR66AMKFZC
  title: Alumio API
  description: Access Alumio through OpenAPI v3.1.
servers:
  - url: /api/v1
security: []
paths:
  /audit_trail/current_space/list:
    get:
      tags:
        - AuditTrail
      summary: Get current space audit trail list
      description: >-
        Retrieves the list of audit trail entries recorded for the current
        space, returning the matching items together with pagination metadata.
        Accepts an optional filter query parameter to narrow the results by
        search criteria.
      operationId: getAuditTrailCurrentSpaceList
      parameters:
        - name: filter
          in: query
          description: Apply search criteria.
          required: false
          schema:
            type: string
        - name: space
          in: query
          description: Space Identifier
          required: false
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  metadata:
                    $ref: '#/components/schemas/ActionMetaData'
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/AuditTrailItem'
          description: 200 response
        default:
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    ActionMetaData:
      type: object
      properties:
        totalCount:
          type: integer
          format: int32
          description: Total count of items that match the criteria.
    AuditTrailItem:
      type: object
      properties:
        identifier:
          type: string
          description: A unique identifier for the audit trail entry
          pattern: ^[a-z0-9-]+$
          maxLength: 255
        user:
          title: User
          type: string
          format: email
          description: The email address of the user who sent the message.
        spaceIdentifier:
          title: Space
          type: string
          description: Identifier for the space
          pattern: ^[a-z0-9-]+$
          maxLength: 255
        action:
          title: Action
          type: string
          format: string
          description: The action of the entry
        category:
          title: Category
          type: string
          format: string
          description: The widget category type of the entry
        ipAddress:
          title: ip address
          type: string
          format: string
          description: The ip address of the client
        message:
          title: Message
          type: string
          description: The content of the message.
        request:
          title: Request
          type: object
          description: A list of requested actions or parameters. May be empty.
        createdAt:
          type: string
          title: Created at
          format: date-time
          description: Creation date
    Error:
      type: object
      properties:
        status:
          type: string
        context:
          type: object
        type:
          type: string
        title:
          type: string
        detail:
          type: string
        violations:
          type: array
          items:
            type: object
            properties:
              title:
                type: string
              propertyPath:
                type: string
              type:
                type: string

````