> ## 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.

# Lista os relatorios de sync da tabela (mais recentes primeiro)



## OpenAPI

````yaml https://api.nuvia.ai/api/docs/user-json get /v1/tables/{id}/sync-reports
openapi: 3.0.0
info:
  title: Nuvia API - Empresa
  description: Documentação da API para empresas
  version: '1.0'
  contact: {}
servers:
  - url: https://api.nuvia.ai
security: []
tags:
  - name: auth
    description: Autenticação
paths:
  /v1/tables/{id}/sync-reports:
    get:
      tags:
        - tables
      summary: Lista os relatorios de sync da tabela (mais recentes primeiro)
      operationId: TableController_listSyncReports
      parameters:
        - name: x-company-id
          in: header
          description: >-
            Identificador da empresa-alvo. Obrigatório apenas para API Keys
            globais (type=global). Ignorado para API Keys de empresa e usuários
            humanos.
          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: >-
            Arquivo original (base64) — persistido no preview
            (AWAITING_CONFIRMATION)

            e em aborto por mass_deletion, para o confirm reprocessar sem novo
            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

````