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

# List table sync reports

> Sorted from most recent to oldest.



## OpenAPI

````yaml /en/openapi.json get /v1/tables/{id}/sync-reports
openapi: 3.0.0
info:
  title: Nuvia API - Company
  description: API documentation for companies
  version: '1.0'
  contact: {}
servers:
  - url: https://api.nuvia.ai
security: []
tags:
  - name: messages
    x-group: Mensagens
  - name: contacts
    x-group: Contatos
  - name: campaigns
    x-group: Campanhas
  - name: tables
    x-group: Tabelas e Listas
  - name: agents
    x-group: Agentes
  - name: conversations
    x-group: Conversas
  - name: inboxes
    x-group: Caixas de Entrada
  - name: knowledge
    x-group: Base de Conhecimento
  - name: Webhooks
    x-group: Webhooks
  - name: campaign-enrollments
    x-group: Inscrições em Campanha
  - name: custom-fields
    x-group: Campos Customizados
paths:
  /v1/tables/{id}/sync-reports:
    get:
      tags:
        - tables
      summary: List table sync reports
      description: Sorted from most recent to oldest.
      operationId: TableController_listSyncReports
      parameters:
        - name: x-company-id
          in: header
          description: >-
            Target company identifier. Required only for global API keys
            (type=global). Ignored for company API keys and human users.
          required: false
          schema:
            type: string
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TableSyncReportEntity'
      security:
        - JWT-auth: []
components:
  schemas:
    TableSyncReportEntity:
      type: object
      properties:
        _id:
          $ref: '#/components/schemas/ObjectId'
        table:
          $ref: '#/components/schemas/ObjectId'
        company:
          $ref: '#/components/schemas/ObjectId'
        status:
          type: string
          enum:
            - RUNNING
            - AWAITING_CONFIRMATION
            - CONFIRMED
            - DISCARDED
            - DONE
            - ABORTED
        stats:
          type: object
        abort_reason:
          type: string
          enum:
            - headers_mismatch
            - duplicate_key
            - mass_deletion
            - processing_error
        abort_detail:
          type: string
        file_b64:
          type: string
          description: >-
            Original file (base64) — persisted in the preview
            (AWAITING_CONFIRMATION)

            and on abort due to mass_deletion, so confirm can reprocess without
            a new upload.
        file_name:
          type: string
        requested_by:
          type: string
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
      required:
        - _id
        - table
        - company
        - status
    ObjectId:
      type: object
      properties: {}
  securitySchemes:
    JWT-auth:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: Token JWT de autenticação

````