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

# Get audits

> Get audit log entries for recent actions and changes.



## OpenAPI

````yaml /openapi.json get /audits
openapi: 3.0.1
info:
  title: Connector
  version: 80f7edc, 2026-01-23T12:01:00Z
  description: Enhanced Quivo API documentation with additional descriptions and examples
  contact:
    name: Quivo Support
    email: support@quivo.co
    url: https://quivo.co
  license:
    name: Proprietary
    url: https://quivo.co/terms
  termsOfService: https://quivo.co/terms
servers:
  - url: https://api.quivo.co/
    description: Production API server for Quivo Connector
security: []
tags:
  - name: addresses
    description: Manage stored addresses in the seller's address book
  - name: apiKeyRequests
    description: Request and manage API keys
  - name: articles
    description: Create and manage product articles
  - name: audits
    description: Access audit logs and history
  - name: bundles
    description: Manage product bundles
  - name: carriers
    description: Get carrier information
  - name: contacts
    description: Manage contact information
  - name: countries
    description: Get country information
  - name: currencies
    description: Get currency information
  - name: customerInquiries
    description: Manage customer inquiries
  - name: dashboards
    description: Access dashboard data
  - name: files
    description: Manage file uploads and downloads
  - name: fulfillmentPlans
    description: Manage fulfillment plans
  - name: inbounds
    description: Manage inbound shipments
  - name: items
    description: Monitor and manage inventory items
  - name: languages
    description: Get language information
  - name: notifications
    description: Manage notifications
  - name: orders
    description: Create and manage fulfillment orders
  - name: ping
    description: Health check endpoint
  - name: returnApp
    description: Manage return applications
  - name: returnLinks
    description: Manage return links
  - name: returns
    description: Manage returns
  - name: sellers
    description: Get seller information
  - name: shipments
    description: Book and manage shipments
  - name: shippingServiceGroups
    description: Get shipping service groups
  - name: shopOrders
    description: Manage shop orders
  - name: shops
    description: Manage shops
  - name: status
    description: Get system status
  - name: storedAddresses
    description: Manage stored addresses
  - name: subscriptionPackages
    description: Manage subscription packages
  - name: subscriptions
    description: Manage webhook subscriptions
  - name: track
    description: Track shipments
  - name: transports
    description: Manage transport services
  - name: users
    description: Manage users
  - name: warehouses
    description: Get warehouse information
paths:
  /audits:
    get:
      tags:
        - audits
      summary: Get audits
      description: Get audit log entries for recent actions and changes.
      operationId: auditSearch
      parameters:
        - name: query
          in: query
          schema:
            type: string
          description: >-
            Search query string used to filter results. This field supports
            specific syntax for filtering across multiple fields.
        - name: sort
          in: query
          schema:
            type: string
          description: >-
            Optional sorting criteria for the results. Format is typically
            'field:direction' (e.g., 'created:desc').
        - name: page
          in: query
          schema:
            type: integer
            format: int64
          description: >-
            The page number to retrieve when using offset-based pagination.
            Ignored if 'searchAfter' is provided.
        - name: searchAfter
          in: query
          schema:
            type: string
          description: >-
            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'.
        - name: pageSize
          in: query
          schema:
            type: integer
            format: int64
          description: >-
            The maximum number of items to return per page. Used for both offset
            and cursor-based pagination.
      responses:
        '200':
          description: >-
            Returns an array of audit log entries with action details,
            timestamps, and user information.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AuditGet'
        '400':
          description: >-
            Bad request - the request payload is invalid, missing required
            fields, or contains invalid data.
        '401':
          description: >-
            Unauthorized - authentication credentials are missing, invalid, or
            expired.
        '404':
          description: >-
            Not found - the requested resource does not exist or is not
            accessible.
        '500':
          description: Internal server error - an unexpected error occurred on the server.
components:
  schemas:
    AuditGet:
      type: object
      properties:
        username:
          type: string
          description: The name of the user
        entityClass:
          type: string
          description: The entity class
        entityId:
          type: integer
          format: int64
          description: The unique identifier for the entity
        auditType:
          type: string
          enum:
            - VALUE_CHANGE
            - ACTION
            - CREATE
          description: The type or category of the audit
        auditHistories:
          type: array
          items:
            $ref: '#/components/schemas/AuditHistoryGet'
          description: Array of audit historie
        created:
          type: string
          format: date-time
          description: Timestamp when the item was created
      description: >-
        Audit log entry with action details. Contains timestamp, user, action
        type, entity affected, and change details.
    AuditHistoryGet:
      type: object
      properties:
        modifiedBy:
          type: string
          description: Timestamp when the item was last modified
        data:
          type: string
          description: The data value
        auditType:
          type: string
          enum:
            - VALUE_CHANGE
            - ACTION
            - CREATE
          description: The type or category of the audit
        created:
          type: string
          format: date-time
          description: Timestamp when the item was created
      description: Response object containing audithistory details

````