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

# Buscar una operación por NUliquid

> Resuelve una operación por su NUliquid de 21 posiciones mediante una búsqueda local. El formato se valida primero: un NUliquid mal formado devuelve 422, uno ausente devuelve 404.



## OpenAPI

````yaml es/openapi/v3-current/slc.yaml get /v1/operations/nuliquid/{nuliquid}
openapi: 3.0.3
info:
  title: Lerian SLC API
  description: >-
    API de Lerian SLC — el rail del lado del participante que conecta la
    institución con la liquidación de tarjetas por neto diferido SLC de Núclea.
    Cubre la admisión y el ciclo de vida de las operaciones de liquidación, las
    posiciones de compensación, el registro de participantes y arreglos, la
    recuperación de transmisión y la conectividad con Núclea, la importación de
    clave de firma BYOK Modelo A y los webhooks con alcance al tenant.
  version: v1.0.0
servers:
  - url: https://slc.sandbox.lerian.net
security: []
tags:
  - name: Admin
    description: Configuración del tenant y administración de cartas muertas.
  - name: Clearing
    description: >-
      Posiciones de compensación por neto diferido de la institución
      liquidadora.
  - name: Connectivity
    description: >-
      Drenajes de recuperación de transmisión, retransmisión y sondas de
      conectividad con Núclea.
  - name: Operations
    description: >-
      Admisión, ciclo de vida e historial de estados de las operaciones de
      liquidación.
  - name: Participants
    description: Registro de participantes del tenant.
  - name: Arrangements
    description: Arreglos de tarjeta y esquema por participante.
  - name: SigningKey
    description: Importación de clave de firma BYOK Modelo A para la firma de mensajes.
  - name: Webhooks
    description: Suscripciones de webhook con alcance al tenant, entregas y reenvío.
paths:
  /v1/operations/nuliquid/{nuliquid}:
    get:
      tags:
        - Operations
      summary: Buscar una operación por NUliquid
      description: >-
        Resuelve una operación por su NUliquid de 21 posiciones mediante una
        búsqueda local. El formato se valida primero: un NUliquid mal formado
        devuelve 422, uno ausente devuelve 404.
      operationId: getOperationByNUliquid
      parameters:
        - description: 'NUliquid (21 positions: AAAAMMDD + 13 digits)'
          in: path
          name: nuliquid
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/http.OperationDetailResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/http.ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/http.ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/http.ErrorResponse'
        '422':
          description: Unprocessable Entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/http.ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/http.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    http.OperationDetailResponse:
      properties:
        arrangementCode:
          type: string
        aslcType:
          type: string
        batchId:
          type: string
        cancellationTargetOperationId:
          description: >-
            CancellationTargetOperationId is the id of the movement a
            Núclea-coordinated

            CANCELLATION targets (E-5.3). Populated ONLY on the CANCELLATION
            path (null for

            every other type), so a consumer can correlate a cancellation to the
            operation it

            cancels. Mirrors the optional SettlementIfISPB projection (nullable,
            always present).
          type: string
        createdAt:
          type: string
        creditorIspb:
          type: string
        currency:
          type: string
        domicileIfIspb:
          type: string
        dueDate:
          type: string
        eslcErrors:
          items:
            type: string
          type: array
        externalId:
          type: string
        id:
          type: string
        installmentNumber:
          type: integer
        installments:
          type: integer
        intakeMode:
          type: string
        lastError:
          type: string
        nuliquid:
          type: string
        operationType:
          type: string
        participantId:
          type: string
        participantRole:
          type: string
        reasonCategory:
          type: string
        settlementIfIspb:
          type: string
        state:
          type: string
        stuckSince:
          type: string
        updatedAt:
          type: string
        value:
          type: integer
        waitingFor:
          description: >-
            Recoverability diagnostics: the operator distinguishes an external
            wait (waitingFor set → use reconcile) from an internal block
            (waitingFor nil + stuckSince set → use advance/requeue); lastError
            carries the most recent recorded Núclea error.
          type: string
      type: object
    http.ErrorResponse:
      properties:
        code:
          type: string
        details:
          additionalProperties: {}
          type: object
        message:
          type: string
        title:
          type: string
      type: object
  securitySchemes:
    BearerAuth:
      description: 'Bearer token authentication (format: "Bearer {token}")'
      in: header
      name: Authorization
      type: apiKey

````