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

# Listar operaciones de liquidación

> Lista las operaciones de liquidación del tenant de la solicitud, filtradas y paginadas. Filtros: state, operationType, batchId, externalId, dateFrom y dateTo (sobre created_at). Paginación offset/limit.



## OpenAPI

````yaml es/openapi/v3-current/slc.yaml get /v1/operations
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:
    get:
      tags:
        - Operations
      summary: Listar operaciones de liquidación
      description: >-
        Lista las operaciones de liquidación del tenant de la solicitud,
        filtradas y paginadas. Filtros: state, operationType, batchId,
        externalId, dateFrom y dateTo (sobre created_at). Paginación
        offset/limit.
      operationId: listOperations
      parameters:
        - description: Filter by lifecycle state
          in: query
          name: state
          schema:
            type: string
        - description: Filter by operation type
          in: query
          name: operationType
          schema:
            type: string
        - description: Filter by batch id
          in: query
          name: batchId
          schema:
            type: string
        - description: Filter by external id
          in: query
          name: externalId
          schema:
            type: string
        - description: Filter created_at >= (RFC3339)
          in: query
          name: dateFrom
          schema:
            type: string
        - description: Filter created_at <= (RFC3339)
          in: query
          name: dateTo
          schema:
            type: string
        - description: Page size (default 50, max 500)
          in: query
          name: limit
          schema:
            type: integer
        - description: Row offset (default 0)
          in: query
          name: offset
          schema:
            type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/http.ListOperationsResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/http.ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/http.ErrorResponse'
        '403':
          description: Forbidden
          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.ListOperationsResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/http.OperationSummary'
          type: array
        pagination:
          $ref: '#/components/schemas/http.PaginationMeta'
      type: object
    http.ErrorResponse:
      properties:
        code:
          type: string
        details:
          additionalProperties: {}
          type: object
        message:
          type: string
        title:
          type: string
      type: object
    http.OperationSummary:
      properties:
        arrangementCode:
          type: string
        batchId:
          type: string
        createdAt:
          type: string
        currency:
          type: string
        externalId:
          type: string
        id:
          type: string
        intakeMode:
          type: string
        nuliquid:
          type: string
        operationType:
          type: string
        participantRole:
          type: string
        state:
          type: string
        value:
          type: integer
      type: object
    http.PaginationMeta:
      properties:
        hasNext:
          type: boolean
        page:
          type: integer
        perPage:
          type: integer
      type: object
  securitySchemes:
    BearerAuth:
      description: 'Bearer token authentication (format: "Bearer {token}")'
      in: header
      name: Authorization
      type: apiKey

````