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

# CAEAConsultar

> <desc>



## OpenAPI

````yaml POST /api/wsfev1/FECAEAConsultar
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/FECAEAConsultar:
    post:
      description: <desc>
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FECAEAConsultarBody'
        required: true
      responses:
        '200':
          description: <desc>
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FECAEAConsultarResponse'
        '400':
          description: Error al solicitar CAE
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    FECAEAConsultarBody:
      type: object
      properties:
        Auth:
          type: object
          properties:
            Token:
              type: string
            Sign:
              type: string
            Cuit:
              type: number
        Periodo:
          type: number
        Orden:
          type: number
    FECAEAConsultarResponse:
      type: object
      properties:
        ResultGet:
          type: object
          properties:
            CAEA:
              type: string
            Periodo:
              type: number
            Orden:
              type: number
            FchVigDesde:
              type: string
            FchVigHasta:
              type: string
            FchTopeInf:
              type: string
            FchProceso:
              type: string
            Observaciones:
              type: object
              properties:
                Obs:
                  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
        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

````