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

# Obtiene una imputación por ID



## OpenAPI

````yaml get /imputations/{id}
openapi: 3.0.3
info:
  title: Esolbay API
  version: 1.0.0
  description: API Esolbay.
servers:
  - url: http://localhost:3000/api/v1
    description: Ruta base local
  - url: https://api.esolbay.com/api/v1
    description: Producción
  - url: https://staging.esolbay.com/api/v1
    description: Staging
security:
  - apiKeyAuth: []
  - bearerAuth: []
paths:
  /imputations/{id}:
    get:
      tags:
        - Imputations
      summary: Obtiene una imputación por ID
      operationId: getImputation
      parameters:
        - schema:
            type: string
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Encontrada
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  reference:
                    type: string
                  contractId:
                    type: string
                  orderId:
                    type: string
                  account:
                    type: string
                  amount:
                    type: number
                  currency:
                    type: string
                  notes:
                    type: string
                  createdAt:
                    nullable: true
                  updatedAt:
                    nullable: true
                required:
                  - id
                  - reference
                  - account
                  - amount
                example:
                  id: imp_01
                  reference: ORD-2025-0001
                  orderId: ord_01
                  account: 6001-Gastos Operativos
                  amount: 1500
                  currency: USD
        '404':
          description: No encontrada
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````