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

# Get latest processing status

> Retrieves the status and metrics of the most recent processing run. Recommended for polling sync status in your application



## OpenAPI

````yaml /api-specs/cloud/workspace-file-audit-trail-api.yaml get /v1/process/latest
openapi: 3.0.0
info:
  contact:
    email: support@dominodatalab.com
    name: Domino Data Lab
    url: https://tickets.dominodatalab.com/hc/en-us
  description: >-
    Service to ingest, process, deduplicate, and serve workspace file audit
    events captured by Falco in Domino Data Lab workspaces
  license:
    name: Proprietary
    url: https://www.dominodatalab.com/terms
  title: Domino Workspace File Audit API
  version: '1.0'
servers:
  - url: https://mycluster.domino.tech
    description: >-
      Replace 'mycluster.domino.tech' with your Domino cluster hostname. For
      Domino Cloud customers, that is <your-subdomain>.domino.tech (e.g.,
      acme.domino.tech). For self-hosted deployments, it is the hostname you
      reach the Domino UI at.
security: []
paths:
  /v1/process/latest:
    get:
      tags:
        - processing
      summary: Get latest processing status
      description: >-
        Retrieves the status and metrics of the most recent processing run.
        Recommended for polling sync status in your application
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/workspaceaudit.ProcessingResult'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.MiddlewareError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.MiddlewareError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.HTTPError'
components:
  schemas:
    workspaceaudit.ProcessingResult:
      description: Represents the outcome of a single event-processing run
      properties:
        addedEvents:
          description: New events added to the output (not deduplicated)
          example: 8500
          type: integer
        completedAt:
          description: Timestamp when processing finished. Null while status is InProgress
          example: '2025-06-15T10:35:22.000Z'
          type: string
        createdAt:
          description: Timestamp when the processing record was created
          example: '2025-06-15T10:30:00.000Z'
          type: string
        deduplicatedEvents:
          description: Events recognized as duplicates and excluded from output
          example: 6498
          type: integer
        existingEvents:
          description: Previously processed events loaded for deduplication
          example: 42000
          type: integer
        failedEvents:
          description: Events that failed to parse or insert
          example: 2
          type: integer
        firstEventTimestamp:
          description: Timestamp of the earliest raw Falco event in this batch
          example: '2025-06-15T09:00:00.000Z'
          type: string
        id:
          description: Unique identifier for this processing run
          example: a33ef748-41fb-42aa-aed0-bcc87da3ff0e
          type: string
        lastEventTimestamp:
          description: Timestamp of the latest raw Falco event in this batch
          example: '2025-06-15T10:29:55.000Z'
          type: string
        newEvents:
          description: Total number of new raw Falco event files found
          example: 15000
          type: integer
        startedAt:
          description: Timestamp when event processing began
          example: '2025-06-15T10:30:00.000Z'
          type: string
        status:
          $ref: '#/components/schemas/workspaceaudit.ProcessingResultStatus'
        successfulProcessedEvents:
          description: Events successfully parsed and inserted
          example: 14998
          type: integer
        updatedAt:
          description: Timestamp of the most recent update to this record
          example: '2025-06-15T10:35:22.000Z'
          type: string
      required:
        - id
        - createdAt
        - updatedAt
        - startedAt
        - status
        - newEvents
        - existingEvents
        - successfulProcessedEvents
        - failedEvents
        - addedEvents
        - deduplicatedEvents
      type: object
    server.MiddlewareError:
      properties:
        error:
          description: Human-readable error description
          example: Authorization header not found
          type: string
      type: object
    server.HTTPError:
      properties:
        code:
          description: HTTP status code
          example: 400
          type: integer
        message:
          description: Human-readable error description
          example: end timestamp cannot be before start timestamp
          type: string
      type: object
    workspaceaudit.ProcessingResultStatus:
      description: State of a processing run
      enum:
        - InProgress
        - Completed
        - Failed
      type: string
      x-enum-varnames:
        - StatusInProgress
        - StatusCompleted
        - StatusFailed

````