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

# CompConsultar

> <desc>



## OpenAPI

````yaml POST /api/wsfev1/FECompConsultar
openapi: 3.0.1
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: http://localhost:3000
security: []
paths:
  /api/wsfev1/FECompConsultar:
    post:
      description: <desc>
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FECompConsultarBody'
        required: true
      responses:
        '200':
          description: <desc>
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FECompConsultarResponse'
        '400':
          description: Error al solicitar CAE
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    FECompConsultarBody:
      type: object
      properties:
        Auth:
          type: object
          properties:
            Token:
              type: string
            Sign:
              type: string
            Cuit:
              type: number
        FeCompConsReq:
          type: object
          properties:
            CbteTipo:
              type: number
            CbteNro:
              type: number
            PtoVta:
              type: number
    FECompConsultarResponse:
      type: object
      properties:
        ResultGet:
          type: object
          properties:
            Concepto:
              type: number
            DocTipo:
              type: number
            DocNro:
              type: number
            CbteDesde:
              type: number
            CbteHasta:
              type: number
            CbteFch:
              type: string
            ImpTotal:
              type: number
            ImpTotConc:
              type: number
            ImpNeto:
              type: number
            ImpOpEx:
              type: number
            ImpTrib:
              type: number
            ImpIVA:
              type: number
            FchServDesde:
              type: string
            FchServHasta:
              type: string
            FchVtoPago:
              type: string
            MonId:
              type: string
            MonCotiz:
              type: number
            CbtesAsoc:
              type: object
              properties:
                CbteAsoc:
                  type: array
                  items:
                    type: object
                    properties:
                      Tipo:
                        type: number
                      PtoVta:
                        type: number
                      Nro:
                        type: number
                      Cuit:
                        type: string
                      CbteFch:
                        type: string
            Tributos:
              type: object
              properties:
                Tributo:
                  type: array
                  items:
                    type: object
                    properties:
                      Id:
                        type: number
                      Desc:
                        type: string
                      BaseImp:
                        type: number
                      Alic:
                        type: number
                      Importe:
                        type: number
            Iva:
              type: object
              properties:
                AlicIva:
                  type: array
                  items:
                    type: object
                    properties:
                      Id:
                        type: number
                      BaseImp:
                        type: number
                      Importe:
                        type: number
            Opcionales:
              type: object
              properties:
                Opcional:
                  type: array
                  items:
                    type: object
                    properties:
                      Id:
                        type: string
                      Valor:
                        type: string
            Compradores:
              type: object
              properties:
                Comprador:
                  type: array
                  items:
                    type: object
                    properties:
                      DocTipo:
                        type: number
                      DocNro:
                        type: number
                      Porcentaje:
                        type: number
            PeriodoAsoc:
              type: object
              properties:
                FchDesde:
                  type: string
                FchHasta:
                  type: string
            Actividades:
              type: object
              properties:
                Actividad:
                  type: array
                  items:
                    type: object
                    properties:
                      Id:
                        type: number
            Resultado:
              type: string
            CodAutorizacion:
              type: string
            EmisionTipo:
              type: string
            FchVto:
              type: string
            FchProceso:
              type: string
            Observaciones:
              type: object
              properties:
                Obs:
                  type: array
                  items:
                    type: object
                    properties:
                      Code:
                        type: number
                      Msg:
                        type: string
            PtoVta:
              type: number
            CbteTipo:
              type: number
        Errors:
          type: object
          properties:
            Err:
              type: array
              items:
                type: object
                properties:
                  Code:
                    type: number
                  Msg:
                    type: string
        Events:
          type: object
          properties:
            Evt:
              type: array
              items:
                type: object
                properties:
                  Code:
                    type: number
                  Msg:
                    type: string
    Error:
      type: object
      properties:
        Errors:
          type: object
          properties:
            Err:
              type: array
              items:
                type: object
                properties:
                  Code:
                    type: string
                  Msg:
                    type: string
                required:
                  - Code
                  - Msg
          required:
            - Err
      required:
        - Errors

````