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

# Detalhar operação

> Retorna os detalhes da operação de import/export especificada.



## OpenAPI

````yaml /api-reference/openapi.json get /api/management/spreadsheet-operations/{operation}
openapi: 3.0.0
info:
  title: Olie API
  version: 1.0.0
  description: >
    # Introdução 👋


    Olá! Esta é a documentação oficial da API da [olie.ai](https://olie.ai/).
    Aqui você encontra as referências e exemplos de uso dos nossos endpoints.


    Para uma visão completa, recomendamos fortemente que você leia a
    [documentação oficial](https://docs.olie.ai/api-reference/introduction). Lá
    estão detalhados tópicos essenciais como
    [autenticação](https://docs.olie.ai/api-reference/introduction/authentication),
    [estrutura de
    respostas](https://docs.olie.ai/api-reference/general/response-structure),
    [paginação](https://docs.olie.ai/api-reference/general/pagination) e outros
    guias de integração.


    No Postman, esta coleção foca nas informações específicas de cada requisição
    (endpoints, parâmetros e exemplos), servindo como apoio rápido para testes e
    desenvolvimento.
servers:
  - url: https://api.olie.ai
security:
  - BearerAuth: []
paths:
  /api/management/spreadsheet-operations/{operation}:
    parameters:
      - name: operation
        in: path
        required: true
        schema:
          type: string
          format: uuid
        example: 019dd427-5d13-71bf-9a09-d75aa2bf4bd7
    get:
      tags:
        - spreadsheet-operations
        - show
      summary: Detalhar operação
      description: Retorna os detalhes da operação de import/export especificada.
      operationId: obterOperacaoDePlanilha
      responses:
        '200':
          description: Operação retornada com sucesso
          content:
            application/json:
              schema:
                type: object
                properties:
                  response:
                    type: boolean
                    example: true
                  spreadsheet_operation:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      action:
                        type: string
                        example: export
                      type:
                        type: string
                        example: project
                      status:
                        type: string
                        example: completed
                      total_rows:
                        type: integer
                        example: 120
                      processed_rows:
                        type: integer
                        example: 120
                      percentage:
                        type: integer
                        example: 100
                      errors_count:
                        type: integer
                        example: 0
                      metadata:
                        type: object
                      file_name:
                        type: string
                        example: project_2026-06-01-143022.xlsx
                      initiator_type:
                        type: string
                        example: App\Models\User
                      initiator_id:
                        type: string
                        format: uuid
                      initiator:
                        type: object
                        properties:
                          id:
                            type: string
                            format: uuid
                          name:
                            type: string
                          avatar_url:
                            type: string
                      started_at:
                        type: string
                        format: date-time
                      completed_at:
                        type: string
                        format: date-time
                      created_at:
                        type: string
                        format: date-time
                      updated_at:
                        type: string
                        format: date-time
              example:
                response: true
                spreadsheet_operation:
                  id: c8f6c4a2-31af-f523-ad00-47b2ce67491e
                  action: export
                  type: project
                  status: completed
                  total_rows: 120
                  processed_rows: 120
                  percentage: 100
                  errors_count: 0
                  metadata: {}
                  file_name: project_2026-06-01-143022.xlsx
                  initiator_type: App\Models\User
                  initiator_id: ee989a1d-afe3-4ff7-f4fb-bec440e8b372
                  initiator:
                    id: 7b6c3328-3066-e4e3-ae36-911996a826da
                    name: string
                    avatar_url: string
                  started_at: '2026-04-23T17:57:57.942Z'
                  completed_at: '1980-11-02T01:58:58.018Z'
                  created_at: '1950-02-26T12:34:00.424Z'
                  updated_at: '1955-03-13T19:55:56.035Z'
        '401':
          description: Não autenticado
        '403':
          description: Sem permissão
        '404':
          description: Não encontrado
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````