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

# Status do Trabalho de Importação

> Consulta o status de processamento e os metadados de um Job de Importação específico.

### Path

<ParamField path="id" type="string" required>
  UUID correspondente ao Job de processamento gerado no upload.
</ParamField>

### Response

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "b6a8a729-2de8-466d-9271-bfbd71337de7",
    "filename": "nfe_venda_123.xml",
    "status": "processing",
    "progress": 50,
    "totalItems": 15,
    "validCount": 10,
    "invalidCount": 5,
    "errorDetails": null,
    "createdAt": "2024-01-01T12:00:00.000Z"
  }
  ```
</ResponseExample>


## OpenAPI

````yaml get /import/jobs/{id}
openapi: 3.0.0
info:
  title: Hub Marketplace API
  description: API for managing marketplace listings and keys
  version: '1.0'
  contact: {}
servers: []
security: []
tags:
  - name: listings
    description: ''
paths:
  /import/jobs/{id}:
    get:
      tags:
        - Import
      operationId: ImportController_getJobStatus
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''

````