> ## 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 reportes de transacciones

> Usa este endpoint para listar los reportes de transacciones TRCK002 con filtros opcionales y paginación.



## OpenAPI

````yaml es/openapi/v3-current/indirect-pix.yaml GET /v1/transaction-reports
openapi: 3.0.3
info:
  title: Plugin BR Pix Indirect - API completa
  description: |
    API completa para el sistema de pagos instantáneos Pix de Brasil, que
    incluye operaciones del diccionario de claves Pix, generación/decodificación
    de códigos QR, transacciones y límites transaccionales.
  version: 1.7.6
servers:
  - url: https://plugin-pix-indirect.api.lerian.net
security:
  - bearerAuth: []
paths:
  /v1/transaction-reports:
    get:
      tags:
        - Transaction Reports API
      summary: Listar reportes de transacciones
      description: >-
        Usa este endpoint para listar los reportes de transacciones TRCK002 con
        filtros opcionales y paginación.
      parameters:
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/Page'
        - $ref: '#/components/parameters/SortOrder'
        - name: end_to_end_id
          in: query
          description: Filtra por el identificador end-to-end del PIX
          schema:
            type: string
        - name: return_identification
          in: query
          description: Filtra por la identificación de devolución (reportes de reembolso)
          schema:
            type: string
        - name: initiation_type
          in: query
          description: Filtra por tipo de iniciación; no distingue mayúsculas de minúsculas
          schema:
            type: string
            enum:
              - MANUAL
              - DICT
              - STATIC_QRCODE
              - DYNAMIC_QRCODE
        - name: status
          in: query
          description: Estados de transacción (separados por comas)
          schema:
            type: array
        - name: created_at_start
          in: query
          description: >-
            Filtra por reportes creados en esta marca de tiempo o después
            (RFC3339)
          schema:
            format: date-time
            type: string
        - name: created_at_end
          in: query
          description: >-
            Filtra por reportes creados en esta marca de tiempo o antes
            (RFC3339)
          schema:
            format: date-time
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionReportListOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFormat'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFormat'
      security:
        - bearerAuth: []
components:
  parameters:
    Limit:
      name: limit
      in: query
      description: Número máximo de elementos por página.
      required: false
      example: 10
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 10
    Page:
      name: page
      in: query
      description: Número de página para la paginación.
      required: false
      example: 1
      schema:
        type: integer
        minimum: 1
        default: 1
    SortOrder:
      name: sort_order
      in: query
      description: 'Dirección de ordenamiento: asc o desc.'
      required: false
      example: asc
      schema:
        type: string
        enum:
          - asc
          - desc
        default: asc
  schemas:
    TransactionReportListOutput:
      properties:
        items:
          description: Items contiene la lista de reportes de transacciones
          items:
            $ref: '#/components/schemas/TransactionReportResponse'
          type: array
        limit:
          description: Limit es la cantidad máxima de elementos por página
          example: 10
          type: integer
        page:
          description: Page es el número de la página actual (a partir de 1)
          example: 1
          type: integer
        total:
          description: Total es el conteo total de elementos coincidentes
          example: 42
          type: integer
      type: object
    ErrorFormat:
      type: object
      description: El mensaje de error de la respuesta.
      required:
        - code
        - title
        - message
      properties:
        code:
          type: string
          description: Un identificador único y estable para el error.
        title:
          type: string
          description: Un breve resumen del problema.
        message:
          type: string
          description: Orientación detallada para resolver el error.
    TransactionReportResponse:
      properties:
        amount:
          example: '100.50'
          type: string
        clientRequestId:
          example: 550e8400-e29b-41d4-a716-446655440000
          type: string
        confirmedAt:
          example: '2024-01-15T10:32:00Z'
          format: date-time
          type: string
        createdAt:
          type: string
          format: date-time
          example: '2024-01-15T10:30:00Z'
        creditParty:
          $ref: '#/components/schemas/TransactionReportParty'
        debitParty:
          $ref: '#/components/schemas/TransactionReportParty'
        endToEndId:
          example: E12345678202411241430ABCDEFGHIJK
          type: string
        id:
          example: 01989f9e-6508-79f8-9540-835be49fbd0d
          type: string
        initiationType:
          example: DICT
          type: string
        pactualId:
          example: 550e8400-e29b-41d4-a716-446655440001
          type: string
        returnId:
          example: D12345678202411241430ABCDEFGHIJK
          type: string
        status:
          enum:
            - PENDING
            - PROCESSING
            - CONFIRMED
            - ERROR
          example: CONFIRMED
          type: string
        submittedAt:
          example: '2024-01-15T10:31:00Z'
          format: date-time
          type: string
        transactionDate:
          type: string
          format: date-time
          example: '2024-01-15T10:30:00Z'
        updatedAt:
          example: '2024-01-15T10:32:00Z'
          format: date-time
          type: string
      type: object
    TransactionReportParty:
      properties:
        account:
          example: '123456'
          type: string
        accountType:
          example: CACC
          type: string
        bank:
          example: '12345678'
          type: string
        branch:
          example: '0001'
          type: string
        document:
          example: '12345678901'
          type: string
        key:
          example: email@test.com
          type: string
      type: object
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````