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

# Obtener Tipos Monedas

> <desc>



## OpenAPI

````yaml POST /api/wsfev1/FEParamGetTiposMonedas
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/FEParamGetTiposMonedas:
    post:
      description: <desc>
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FEParamGetTiposMonedasBody'
        required: true
      responses:
        '200':
          description: <desc>
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FEParamGetTiposMonedasResponse'
        '400':
          description: Error al solicitar CAE
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    FEParamGetTiposMonedasBody:
      type: object
      properties:
        Auth:
          type: object
          properties:
            Token:
              type: string
            Sign:
              type: string
            Cuit:
              type: number
    FEParamGetTiposMonedasResponse:
      type: object
      properties:
        ResultGet:
          type: object
          properties:
            Moneda:
              type: array
              items:
                type: object
                properties:
                  Id:
                    type: string
                  Desc:
                    type: string
                  FchDesde:
                    type: string
                  FchHasta:
                    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

````