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

# CAESolicitar

> <desc>



## OpenAPI

````yaml POST /api/wsfev1/FECAESolicitar
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/FECAESolicitar:
    post:
      description: <desc>
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FECAESolicitarBody'
        required: true
      responses:
        '200':
          description: <desc>
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FECAESolicitarResponse'
        '400':
          description: Error al solicitar CAE
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    FECAESolicitarBody:
      type: object
      properties:
        Auth:
          type: object
          properties:
            Token:
              type: string
            Sign:
              type: string
            Cuit:
              type: number
        FeCAEReq:
          type: object
          properties:
            FeCabReq:
              type: object
              properties:
                CantReg:
                  type: number
                PtoVta:
                  type: number
                CbteTipo:
                  type: number
            FeDetReq:
              type: object
              properties:
                FECAEDetRequest:
                  type: array
                  items:
                    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
    FECAESolicitarResponse:
      type: object
      properties:
        FeCabResp:
          type: object
          properties:
            Cuit:
              type: number
            PtoVta:
              type: number
            CbteTipo:
              type: number
            FchProceso:
              type: string
            CantReg:
              type: number
            Resultado:
              type: string
            Reproceso:
              type: string
        FeDetResp:
          type: object
          properties:
            FECAEDetResponse:
              type: array
              items:
                type: object
                properties:
                  Concepto:
                    type: number
                  DocTipo:
                    type: number
                  DocNro:
                    type: number
                  CbteDesde:
                    type: number
                  CbteHasta:
                    type: number
                  CbteFch:
                    type: string
                  Resultado:
                    type: string
                  Observaciones:
                    type: object
                    properties:
                      Obs:
                        type: array
                        items:
                          type: object
                          properties:
                            Code:
                              type: number
                            Msg:
                              type: string
                  CAE:
                    type: string
                  CAEFchVto:
                    type: string
        Events:
          type: object
          properties:
            Evt:
              type: array
              items:
                type: object
                properties:
                  Code:
                    type: number
                  Msg:
                    type: string
        Errors:
          type: object
          properties:
            Err:
              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

````