> ## 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 recuperaciones de fondos

> Usa este endpoint para listar las solicitudes de recuperación de fondos con filtros opcionales y paginación.



## OpenAPI

````yaml es/openapi/v3-current/indirect-pix.yaml GET /v1/dict/funds-recoveries
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.0.0
servers:
  - url: https://plugin-pix-indirect.api.lerian.net
security:
  - bearerAuth: []
paths:
  /v1/dict/funds-recoveries:
    get:
      tags:
        - Funds Recovery API
      summary: Listar recuperaciones de fondos
      description: >-
        Usa este endpoint para listar las solicitudes de recuperación de fondos
        con filtros opcionales y paginación.
      parameters:
        - name: limit
          in: query
          description: La cantidad máxima de elementos que se incluirán en la respuesta.
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 10
        - name: page
          in: query
          description: El número de la página que deseas recuperar.
          schema:
            type: integer
            minimum: 1
            default: 1
        - name: sort_order
          in: query
          description: El orden usado para ordenar los resultados.
          schema:
            type: string
            enum:
              - asc
              - desc
            default: asc
        - name: status
          in: query
          description: Filtra por el estado de la recuperación de fondos.
          schema:
            type: string
            enum:
              - CREATED
              - TRACKED
              - AWAITING_ANALYSIS
              - ANALYSED
              - REFUNDING
              - COMPLETED
              - CANCELLED
        - name: situation_type
          in: query
          description: Filtra por el tipo de situación.
          schema:
            type: string
            enum:
              - SCAM
              - ACCOUNT_TAKEOVER
              - COERCION
              - FRAUDULENT_ACCESS
              - OTHER
              - UNKNOWN
        - name: root_transaction_id
          in: query
          description: Filtra por el ID de la transacción raíz (32 caracteres).
          schema:
            type: string
        - name: modified_after
          in: query
          description: >-
            Filtra por las recuperaciones de fondos modificadas después de esta
            marca de tiempo (formato RFC3339).
          schema:
            type: string
        - name: modified_before
          in: query
          description: >-
            Filtra por las recuperaciones de fondos modificadas antes de esta
            marca de tiempo (formato RFC3339).
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetAllFundsRecoveriesOutput'
        '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'
      deprecated: false
      security:
        - bearerAuth: []
components:
  schemas:
    GetAllFundsRecoveriesOutput:
      properties:
        items:
          items:
            $ref: '#/components/schemas/FundsRecoveryListItem'
          type: array
        limit:
          type: integer
          example: 10
        page:
          type: integer
          example: 1
        total:
          type: integer
          example: 42
      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.
    FundsRecoveryListItem:
      properties:
        bacenFundsRecoveryId:
          example: 91d65e98-97c0-4b0f-b577-73625da1f9fc
          type: string
        contactInformation:
          $ref: '#/components/schemas/ContactInformation'
        createdAt:
          example: '2023-11-07T05:31:56Z'
          format: date-time
          type: string
        id:
          example: 550e8400-e29b-41d4-a716-446655440000
          type: string
        reportDetails:
          example: Customer reported receiving a call from fake bank employee
          type: string
        reporterParticipant:
          example: '12345678'
          type: string
        rootTransactionId:
          example: E12345678202411241430ABCDEFGHIJK
          type: string
        situationType:
          enum:
            - SCAM
            - ACCOUNT_TAKEOVER
            - COERCION
            - FRAUDULENT_ACCESS
            - OTHER
            - UNKNOWN
          example: SCAM
          type: string
        status:
          enum:
            - CREATED
            - TRACKED
            - AWAITING_ANALYSIS
            - ANALYSED
            - REFUNDING
            - COMPLETED
            - CANCELLED
          example: CREATED
          type: string
        updatedAt:
          example: '2023-11-07T05:31:56Z'
          format: date-time
          type: string
      type: object
    ContactInformation:
      properties:
        email:
          description: >-
            Email es la dirección de correo electrónico del cliente que reporta
            el fraude
          example: customer@example.com
          type: string
        phone:
          description: >-
            Phone es el número de teléfono del cliente que reporta el fraude

            Formato: se recomienda el formato E.164 (por ejemplo,
            +5511999999999)
          example: '+5511999999999'
          type: string
      required:
        - email
        - phone
      type: object
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````